@talismn/balances 0.0.0-pr2075-20250707042608 → 0.0.0-pr2075-20250707075518
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/declarations/src/index.d.ts +0 -1
- package/dist/declarations/src/modules/evm-erc20/config.d.ts +1 -14
- package/dist/declarations/src/modules/evm-erc20/fetchTokens.d.ts +2 -2
- package/dist/declarations/src/modules/evm-erc20/index.d.ts +1 -0
- package/dist/declarations/src/modules/evm-erc20/module.d.ts +2 -2
- package/dist/declarations/src/modules/evm-erc20/types.d.ts +14 -0
- package/dist/declarations/src/modules/evm-native/config.d.ts +1 -13
- package/dist/declarations/src/modules/evm-native/fetchTokens.d.ts +2 -2
- package/dist/declarations/src/modules/evm-native/index.d.ts +1 -0
- package/dist/declarations/src/modules/evm-native/module.d.ts +2 -2
- package/dist/declarations/src/modules/evm-native/types.d.ts +13 -0
- package/dist/declarations/src/modules/evm-uniswapv2/config.d.ts +1 -14
- package/dist/declarations/src/modules/evm-uniswapv2/fetchTokens.d.ts +2 -2
- package/dist/declarations/src/modules/evm-uniswapv2/index.d.ts +1 -0
- package/dist/declarations/src/modules/evm-uniswapv2/module.d.ts +2 -2
- package/dist/declarations/src/modules/evm-uniswapv2/types.d.ts +14 -0
- package/dist/declarations/src/modules/index.d.ts +120 -8
- package/dist/declarations/src/modules/substrate-assets/config.d.ts +1 -12
- package/dist/declarations/src/modules/substrate-assets/index.d.ts +1 -0
- package/dist/declarations/src/modules/substrate-assets/types.d.ts +14 -0
- package/dist/declarations/src/modules/substrate-foreignassets/config.d.ts +1 -14
- package/dist/declarations/src/modules/substrate-foreignassets/index.d.ts +1 -0
- package/dist/declarations/src/modules/substrate-foreignassets/types.d.ts +14 -0
- package/dist/declarations/src/modules/substrate-hydration/config.d.ts +1 -0
- package/dist/declarations/src/modules/substrate-hydration/fetchTokens.d.ts +2 -3
- package/dist/declarations/src/modules/substrate-hydration/module.d.ts +2 -3
- package/dist/declarations/src/modules/substrate-native/config.d.ts +1 -23
- package/dist/declarations/src/modules/substrate-native/index.d.ts +3 -0
- package/dist/declarations/src/modules/substrate-native/types.d.ts +25 -0
- package/dist/declarations/src/modules/substrate-psp22/config.d.ts +1 -14
- package/dist/declarations/src/modules/substrate-psp22/index.d.ts +1 -0
- package/dist/declarations/src/modules/substrate-psp22/types.d.ts +14 -0
- package/dist/declarations/src/modules/substrate-tokens/config.d.ts +3 -21
- package/dist/declarations/src/modules/substrate-tokens/index.d.ts +1 -0
- package/dist/declarations/src/modules/substrate-tokens/types.d.ts +23 -0
- package/dist/talismn-balances.cjs.dev.js +8831 -8805
- package/dist/talismn-balances.cjs.prod.js +8831 -8805
- package/dist/talismn-balances.esm.js +8836 -8814
- package/package.json +8 -8
- package/dist/declarations/src/NewBalanceModules.d.ts +0 -99
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@talismn/balances",
|
3
|
-
"version": "0.0.0-pr2075-
|
3
|
+
"version": "0.0.0-pr2075-20250707075518",
|
4
4
|
"author": "Talisman",
|
5
5
|
"homepage": "https://talisman.xyz",
|
6
6
|
"license": "GPL-3.0-or-later",
|
@@ -35,13 +35,13 @@
|
|
35
35
|
"scale-ts": "^1.6.1",
|
36
36
|
"viem": "^2.27.3",
|
37
37
|
"zod": "^3.25.62",
|
38
|
-
"@talismn/chain-connector": "0.0.0-pr2075-
|
39
|
-
"@talismn/chain-connector-evm": "0.0.0-pr2075-
|
40
|
-
"@talismn/chaindata-provider": "0.0.0-pr2075-
|
41
|
-
"@talismn/
|
42
|
-
"@talismn/
|
43
|
-
"@talismn/
|
44
|
-
"@talismn/util": "0.0.0-pr2075-
|
38
|
+
"@talismn/chain-connector": "0.0.0-pr2075-20250707075518",
|
39
|
+
"@talismn/chain-connector-evm": "0.0.0-pr2075-20250707075518",
|
40
|
+
"@talismn/chaindata-provider": "0.0.0-pr2075-20250707075518",
|
41
|
+
"@talismn/sapi": "0.0.0-pr2075-20250707075518",
|
42
|
+
"@talismn/token-rates": "0.0.0-pr2075-20250707075518",
|
43
|
+
"@talismn/scale": "0.0.0-pr2075-20250707075518",
|
44
|
+
"@talismn/util": "0.0.0-pr2075-20250707075518"
|
45
45
|
},
|
46
46
|
"devDependencies": {
|
47
47
|
"@polkadot/api-contract": "16.1.2",
|
@@ -1,99 +0,0 @@
|
|
1
|
-
export declare const NEW_BALANCE_MODULES: (import("./modules/IBalanceModule").IBalanceModule<"substrate-native", {
|
2
|
-
symbol?: string | undefined;
|
3
|
-
networkId?: string | undefined;
|
4
|
-
isDefault?: boolean | undefined;
|
5
|
-
decimals?: number | undefined;
|
6
|
-
name?: string | undefined;
|
7
|
-
logo?: string | undefined;
|
8
|
-
coingeckoId?: string | undefined;
|
9
|
-
noDiscovery?: boolean | undefined;
|
10
|
-
mirrorOf?: string | undefined;
|
11
|
-
}, import("./modules/substrate-native/config").ModuleConfig, import("./modules/substrate-native/config").MiniMetadataExtra> | import("./modules/IBalanceModule").IBalanceModule<"substrate-assets", {
|
12
|
-
assetId: string;
|
13
|
-
symbol?: string | undefined;
|
14
|
-
networkId?: string | undefined;
|
15
|
-
isDefault?: boolean | undefined;
|
16
|
-
decimals?: number | undefined;
|
17
|
-
name?: string | undefined;
|
18
|
-
logo?: string | undefined;
|
19
|
-
coingeckoId?: string | undefined;
|
20
|
-
noDiscovery?: boolean | undefined;
|
21
|
-
mirrorOf?: string | undefined;
|
22
|
-
}, unknown, unknown> | import("./modules/IBalanceModule").IBalanceModule<"substrate-hydration", {
|
23
|
-
onChainId: number;
|
24
|
-
symbol?: string | undefined;
|
25
|
-
networkId?: string | undefined;
|
26
|
-
isDefault?: boolean | undefined;
|
27
|
-
decimals?: number | undefined;
|
28
|
-
name?: string | undefined;
|
29
|
-
logo?: string | undefined;
|
30
|
-
coingeckoId?: string | undefined;
|
31
|
-
noDiscovery?: boolean | undefined;
|
32
|
-
mirrorOf?: string | undefined;
|
33
|
-
}, unknown, unknown> | import("./modules/IBalanceModule").IBalanceModule<"substrate-foreignassets", {
|
34
|
-
onChainId: string;
|
35
|
-
symbol?: string | undefined;
|
36
|
-
networkId?: string | undefined;
|
37
|
-
isDefault?: boolean | undefined;
|
38
|
-
decimals?: number | undefined;
|
39
|
-
name?: string | undefined;
|
40
|
-
logo?: string | undefined;
|
41
|
-
coingeckoId?: string | undefined;
|
42
|
-
noDiscovery?: boolean | undefined;
|
43
|
-
mirrorOf?: string | undefined;
|
44
|
-
}, unknown, unknown> | import("./modules/IBalanceModule").IBalanceModule<"substrate-psp22", {
|
45
|
-
contractAddress: string;
|
46
|
-
symbol?: string | undefined;
|
47
|
-
networkId?: string | undefined;
|
48
|
-
isDefault?: boolean | undefined;
|
49
|
-
decimals?: number | undefined;
|
50
|
-
name?: string | undefined;
|
51
|
-
logo?: string | undefined;
|
52
|
-
coingeckoId?: string | undefined;
|
53
|
-
noDiscovery?: boolean | undefined;
|
54
|
-
mirrorOf?: string | undefined;
|
55
|
-
}, unknown, unknown> | import("./modules/IBalanceModule").IBalanceModule<"substrate-tokens", {
|
56
|
-
symbol: string;
|
57
|
-
decimals: number;
|
58
|
-
existentialDeposit: string;
|
59
|
-
onChainId: string | number;
|
60
|
-
networkId?: string | undefined;
|
61
|
-
isDefault?: boolean | undefined;
|
62
|
-
name?: string | undefined;
|
63
|
-
logo?: string | undefined;
|
64
|
-
coingeckoId?: string | undefined;
|
65
|
-
noDiscovery?: boolean | undefined;
|
66
|
-
mirrorOf?: string | undefined;
|
67
|
-
}, import("./modules/substrate-tokens/config").ModuleConfig, import("./modules/substrate-tokens/config").MiniMetadataExtra> | import("./modules/IBalanceModule").IBalanceModule<"evm-erc20", {
|
68
|
-
contractAddress: `0x${string}`;
|
69
|
-
symbol?: string | undefined;
|
70
|
-
networkId?: string | undefined;
|
71
|
-
isDefault?: boolean | undefined;
|
72
|
-
decimals?: number | undefined;
|
73
|
-
name?: string | undefined;
|
74
|
-
logo?: string | undefined;
|
75
|
-
coingeckoId?: string | undefined;
|
76
|
-
noDiscovery?: boolean | undefined;
|
77
|
-
mirrorOf?: string | undefined;
|
78
|
-
}, unknown, unknown> | import("./modules/IBalanceModule").IBalanceModule<"evm-uniswapv2", {
|
79
|
-
contractAddress: `0x${string}`;
|
80
|
-
symbol?: string | undefined;
|
81
|
-
networkId?: string | undefined;
|
82
|
-
isDefault?: boolean | undefined;
|
83
|
-
decimals?: number | undefined;
|
84
|
-
name?: string | undefined;
|
85
|
-
logo?: string | undefined;
|
86
|
-
coingeckoId?: string | undefined;
|
87
|
-
noDiscovery?: boolean | undefined;
|
88
|
-
mirrorOf?: string | undefined;
|
89
|
-
}, unknown, unknown> | import("./modules/IBalanceModule").IBalanceModule<"evm-native", {
|
90
|
-
symbol?: string | undefined;
|
91
|
-
networkId?: string | undefined;
|
92
|
-
isDefault?: boolean | undefined;
|
93
|
-
decimals?: number | undefined;
|
94
|
-
name?: string | undefined;
|
95
|
-
logo?: string | undefined;
|
96
|
-
coingeckoId?: string | undefined;
|
97
|
-
noDiscovery?: boolean | undefined;
|
98
|
-
mirrorOf?: string | undefined;
|
99
|
-
}, unknown, unknown>)[];
|