Transfer ERC721 Tokens

const txApi = new Tx(wallet, provider);
// Native Transactions
const nativeTx = await txApi.createNativeTx(wallet.address, receiver_wallet_address, amount);
const txHash = await txApi.signAndBroadcastTx(nativeTx);
// ERC721 Transactions
const nativeTx = await txApi.createERC20Tx(
wallet.address,
receiver_wallet_address,
amount,
erc721_token_contract_address,
);
const txHash = await txApi.signAndBroadcastTx(nativeTx);Last updated