Integration
Reference token
A live coin to test reads against.
GEKKO AI is the protocol's own coin and is marked official in the interface. Use it to check an integration end to end.
| Token | 0xf3a514ecab09ca4119aea49a679935b783335a84 |
| Pool | 0xe0904f2f40c4E6F1728a4155b9f7C1b48Bf3fe3f |
| Page | https://www.gekko.cash/coin/0xf3a514ecab09ca4119aea49a679935b783335a84 |
Anyone can launch a coin called GEKKO, and at least one person has. The official badge exists so a holder does not have to compare addresses by eye. Verify the address above rather than the name.
Simulating a write without sending
eth_call with from set to a real holder proves a transaction would succeed
without broadcasting it or holding a key:
await client.simulateContract({
account: someHolder,
address: token,
abi: erc20,
functionName: 'transfer',
args: [DEAD, amount],
})