@latticexyz/common 2.2.22-fc10a277e139c26aea88326f188b45b18367d4a5 → 2.2.22-fc522a899c932f53675e624805e97a4eeefca9e8
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/chains.d.ts +7 -5
- package/package.json +3 -3
package/dist/chains.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as viem_chains from 'viem/chains';
|
|
2
2
|
import { Chain } from 'viem/chains';
|
|
3
3
|
import * as viem from 'viem';
|
|
4
|
-
import * as viem_experimental from 'viem/experimental';
|
|
5
4
|
import * as viem_op_stack from 'viem/op-stack';
|
|
6
5
|
|
|
7
6
|
type MUDChain = Chain & {
|
|
@@ -36,6 +35,7 @@ declare const mudFoundry: {
|
|
|
36
35
|
multicall3?: viem.ChainContract | undefined;
|
|
37
36
|
universalSignatureVerifier?: viem.ChainContract | undefined;
|
|
38
37
|
} | undefined;
|
|
38
|
+
readonly ensTlds?: readonly string[] | undefined;
|
|
39
39
|
readonly id: 31337;
|
|
40
40
|
readonly name: "Foundry";
|
|
41
41
|
readonly nativeCurrency: {
|
|
@@ -106,6 +106,7 @@ declare const redstone: {
|
|
|
106
106
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
107
107
|
};
|
|
108
108
|
};
|
|
109
|
+
readonly ensTlds?: readonly string[] | undefined;
|
|
109
110
|
readonly id: 690;
|
|
110
111
|
readonly name: "Redstone";
|
|
111
112
|
readonly nativeCurrency: {
|
|
@@ -312,7 +313,7 @@ declare const redstone: {
|
|
|
312
313
|
value: bigint;
|
|
313
314
|
yParity: number;
|
|
314
315
|
accessList: viem.AccessList;
|
|
315
|
-
authorizationList:
|
|
316
|
+
authorizationList: viem.SignedAuthorizationList<number>;
|
|
316
317
|
blobVersionedHashes?: undefined;
|
|
317
318
|
chainId: number;
|
|
318
319
|
type: "eip7702";
|
|
@@ -419,6 +420,7 @@ declare const garnet: {
|
|
|
419
420
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
420
421
|
};
|
|
421
422
|
};
|
|
423
|
+
readonly ensTlds?: readonly string[] | undefined;
|
|
422
424
|
readonly id: 17069;
|
|
423
425
|
readonly name: "Garnet Testnet";
|
|
424
426
|
readonly nativeCurrency: {
|
|
@@ -619,7 +621,7 @@ declare const garnet: {
|
|
|
619
621
|
value: bigint;
|
|
620
622
|
yParity: number;
|
|
621
623
|
accessList: viem.AccessList;
|
|
622
|
-
authorizationList:
|
|
624
|
+
authorizationList: viem.SignedAuthorizationList<number>;
|
|
623
625
|
blobVersionedHashes?: undefined;
|
|
624
626
|
chainId: number;
|
|
625
627
|
type: "eip7702";
|
|
@@ -923,7 +925,7 @@ declare const rhodolite: {
|
|
|
923
925
|
value: bigint;
|
|
924
926
|
yParity: number;
|
|
925
927
|
accessList: viem.AccessList;
|
|
926
|
-
authorizationList:
|
|
928
|
+
authorizationList: viem.SignedAuthorizationList<number>;
|
|
927
929
|
blobVersionedHashes?: undefined;
|
|
928
930
|
chainId: number;
|
|
929
931
|
type: "eip7702";
|
|
@@ -1216,7 +1218,7 @@ declare const pyrope: {
|
|
|
1216
1218
|
value: bigint;
|
|
1217
1219
|
yParity: number;
|
|
1218
1220
|
accessList: viem.AccessList;
|
|
1219
|
-
authorizationList:
|
|
1221
|
+
authorizationList: viem.SignedAuthorizationList<number>;
|
|
1220
1222
|
blobVersionedHashes?: undefined;
|
|
1221
1223
|
chainId: number;
|
|
1222
1224
|
type: "eip7702";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@latticexyz/common",
|
|
3
|
-
"version": "2.2.22-
|
|
3
|
+
"version": "2.2.22-fc522a899c932f53675e624805e97a4eeefca9e8",
|
|
4
4
|
"description": "Common low level logic shared between packages",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -69,11 +69,11 @@
|
|
|
69
69
|
"p-retry": "^5.1.2",
|
|
70
70
|
"prettier": "3.2.5",
|
|
71
71
|
"prettier-plugin-solidity": "1.3.1",
|
|
72
|
-
"@latticexyz/schema-type": "2.2.22-
|
|
72
|
+
"@latticexyz/schema-type": "2.2.22-fc522a899c932f53675e624805e97a4eeefca9e8"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@types/debug": "^4.1.7",
|
|
76
|
-
"viem": "2.
|
|
76
|
+
"viem": "2.30.6"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
79
79
|
"@aws-sdk/client-kms": "3.x",
|