@yodlpay/tokenlists 0.9.0-alpha.9 → 0.9.0
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/dist/abis-ts/YodlRouterV0.9.abi.d.ts +389 -513
- package/dist/chainlist-v1.json +6 -6
- package/dist/fiatCurrencies.json +7 -1
- package/dist/index.d.ts +389 -513
- package/dist/tokenlist-featured.json +554 -155
- package/dist/tokenlist-generated.json +25 -13
- package/dist/tokenlists.cjs.development.js +758 -942
- package/dist/tokenlists.cjs.development.js.map +1 -1
- package/dist/tokenlists.cjs.production.min.js +1 -1
- package/dist/tokenlists.cjs.production.min.js.map +1 -1
- package/dist/tokenlists.esm.js +768 -954
- package/dist/tokenlists.esm.js.map +1 -1
- package/dist/types.d.ts +2 -14
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,20 +1,7 @@
|
|
|
1
1
|
import { AbiVersion } from 'abis';
|
|
2
2
|
import { Address } from 'viem';
|
|
3
3
|
declare type ExtensionValue = string | number | boolean | null | undefined;
|
|
4
|
-
export declare
|
|
5
|
-
MAINNET = "Mainnet",
|
|
6
|
-
OPTIMISM = "Optimism",
|
|
7
|
-
ARBITRUM = "Arbitrum",
|
|
8
|
-
AVALANCHE = "Avalanche",
|
|
9
|
-
BASE = "Base",
|
|
10
|
-
TESTNET = "TESTNET",
|
|
11
|
-
STABLECOIN = "Stablecoin",
|
|
12
|
-
USD = "USD",
|
|
13
|
-
EUR = "EUR",
|
|
14
|
-
TOP_10 = "Top10",
|
|
15
|
-
NATIVE_TOKEN = "Native Token",
|
|
16
|
-
WRAPPED = "wrapped"
|
|
17
|
-
}
|
|
4
|
+
export declare type TokenListTagNames = 'Mainnet' | 'Optimism' | 'Arbitrum' | 'Avalanche' | 'Base' | 'Gnosis' | 'TESTNET' | 'Stablecoin' | 'USD' | 'EUR' | 'Top10' | 'Native Token' | 'Wrapped' | 'Featured';
|
|
18
5
|
export interface CurveRouterInfo {
|
|
19
6
|
readonly chainId: number;
|
|
20
7
|
readonly address: string;
|
|
@@ -69,6 +56,7 @@ export interface TokenInfo {
|
|
|
69
56
|
} | ExtensionValue;
|
|
70
57
|
} | ExtensionValue;
|
|
71
58
|
};
|
|
59
|
+
readonly displayDecimals: number;
|
|
72
60
|
}
|
|
73
61
|
export declare type TokenListSimple = {
|
|
74
62
|
timestamp: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yodlpay/tokenlists",
|
|
3
|
-
"version": "0.9.0
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Tokenlist typings, schema and lists.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -44,4 +44,4 @@
|
|
|
44
44
|
"typescript": "^5.8.3",
|
|
45
45
|
"viem": "^2.30.6"
|
|
46
46
|
}
|
|
47
|
-
}
|
|
47
|
+
}
|