Skip to content

Latest commit

 

History

History
 
 

call-contract-with-token

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Call contract with token

This example allows you to send aUSDC from a source chain to a destination chain and distribute it equally among specified accounts.

Prerequisite

Make sure you've already followed the following steps:

Deployment

To deploy the contract, run the following command:

npm run deploy evm/call-contract-with-token [local|testnet]

The aforementioned command pertains to specifying the intended environment for a project to execute on. It provides the option to choose between local and testnet environments by appending either local or testnet after the command.

An example of its usage is demonstrated as follows: npm run deploy evm/call-contract-with-token local or npm run deploy evm/call-contract-with-token testnet.

Execution

To execute the example, use the following command:

npm run execute evm/call-contract-with-token [local|testnet] ${srcChain} ${destChain} ${amount} ${account} ${account2} ...

Parameters

  • srcChain: The blockchain network from which the aUSDC will be transferred. Valid values are Moonbeam, Avalanche, Fantom, Ethereum, and Polygon. Default value is Avalanche.
  • destChain: The blockchain network to which the aUSDC will be transferred. Valid values are Moonbeam, Avalanche, Fantom, Ethereum, and Polygon. Default value is Fantom.
  • amount: The amount of aUSDC to be transferred and distributed among the specified accounts. Default value is 10.
  • account: The address of the first account to receive aUSDC.
  • account2: The address of the second account to receive aUSDC, and so on.

Example

npm run deploy evm/call-contract-with-token local
npm run execute evm/call-contract-with-token local "Avalanche" "Fantom" 100 0xBa86A5719722B02a5D5e388999C25f3333c7A9fb

Output:

--- Initially ---
0xBa86A5719722B02a5D5e388999C25f3333c7A9fb has 100 aUSDC
--- After ---
0xBa86A5719722B02a5D5e388999C25f3333c7A9fb has 199 aUSDC