@talismn/balances 0.0.0-pr2043-20250619165342 → 0.0.0-pr2043-20250620074243

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.
@@ -146,7 +146,7 @@ export declare class Balance {
146
146
  chainName: string;
147
147
  specName: string;
148
148
  specVersion: number;
149
- account: "*25519" | "secp256k1";
149
+ account: "secp256k1" | "*25519";
150
150
  prefix: number;
151
151
  rpcs: string[];
152
152
  topology: {
@@ -172,6 +172,17 @@ export declare class Balance {
172
172
  hasCheckMetadataHash?: boolean | undefined;
173
173
  hasExtrinsicSignatureTypePrefix?: boolean | undefined;
174
174
  isUnknownFeeToken?: boolean | undefined;
175
+ balancesConfig?: {
176
+ "substrate-native"?: {
177
+ disable?: boolean | undefined;
178
+ } | undefined;
179
+ "substrate-assets"?: undefined;
180
+ "substrate-psp22"?: undefined;
181
+ "substrate-tokens"?: {
182
+ palletId?: string | undefined;
183
+ } | undefined;
184
+ "substrate-foreignassets"?: undefined;
185
+ } | undefined;
175
186
  } | {
176
187
  id: string;
177
188
  name: string;
@@ -194,7 +205,7 @@ export declare class Balance {
194
205
  themeColor?: string | undefined;
195
206
  substrateChainId?: string | undefined;
196
207
  preserveGasEstimate?: boolean | undefined;
197
- feeType?: "eip-1559" | "legacy" | undefined;
208
+ feeType?: "legacy" | "eip-1559" | undefined;
198
209
  l2FeeType?: {
199
210
  type: "op-stack";
200
211
  } | {
@@ -202,6 +213,11 @@ export declare class Balance {
202
213
  l1GasPriceOracle: `0x${string}`;
203
214
  } | undefined;
204
215
  contracts?: Partial<Record<"Erc20Aggregator" | "Multicall3", `0x${string}`>> | undefined;
216
+ balancesConfig?: {
217
+ "evm-native"?: undefined;
218
+ "evm-erc20"?: undefined;
219
+ "evm-uniswapv2"?: undefined;
220
+ } | undefined;
205
221
  } | null;
206
222
  get tokenId(): string;
207
223
  get token(): {
@@ -0,0 +1,11 @@
1
+ export declare const TokenConfigBaseSchema: import("zod/v4").ZodObject<{
2
+ symbol: import("zod/v4").ZodOptional<import("zod/v4").ZodString>;
3
+ isDefault: import("zod/v4").ZodOptional<import("zod/v4").ZodOptional<import("zod/v4").ZodBoolean>>;
4
+ decimals: import("zod/v4").ZodOptional<import("zod/v4").ZodInt>;
5
+ name: import("zod/v4").ZodOptional<import("zod/v4").ZodString>;
6
+ logo: import("zod/v4").ZodOptional<import("zod/v4").ZodOptional<import("zod/v4").ZodString>>;
7
+ coingeckoId: import("zod/v4").ZodOptional<import("zod/v4").ZodOptional<import("zod/v4").ZodString>>;
8
+ networkId: import("zod/v4").ZodOptional<import("zod/v4").ZodString>;
9
+ noDiscovery: import("zod/v4").ZodOptional<import("zod/v4").ZodOptional<import("zod/v4").ZodBoolean>>;
10
+ mirrorOf: import("zod/v4").ZodOptional<import("zod/v4").ZodOptional<import("zod/v4").ZodString>>;
11
+ }, import("zod/v4/core").$strict>;