Transfer tokens gaslessly
Gasless transactions with RLY token
//get amoy config
var amoy = NetworkProvider.RlyAmoy;
//add your API Key (can also be chained)
amoy.WithApiKey(env.API_KEY);
//claim 10 test RLY tokens gaslessly for testing
await amoy.ClaimRly();
//destination address for testing
var destinationAddress = "0x8D9F6c7Ab1316B613BDdcD1fDbac6025A1323569"
//transfer RLY token
await amoy.TransferExact(
destinationAddress,
new BigInteger(1),
MetaTxMethod.ExecuteMetaTransaction
);Getting started with your chosen ERC-20 token
Contract requirements
Gasless transactions with your chosen ERC-20 token
Last updated