@eth-optimism/tokenlist 9.0.51 → 10.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -10
- package/dist/index.d.ts +1 -1
- package/dist/index.js +37 -1583
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +37 -1583
- package/dist/index.mjs.map +1 -1
- package/dist/{optimism.tokenlist-2c377e6f.d.ts → optimism.tokenlist-f2fbb5c7.d.ts} +37 -1583
- package/dist/optimism.tokenlist.d.ts +1 -1
- package/dist/optimism.tokenlist.js +37 -1583
- package/dist/optimism.tokenlist.js.map +1 -1
- package/dist/optimism.tokenlist.mjs +37 -1583
- package/dist/optimism.tokenlist.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Please note that by adding a token to the list we aren’t making any claims abo
|
|
|
21
21
|
|
|
22
22
|
### Specifying chains
|
|
23
23
|
For right now, each OP Chain has their own review process. So, if you are adding tokens across multiple chains, please separate your pull request so that you have one PR for each chain, in order to streamline the review process.
|
|
24
|
-
- If you are adding a token to a `Base` chain (e.g. `base` [mainnet] or `base-
|
|
24
|
+
- If you are adding a token to a `Base` chain (e.g. `base` [mainnet] or `base-sepolia` [testnet]) please add [@roberto-bayardo](https://github.com/roberto-bayardo) as a reviewer as they are the point of contact for `Base` tokens and must approve all `Base` tokens before they are merged.
|
|
25
25
|
- Instead of using the predeploy token factory on Base, we recommend you use the token factory [listed here](https://docs.base.org/base-contracts/#l2-contract-addresses) for the time being to avoid having a token address that may conflict with a different token on Optimism.
|
|
26
26
|
- If you are adding a token to `Zora`: please use the [`zora` label](https://github.com/ethereum-optimism/ethereum-optimism.github.io/labels/zora) and add [@tbtstl](https://github.com/tbtstl) as a reviewer.
|
|
27
27
|
- If you are adding a token to `Mode`: please use the [`mode` label](https://github.com/ethereum-optimism/ethereum-optimism.github.io/labels/mode).
|
|
@@ -89,16 +89,16 @@ Add a file to your folder called `data.json` with the following format:
|
|
|
89
89
|
"optimism": {
|
|
90
90
|
"address": "0x2345234523452345234523452345234523452345"
|
|
91
91
|
},
|
|
92
|
-
"
|
|
92
|
+
"sepolia": {
|
|
93
93
|
"address": "0x5678567856785678567856785678567856785678"
|
|
94
94
|
},
|
|
95
|
-
"optimism-
|
|
95
|
+
"optimism-sepolia": {
|
|
96
96
|
"address": "0x6789678967896789678967896789678967896789"
|
|
97
97
|
},
|
|
98
98
|
"base": {
|
|
99
99
|
"address": "0x7890789078907890789078907890789078907890"
|
|
100
100
|
},
|
|
101
|
-
"base-
|
|
101
|
+
"base-sepolia": {
|
|
102
102
|
"address": "0x1011121011121011121011121011121011121011"
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -110,13 +110,12 @@ We currently accept tokens on the following chains:
|
|
|
110
110
|
|
|
111
111
|
- `ethereum`
|
|
112
112
|
- `optimism`
|
|
113
|
-
- `goerli`
|
|
114
113
|
- `sepolia`
|
|
115
114
|
- `base`
|
|
116
|
-
- `base-goerli`
|
|
117
115
|
- `base-sepolia`
|
|
118
|
-
- `optimism-goerli`
|
|
119
116
|
- `optimism-sepolia`
|
|
117
|
+
- `mode`
|
|
118
|
+
- `pgn`
|
|
120
119
|
|
|
121
120
|
#### Non-bridgable tokens
|
|
122
121
|
|
|
@@ -210,15 +209,15 @@ Here is an example:
|
|
|
210
209
|
"bridge": "0x136b1EC699c62b0606854056f02dC7Bb80482d63"
|
|
211
210
|
}
|
|
212
211
|
},
|
|
213
|
-
"
|
|
212
|
+
"sepolia": {
|
|
214
213
|
"address": "0x51f44ca59b867E005e48FA573Cb8df83FC7f7597",
|
|
215
214
|
"overrides": {
|
|
216
215
|
"bridge": {
|
|
217
|
-
"optimism-
|
|
216
|
+
"optimism-sepolia": "0x1427Bc44755d9Aa317535B1feE38922760Aa4e65"
|
|
218
217
|
}
|
|
219
218
|
}
|
|
220
219
|
},
|
|
221
|
-
"optimism-
|
|
220
|
+
"optimism-sepolia": {
|
|
222
221
|
"address": "0x2E5ED97596a8368EB9E44B1f3F25B2E813845303",
|
|
223
222
|
"overrides": {
|
|
224
223
|
"bridge": "0xD2b3F0Ea40dB68088415412b0043F37B3088836D"
|
package/dist/index.d.ts
CHANGED