In the previous section, we saw how to register a signature request on the Abstract DAO contract. Now, it is time to sign the transaction for different chains and relay it to the target EVM network.Documentation Index
Fetch the complete documentation index at: https://docs.near.org/llms.txt
Use this file to discover all available pages before exploring further.
Signing the Transaction
To sign a transaction for a specific chain, the allowed account needs to call theget_signature function, passing the request_id (generated on the previous section) and all the necessary info to finish creating the transaction before signing it.
For example, to sign the transaction for the Sepolia Testnet, the following command can be used:
chain_id (to identify the destination chain), the max_fee_per_gas, and the max_priority_fee_per_gas (to set the transaction fee).
The account authorized to call get_signature - in this case executor.testnet cannot change any parameter of the transaction being signed besides setting a gas fee per chain.