Link.transfer
Link.transfer
// eg: here is a sample link.transfer call:
const transferResponsePayload: TransferV2ResultsCodec = await link.transfer([
{
amount: '1.23',
symbol: 'GODS',
type: ERC20TokenType.ERC20,
tokenAddress: '0x4c04c39fb6d2b356ae8b06c47843576e32a1963e',
toAddress: 'replace-this-with-a-receiver-address',
},
{
amount: '0.23',
type: ETHTokenType.ETH,
toAddress: 'replace-this-with-a-receiver-address',
},
]);Errors
Last updated