Skip to content

Commit 2b4bdb3

Browse files
Ayman-SabekAyman Sabek
andauthored
Add AMIE Token - World Chain Sepolia (#1243)
* Add AMIE Token to World Chain Sepolia Token Details: - Name: AMIE Token - Symbol: AMIE - Decimals: 18 - Network: World Chain Sepolia (chainId: 4801) - Contract: 0xD4d6764EDbc53bB1eb5e1De68CE8a6d1CB39b023 AMIE is a sentiment analysis AI token for the World App ecosystem. Website: https://app.eihdah.com/amie * Add worldchain-sepolia to token schema validation - Add worldchain and worldchain-sepolia to anyOf requirements - Fixes validation error for World Chain Sepolia tokens * Fix token name to match contract - Change 'AMIE Token' to 'Amie Token' to match on-chain contract - Contract returns 'Amie Token' (0x416d696520546f6b656e) - Fixes validation mismatch error * Add nobridge flag for native World Chain token - AMIE is a native token on World Chain Sepolia - Not bridged from Ethereum, so skip bridge validation - Fixes l2Bridge/l1Token validation error --------- Co-authored-by: Ayman Sabek <ayman@sinai-inc.com>
1 parent 7b4862a commit 2b4bdb3

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

data/AMIE/data.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "Amie Token",
3+
"symbol": "AMIE",
4+
"decimals": 18,
5+
"nobridge": true,
6+
"tokens": {
7+
"worldchain-sepolia": {
8+
"address": "0xD4d6764EDbc53bB1eb5e1De68CE8a6d1CB39b023"
9+
}
10+
}
11+
}

data/AMIE/logo.png

43.2 KB
Loading

src/schemas.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,15 @@ export const TOKEN_DATA_SCHEMA = {
8080
{ required: ['redstone'] },
8181
{ required: ['metall2'] },
8282
{ required: ['soneium'] },
83+
{ required: ['worldchain'] },
8384
{ required: ['sepolia'] },
8485
{ required: ['base-sepolia'] },
8586
{ required: ['optimism-sepolia'] },
8687
{ required: ['lisk-sepolia'] },
8788
{ required: ['metall2-sepolia'] },
8889
{ required: ['unichain-sepolia'] },
8990
{ required: ['soneium-minato'] },
91+
{ required: ['worldchain-sepolia'] },
9092
],
9193
},
9294
},

0 commit comments

Comments
 (0)