@talismn/balances 0.0.0-pr2075-20250707160526 → 0.0.0-pr2075-20250708125508

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": "@talismn/balances",
3
- "version": "0.0.0-pr2075-20250707160526",
3
+ "version": "0.0.0-pr2075-20250708125508",
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-20250707160526",
39
- "@talismn/chain-connector-evm": "0.0.0-pr2075-20250707160526",
40
- "@talismn/sapi": "0.0.0-pr2075-20250707160526",
41
- "@talismn/scale": "0.0.0-pr2075-20250707160526",
42
- "@talismn/token-rates": "0.0.0-pr2075-20250707160526",
43
- "@talismn/util": "0.0.0-pr2075-20250707160526",
44
- "@talismn/chaindata-provider": "0.0.0-pr2075-20250707160526"
38
+ "@talismn/chain-connector": "0.0.0-pr2075-20250708125508",
39
+ "@talismn/chaindata-provider": "0.0.0-pr2075-20250708125508",
40
+ "@talismn/chain-connector-evm": "0.0.0-pr2075-20250708125508",
41
+ "@talismn/sapi": "0.0.0-pr2075-20250708125508",
42
+ "@talismn/scale": "0.0.0-pr2075-20250708125508",
43
+ "@talismn/token-rates": "0.0.0-pr2075-20250708125508",
44
+ "@talismn/util": "0.0.0-pr2075-20250708125508"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@polkadot/api-contract": "16.1.2",
@@ -1,12 +0,0 @@
1
- import { ChainConnector } from "@talismn/chain-connector";
2
- /**
3
- * Pass some these into an `RpcStateQueryHelper` in order to easily batch multiple state queries into the one rpc call.
4
- */
5
- export type RpcQueryPack<T> = {
6
- stateKeys: (`0x${string}` | null)[];
7
- decodeResult: (changes: (`0x${string}` | null)[]) => T;
8
- };
9
- export declare const fetchQueriesPack: <T>(connector: ChainConnector, networkId: string, queries: RpcQueryPack<T>[]) => Promise<T[]>;
10
- /**
11
- * Used by a variety of balance modules to help batch multiple state queries into the one rpc call.
12
- */