Signing transactions
Signature transactions are a standard mechanism on EVM chains, enabling DApps to sign and broadcast transactions via the user’s connected EVM wallet.
This is done in the Nabox wallet using the eth_sendTransaction method, which is called using NaboxWallet.request,here are the parameter details:
const transactionParameters = {
nonce: '0x00', // Account nonce value
gasPrice: '0x09184e72a000', // Optional
gas: '0x2710', // Optional
to: 'recipient', // Receiving Address
from: NaboxWallet.selectedAddress,
value: '0x00',
data: '0x7f7465737432000000000000000000000000000000000000000000000000000000600057', // 可选
};Last updated