@nadohq/shared 0.1.0-alpha.15 → 0.1.0-alpha.17

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.
@@ -25,7 +25,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
25
25
  ensRegistry?: viem.ChainContract | undefined;
26
26
  ensUniversalResolver?: viem.ChainContract | undefined;
27
27
  multicall3?: viem.ChainContract | undefined;
28
- universalSignatureVerifier?: viem.ChainContract | undefined;
28
+ erc6492Verifier?: viem.ChainContract | undefined;
29
29
  } | undefined;
30
30
  ensTlds?: readonly string[] | undefined;
31
31
  id: 1337;
@@ -35,6 +35,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
35
35
  readonly name: "Ether";
36
36
  readonly symbol: "ETH";
37
37
  };
38
+ experimental_preconfirmationTime?: number | undefined | undefined;
38
39
  rpcUrls: {
39
40
  readonly default: {
40
41
  readonly http: readonly ["http://127.0.0.1:8545"];
@@ -55,7 +56,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
55
56
  readonly apiUrl: "https://api.arbiscan.io/api";
56
57
  };
57
58
  };
58
- blockTime?: number | undefined | undefined;
59
+ blockTime: 250;
59
60
  contracts: {
60
61
  readonly multicall3: {
61
62
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
@@ -70,6 +71,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
70
71
  readonly symbol: "ETH";
71
72
  readonly decimals: 18;
72
73
  };
74
+ experimental_preconfirmationTime?: number | undefined | undefined;
73
75
  rpcUrls: {
74
76
  readonly default: {
75
77
  readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
@@ -138,6 +140,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
138
140
  readonly symbol: "ETH";
139
141
  readonly decimals: 18;
140
142
  };
143
+ experimental_preconfirmationTime?: number | undefined | undefined;
141
144
  rpcUrls: {
142
145
  readonly default: {
143
146
  readonly http: readonly ["https://rpc-gel-sepolia.inkonchain.com"];
@@ -211,16 +214,16 @@ declare const CHAIN_ENV_TO_CHAIN: {
211
214
  r: viem.Hex;
212
215
  s: viem.Hex;
213
216
  v: bigint;
217
+ value: bigint;
218
+ gas: bigint;
214
219
  to: abitype.Address | null;
215
220
  from: abitype.Address;
216
- gas: bigint;
217
221
  nonce: number;
218
- value: bigint;
219
222
  blockHash: `0x${string}` | null;
220
223
  blockNumber: bigint | null;
224
+ transactionIndex: number | null;
221
225
  hash: viem.Hash;
222
226
  input: viem.Hex;
223
- transactionIndex: number | null;
224
227
  typeHex: viem.Hex | null;
225
228
  accessList?: undefined | undefined;
226
229
  authorizationList?: undefined | undefined;
@@ -25,7 +25,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
25
25
  ensRegistry?: viem.ChainContract | undefined;
26
26
  ensUniversalResolver?: viem.ChainContract | undefined;
27
27
  multicall3?: viem.ChainContract | undefined;
28
- universalSignatureVerifier?: viem.ChainContract | undefined;
28
+ erc6492Verifier?: viem.ChainContract | undefined;
29
29
  } | undefined;
30
30
  ensTlds?: readonly string[] | undefined;
31
31
  id: 1337;
@@ -35,6 +35,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
35
35
  readonly name: "Ether";
36
36
  readonly symbol: "ETH";
37
37
  };
38
+ experimental_preconfirmationTime?: number | undefined | undefined;
38
39
  rpcUrls: {
39
40
  readonly default: {
40
41
  readonly http: readonly ["http://127.0.0.1:8545"];
@@ -55,7 +56,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
55
56
  readonly apiUrl: "https://api.arbiscan.io/api";
56
57
  };
57
58
  };
58
- blockTime?: number | undefined | undefined;
59
+ blockTime: 250;
59
60
  contracts: {
60
61
  readonly multicall3: {
61
62
  readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
@@ -70,6 +71,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
70
71
  readonly symbol: "ETH";
71
72
  readonly decimals: 18;
72
73
  };
74
+ experimental_preconfirmationTime?: number | undefined | undefined;
73
75
  rpcUrls: {
74
76
  readonly default: {
75
77
  readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
@@ -138,6 +140,7 @@ declare const CHAIN_ENV_TO_CHAIN: {
138
140
  readonly symbol: "ETH";
139
141
  readonly decimals: 18;
140
142
  };
143
+ experimental_preconfirmationTime?: number | undefined | undefined;
141
144
  rpcUrls: {
142
145
  readonly default: {
143
146
  readonly http: readonly ["https://rpc-gel-sepolia.inkonchain.com"];
@@ -211,16 +214,16 @@ declare const CHAIN_ENV_TO_CHAIN: {
211
214
  r: viem.Hex;
212
215
  s: viem.Hex;
213
216
  v: bigint;
217
+ value: bigint;
218
+ gas: bigint;
214
219
  to: abitype.Address | null;
215
220
  from: abitype.Address;
216
- gas: bigint;
217
221
  nonce: number;
218
- value: bigint;
219
222
  blockHash: `0x${string}` | null;
220
223
  blockNumber: bigint | null;
224
+ transactionIndex: number | null;
221
225
  hash: viem.Hash;
222
226
  input: viem.Hex;
223
- transactionIndex: number | null;
224
227
  typeHex: viem.Hex | null;
225
228
  accessList?: undefined | undefined;
226
229
  authorizationList?: undefined | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nadohq/shared",
3
- "version": "0.1.0-alpha.15",
3
+ "version": "0.1.0-alpha.17",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "description": "Shared utilities, types, and contract helpers for Nado SDK",
@@ -45,5 +45,5 @@
45
45
  "bignumber.js": "^9.3.0",
46
46
  "viem": "*"
47
47
  },
48
- "gitHead": "fd6395df23d38b751aad0cd9b56cf1849125fd12"
48
+ "gitHead": "4e3d8e6c062ebe97f7da85c36a9d2207b2d38464"
49
49
  }