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.
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