This IDX project tracks the creation of Clanker Token vor Clanker versions v1.0.0, v2.0.0, v3.0.0, v3.1.0, and v4.0.0 on BASE. The contracts are deployed at these addresses:
| Version | Factory Address |
|---|---|
| 1.0.0 | 0x9B84fcE5Dcd9a38d2D01d5D72373F6b6b067c3e1 |
| 2.0.0 | 0x732560fa1d1A76350b1A500155BA978031B53833 |
| 3.0.0 | 0x375C15db32D28cEcdcAB5C03Ab889bf15cbD2c5E |
| 3.1.0 | 0x2A787b2362021cC3eEa3C24C4748a6cD5B687382 |
| 4.0.0 | 0xE85A59c628F7d27878ACeB4bf3b35733630083a9 |
The app tracks the TokenCreated events for clanker tokens. It emits these events:
| Event Name | Version | Test Block |
|---|---|---|
ClankerTokenCreatedV1_0_0 |
v1.0.0 | 23626433 |
ClankerTokenCreatedV2_0_0 |
v2.0.0 | 23625440 |
ClankerTokenCreatedV3_0_0 |
v3.0.0 | 27239351 |
ClankerTokenCreatedV3_1_0 |
v3.1.0 | 34991688 |
ClankerTokenCreatedV4_0_0 |
v4.0.0 | 35005235 |
It also tracks coin creations for zora Tokens on BASE. Spcifically, it tracks coins v1, coins v4 and creatorCoins. The address of the factory is:
The factory contract is deployed at 0x777777751622c0d3258f214F9DF38E35BF45baF3 on the BASE blockchain.
The listener emits these events (test blocks have the event)
| Event Name | Test Block |
|---|---|
ZoraCoinCreated |
26875151 |
ZoraCoinCreatedV4 |
32126452 |
ZoraCreatorCoinCreated |
32127961 |
.
├── sim.toml # App configuration
├── apis/ # Your custom API code
├── abis/ # Contract ABI files (JSON)
│ └── UniswapV3Factory.json # Example: Uniswap V3 Factory ABI
└── listeners/ # Foundry project for listener contracts
├── src/
│ └── Main.sol # Triggers contract & listener logic
└── test/
└── Main.t.sol # Unit tests for your listener