@tria-sdk/constants 1.0.0 → 1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tria-sdk/constants",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/chains.ts CHANGED
@@ -182,9 +182,9 @@ export const chainNameToLogo = {
182
182
  MANTLE: `${baseLogoUrl}/Mantle.webp`,
183
183
  "MANTLE-TESTNET": `${baseLogoUrl}/Mantle.webp`,
184
184
  SOLANA: `${baseLogoUrl}/Solana.webp`,
185
- [zkLink]: ``,
186
- [zkLinkTestnet]: ``,
187
- [bitlayerTestnet]: ``,
185
+ [zkLink]: `${baseLogoUrl}/Ethereum.webp`,
186
+ [zkLinkTestnet]: `${baseLogoUrl}/Ethereum.webp`,
187
+ [bitlayerTestnet]: `${baseLogoUrl}/Ethereum.webp`,
188
188
  };
189
189
 
190
190
  export const chainNameToLogoBlack = {
@@ -206,7 +206,7 @@ export const chainNameToLogoBlack = {
206
206
  MANTLE: `${baseLogoUrlBlack}/Mantle.webp`,
207
207
  "MANTLE-TESTNET": `${baseLogoUrlBlack}/Mantle.webp`,
208
208
  SOLANA: `${baseLogoUrlBlack}/Solana.webp`,
209
- [zkLink]: ``,
210
- [zkLinkTestnet]: ``,
211
- [bitlayerTestnet]: ``,
209
+ [zkLink]: `${baseLogoUrlBlack}/Ethereum.webp`,
210
+ [zkLinkTestnet]: `${baseLogoUrlBlack}/Ethereum.webp`,
211
+ [bitlayerTestnet]: `${baseLogoUrlBlack}/Ethereum.webp`,
212
212
  };
package/tsconfig.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "target": "ES2022",
4
- "module": "CommonJS", // "CommonJS",
4
+ "module": "ES2022", // "CommonJS",
5
5
  "skipLibCheck": true,
6
6
  "strict": true,
7
7
  "esModuleInterop": true,