@latticexyz/common 2.2.21-f1e008f2d2a7ba2369a07f9807a7ee0cd1b3b20c → 2.2.21

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 CHANGED
@@ -970,4 +970,297 @@ declare const rhodolite: {
970
970
  };
971
971
  };
972
972
 
973
- export { type MUDChain, garnet, mudFoundry, redstone, rhodolite };
973
+ declare const pyrope: {
974
+ readonly name: "Pyrope Testnet";
975
+ readonly testnet: true;
976
+ readonly id: 695569;
977
+ readonly sourceId: 11155111;
978
+ readonly nativeCurrency: {
979
+ readonly name: "Ether";
980
+ readonly symbol: "ETH";
981
+ readonly decimals: 18;
982
+ };
983
+ readonly rpcUrls: {
984
+ readonly default: {
985
+ readonly http: readonly ["https://rpc.pyropechain.com"];
986
+ readonly webSocket: readonly ["wss://rpc.pyropechain.com"];
987
+ };
988
+ readonly bundler: {
989
+ readonly http: readonly ["https://rpc.pyropechain.com"];
990
+ readonly webSocket: readonly ["wss://rpc.pyropechain.com"];
991
+ };
992
+ };
993
+ readonly contracts: {
994
+ readonly l1StandardBridge: {
995
+ readonly 11155111: {
996
+ readonly address: "0xC24932c31D9621aE9e792576152B7ef010cFC2F8";
997
+ };
998
+ };
999
+ readonly gasPriceOracle: {
1000
+ readonly address: "0x420000000000000000000000000000000000000F";
1001
+ };
1002
+ readonly l1Block: {
1003
+ readonly address: "0x4200000000000000000000000000000000000015";
1004
+ };
1005
+ readonly l2CrossDomainMessenger: {
1006
+ readonly address: "0x4200000000000000000000000000000000000007";
1007
+ };
1008
+ readonly l2Erc721Bridge: {
1009
+ readonly address: "0x4200000000000000000000000000000000000014";
1010
+ };
1011
+ readonly l2StandardBridge: {
1012
+ readonly address: "0x4200000000000000000000000000000000000010";
1013
+ };
1014
+ readonly l2ToL1MessagePasser: {
1015
+ readonly address: "0x4200000000000000000000000000000000000016";
1016
+ };
1017
+ };
1018
+ readonly blockExplorers: {
1019
+ readonly default: {
1020
+ readonly name: "Blockscout";
1021
+ readonly url: "https://explorer.pyropechain.com";
1022
+ };
1023
+ readonly worldsExplorer: {
1024
+ readonly name: "MUD Worlds Explorer";
1025
+ readonly url: "https://explorer.mud.dev/pyrope/worlds";
1026
+ };
1027
+ };
1028
+ readonly iconUrls: readonly ["https://lattice.xyz/brand/color/pyrope.svg"];
1029
+ readonly indexerUrl: "https://indexer.mud.pyropechain.com";
1030
+ readonly formatters: {
1031
+ readonly block: {
1032
+ exclude: [] | undefined;
1033
+ format: (args: viem_op_stack.OpStackRpcBlock<viem.BlockTag, boolean>) => {
1034
+ baseFeePerGas: bigint | null;
1035
+ blobGasUsed: bigint;
1036
+ difficulty: bigint;
1037
+ excessBlobGas: bigint;
1038
+ extraData: `0x${string}`;
1039
+ gasLimit: bigint;
1040
+ gasUsed: bigint;
1041
+ hash: `0x${string}` | null;
1042
+ logsBloom: `0x${string}` | null;
1043
+ miner: `0x${string}`;
1044
+ mixHash: `0x${string}`;
1045
+ nonce: `0x${string}` | null;
1046
+ number: bigint | null;
1047
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
1048
+ parentHash: `0x${string}`;
1049
+ receiptsRoot: `0x${string}`;
1050
+ sealFields: `0x${string}`[];
1051
+ sha3Uncles: `0x${string}`;
1052
+ size: bigint;
1053
+ stateRoot: `0x${string}`;
1054
+ timestamp: bigint;
1055
+ totalDifficulty: bigint | null;
1056
+ transactions: `0x${string}`[] | viem_op_stack.OpStackTransaction<boolean>[];
1057
+ transactionsRoot: `0x${string}`;
1058
+ uncles: `0x${string}`[];
1059
+ withdrawals?: viem.Withdrawal[] | undefined;
1060
+ withdrawalsRoot?: `0x${string}` | undefined;
1061
+ };
1062
+ type: "block";
1063
+ };
1064
+ readonly transaction: {
1065
+ exclude: [] | undefined;
1066
+ format: (args: viem_op_stack.OpStackRpcTransaction<boolean>) => {
1067
+ blockHash: `0x${string}` | null;
1068
+ blockNumber: bigint | null;
1069
+ from: `0x${string}`;
1070
+ gas: bigint;
1071
+ hash: `0x${string}`;
1072
+ input: `0x${string}`;
1073
+ nonce: number;
1074
+ r: `0x${string}`;
1075
+ s: `0x${string}`;
1076
+ to: `0x${string}` | null;
1077
+ transactionIndex: number | null;
1078
+ typeHex: `0x${string}` | null;
1079
+ v: bigint;
1080
+ value: bigint;
1081
+ yParity: number;
1082
+ gasPrice?: undefined;
1083
+ maxFeePerBlobGas?: undefined;
1084
+ maxFeePerGas: bigint;
1085
+ maxPriorityFeePerGas: bigint;
1086
+ isSystemTx?: boolean | undefined;
1087
+ mint?: bigint | undefined;
1088
+ sourceHash: `0x${string}`;
1089
+ type: "deposit";
1090
+ } | {
1091
+ r: `0x${string}`;
1092
+ s: `0x${string}`;
1093
+ v: bigint;
1094
+ to: `0x${string}` | null;
1095
+ from: `0x${string}`;
1096
+ gas: bigint;
1097
+ nonce: number;
1098
+ value: bigint;
1099
+ blockHash: `0x${string}` | null;
1100
+ blockNumber: bigint | null;
1101
+ hash: `0x${string}`;
1102
+ input: `0x${string}`;
1103
+ transactionIndex: number | null;
1104
+ typeHex: `0x${string}` | null;
1105
+ accessList?: undefined;
1106
+ authorizationList?: undefined;
1107
+ blobVersionedHashes?: undefined;
1108
+ chainId?: number | undefined;
1109
+ yParity?: undefined;
1110
+ type: "legacy";
1111
+ gasPrice: bigint;
1112
+ maxFeePerBlobGas?: undefined;
1113
+ maxFeePerGas?: undefined;
1114
+ maxPriorityFeePerGas?: undefined;
1115
+ isSystemTx?: undefined;
1116
+ mint?: undefined;
1117
+ sourceHash?: undefined;
1118
+ } | {
1119
+ blockHash: `0x${string}` | null;
1120
+ blockNumber: bigint | null;
1121
+ from: `0x${string}`;
1122
+ gas: bigint;
1123
+ hash: `0x${string}`;
1124
+ input: `0x${string}`;
1125
+ nonce: number;
1126
+ r: `0x${string}`;
1127
+ s: `0x${string}`;
1128
+ to: `0x${string}` | null;
1129
+ transactionIndex: number | null;
1130
+ typeHex: `0x${string}` | null;
1131
+ v: bigint;
1132
+ value: bigint;
1133
+ yParity: number;
1134
+ accessList: viem.AccessList;
1135
+ authorizationList?: undefined;
1136
+ blobVersionedHashes?: undefined;
1137
+ chainId: number;
1138
+ type: "eip2930";
1139
+ gasPrice: bigint;
1140
+ maxFeePerBlobGas?: undefined;
1141
+ maxFeePerGas?: undefined;
1142
+ maxPriorityFeePerGas?: undefined;
1143
+ isSystemTx?: undefined;
1144
+ mint?: undefined;
1145
+ sourceHash?: undefined;
1146
+ } | {
1147
+ blockHash: `0x${string}` | null;
1148
+ blockNumber: bigint | null;
1149
+ from: `0x${string}`;
1150
+ gas: bigint;
1151
+ hash: `0x${string}`;
1152
+ input: `0x${string}`;
1153
+ nonce: number;
1154
+ r: `0x${string}`;
1155
+ s: `0x${string}`;
1156
+ to: `0x${string}` | null;
1157
+ transactionIndex: number | null;
1158
+ typeHex: `0x${string}` | null;
1159
+ v: bigint;
1160
+ value: bigint;
1161
+ yParity: number;
1162
+ accessList: viem.AccessList;
1163
+ authorizationList?: undefined;
1164
+ blobVersionedHashes?: undefined;
1165
+ chainId: number;
1166
+ type: "eip1559";
1167
+ gasPrice?: undefined;
1168
+ maxFeePerBlobGas?: undefined;
1169
+ maxFeePerGas: bigint;
1170
+ maxPriorityFeePerGas: bigint;
1171
+ isSystemTx?: undefined;
1172
+ mint?: undefined;
1173
+ sourceHash?: undefined;
1174
+ } | {
1175
+ blockHash: `0x${string}` | null;
1176
+ blockNumber: bigint | null;
1177
+ from: `0x${string}`;
1178
+ gas: bigint;
1179
+ hash: `0x${string}`;
1180
+ input: `0x${string}`;
1181
+ nonce: number;
1182
+ r: `0x${string}`;
1183
+ s: `0x${string}`;
1184
+ to: `0x${string}` | null;
1185
+ transactionIndex: number | null;
1186
+ typeHex: `0x${string}` | null;
1187
+ v: bigint;
1188
+ value: bigint;
1189
+ yParity: number;
1190
+ accessList: viem.AccessList;
1191
+ authorizationList?: undefined;
1192
+ blobVersionedHashes: readonly `0x${string}`[];
1193
+ chainId: number;
1194
+ type: "eip4844";
1195
+ gasPrice?: undefined;
1196
+ maxFeePerBlobGas: bigint;
1197
+ maxFeePerGas: bigint;
1198
+ maxPriorityFeePerGas: bigint;
1199
+ isSystemTx?: undefined;
1200
+ mint?: undefined;
1201
+ sourceHash?: undefined;
1202
+ } | {
1203
+ blockHash: `0x${string}` | null;
1204
+ blockNumber: bigint | null;
1205
+ from: `0x${string}`;
1206
+ gas: bigint;
1207
+ hash: `0x${string}`;
1208
+ input: `0x${string}`;
1209
+ nonce: number;
1210
+ r: `0x${string}`;
1211
+ s: `0x${string}`;
1212
+ to: `0x${string}` | null;
1213
+ transactionIndex: number | null;
1214
+ typeHex: `0x${string}` | null;
1215
+ v: bigint;
1216
+ value: bigint;
1217
+ yParity: number;
1218
+ accessList: viem.AccessList;
1219
+ authorizationList: viem_experimental.SignedAuthorizationList<number>;
1220
+ blobVersionedHashes?: undefined;
1221
+ chainId: number;
1222
+ type: "eip7702";
1223
+ gasPrice?: undefined;
1224
+ maxFeePerBlobGas?: undefined;
1225
+ maxFeePerGas: bigint;
1226
+ maxPriorityFeePerGas: bigint;
1227
+ isSystemTx?: undefined;
1228
+ mint?: undefined;
1229
+ sourceHash?: undefined;
1230
+ };
1231
+ type: "transaction";
1232
+ };
1233
+ readonly transactionReceipt: {
1234
+ exclude: [] | undefined;
1235
+ format: (args: viem_op_stack.OpStackRpcTransactionReceipt) => {
1236
+ blobGasPrice?: bigint | undefined;
1237
+ blobGasUsed?: bigint | undefined;
1238
+ blockHash: `0x${string}`;
1239
+ blockNumber: bigint;
1240
+ contractAddress: `0x${string}` | null | undefined;
1241
+ cumulativeGasUsed: bigint;
1242
+ effectiveGasPrice: bigint;
1243
+ from: `0x${string}`;
1244
+ gasUsed: bigint;
1245
+ logs: viem.Log<bigint, number, false, undefined, undefined, undefined, undefined>[];
1246
+ logsBloom: `0x${string}`;
1247
+ root?: `0x${string}` | undefined;
1248
+ status: "success" | "reverted";
1249
+ to: `0x${string}` | null;
1250
+ transactionHash: `0x${string}`;
1251
+ transactionIndex: number;
1252
+ type: viem.TransactionType;
1253
+ l1GasPrice: bigint | null;
1254
+ l1GasUsed: bigint | null;
1255
+ l1Fee: bigint | null;
1256
+ l1FeeScalar: number | null;
1257
+ };
1258
+ type: "transactionReceipt";
1259
+ };
1260
+ };
1261
+ readonly serializers: {
1262
+ readonly transaction: typeof viem_op_stack.serializeTransaction;
1263
+ };
1264
+ };
1265
+
1266
+ export { type MUDChain, garnet, mudFoundry, pyrope, redstone, rhodolite };
package/dist/chains.js CHANGED
@@ -71,9 +71,50 @@ var rhodolite = {
71
71
  iconUrls: ["https://redstone.xyz/chain-icons/rhodolite.png"],
72
72
  indexerUrl: "https://indexer.mud.rhodolitechain.com"
73
73
  };
74
+
75
+ // src/chains/pyrope.ts
76
+ import { chainConfig as chainConfig2 } from "viem/op-stack";
77
+ var sourceId2 = 11155111;
78
+ var defaultRpcUrls2 = {
79
+ http: ["https://rpc.pyropechain.com"],
80
+ webSocket: ["wss://rpc.pyropechain.com"]
81
+ };
82
+ var pyrope = {
83
+ ...chainConfig2,
84
+ name: "Pyrope Testnet",
85
+ testnet: true,
86
+ id: 695569,
87
+ sourceId: sourceId2,
88
+ nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
89
+ rpcUrls: {
90
+ default: defaultRpcUrls2,
91
+ bundler: defaultRpcUrls2
92
+ },
93
+ contracts: {
94
+ ...chainConfig2.contracts,
95
+ l1StandardBridge: {
96
+ [sourceId2]: {
97
+ address: "0xC24932c31D9621aE9e792576152B7ef010cFC2F8"
98
+ }
99
+ }
100
+ },
101
+ blockExplorers: {
102
+ default: {
103
+ name: "Blockscout",
104
+ url: "https://explorer.pyropechain.com"
105
+ },
106
+ worldsExplorer: {
107
+ name: "MUD Worlds Explorer",
108
+ url: "https://explorer.mud.dev/pyrope/worlds"
109
+ }
110
+ },
111
+ iconUrls: ["https://lattice.xyz/brand/color/pyrope.svg"],
112
+ indexerUrl: "https://indexer.mud.pyropechain.com"
113
+ };
74
114
  export {
75
115
  garnet,
76
116
  mudFoundry,
117
+ pyrope,
77
118
  redstone,
78
119
  rhodolite
79
120
  };
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/chains/mudFoundry.ts","../src/chains/redstone.ts","../src/chains/garnet.ts","../src/chains/rhodolite.ts"],"sourcesContent":["import { foundry } from \"viem/chains\";\nimport { MUDChain } from \"./types\";\n\nexport const mudFoundry = {\n ...foundry,\n fees: {\n defaultPriorityFee: 0n,\n },\n} as const satisfies MUDChain;\n","import { redstone as redstoneConfig } from \"viem/chains\";\nimport type { MUDChain } from \"./types\";\n\nexport const redstone = {\n ...redstoneConfig,\n iconUrls: [\"https://redstone.xyz/chain-icons/redstone.png\"],\n indexerUrl: \"https://indexer.mud.redstonechain.com\",\n} as const satisfies MUDChain;\n","import { garnet as garnetConfig } from \"viem/chains\";\nimport type { MUDChain } from \"./types\";\n\nexport const garnet = {\n ...garnetConfig,\n rpcUrls: {\n ...garnetConfig.rpcUrls,\n bundler: garnetConfig.rpcUrls.default,\n },\n iconUrls: [\"https://redstone.xyz/chain-icons/garnet.png\"],\n indexerUrl: \"https://indexer.mud.garnetchain.com\",\n} as const satisfies MUDChain;\n","import { chainConfig } from \"viem/op-stack\";\nimport { MUDChain } from \"./types\";\nimport { Chain } from \"viem\";\n\nconst sourceId = 17000;\n\nconst defaultRpcUrls = {\n http: [\"https://rpc.rhodolitechain.com\"],\n webSocket: [\"wss://rpc.rhodolitechain.com\"],\n} as const satisfies Chain[\"rpcUrls\"][\"default\"];\n\nexport const rhodolite = {\n ...chainConfig,\n name: \"Rhodolite Devnet\",\n testnet: true,\n id: 17420,\n sourceId,\n nativeCurrency: { name: \"Ether\", symbol: \"ETH\", decimals: 18 },\n rpcUrls: {\n default: defaultRpcUrls,\n bundler: defaultRpcUrls,\n quarryPassIssuer: defaultRpcUrls,\n wiresaw: defaultRpcUrls,\n },\n contracts: {\n ...chainConfig.contracts,\n l1StandardBridge: {\n [sourceId]: {\n address: \"0x6487446e0B9FAEa90F6a9772A6448cFa780E30F9\",\n },\n },\n quarryPaymaster: {\n address: \"0x7ca1b85aca23fccf2fbac14c02b5e8a6432639b9\",\n },\n },\n blockExplorers: {\n default: {\n name: \"Blockscout\",\n url: \"https://explorer.rhodolitechain.com\",\n },\n worldsExplorer: {\n name: \"MUD Worlds Explorer\",\n url: \"https://explorer.mud.dev/rhodolite/worlds\",\n },\n },\n iconUrls: [\"https://redstone.xyz/chain-icons/rhodolite.png\"],\n indexerUrl: \"https://indexer.mud.rhodolitechain.com\",\n} as const satisfies MUDChain;\n"],"mappings":";AAAA,SAAS,eAAe;AAGjB,IAAM,aAAa;AAAA,EACxB,GAAG;AAAA,EACH,MAAM;AAAA,IACJ,oBAAoB;AAAA,EACtB;AACF;;;ACRA,SAAS,YAAY,sBAAsB;AAGpC,IAAM,WAAW;AAAA,EACtB,GAAG;AAAA,EACH,UAAU,CAAC,+CAA+C;AAAA,EAC1D,YAAY;AACd;;;ACPA,SAAS,UAAU,oBAAoB;AAGhC,IAAM,SAAS;AAAA,EACpB,GAAG;AAAA,EACH,SAAS;AAAA,IACP,GAAG,aAAa;AAAA,IAChB,SAAS,aAAa,QAAQ;AAAA,EAChC;AAAA,EACA,UAAU,CAAC,6CAA6C;AAAA,EACxD,YAAY;AACd;;;ACXA,SAAS,mBAAmB;AAI5B,IAAM,WAAW;AAEjB,IAAM,iBAAiB;AAAA,EACrB,MAAM,CAAC,gCAAgC;AAAA,EACvC,WAAW,CAAC,8BAA8B;AAC5C;AAEO,IAAM,YAAY;AAAA,EACvB,GAAG;AAAA,EACH,MAAM;AAAA,EACN,SAAS;AAAA,EACT,IAAI;AAAA,EACJ;AAAA,EACA,gBAAgB,EAAE,MAAM,SAAS,QAAQ,OAAO,UAAU,GAAG;AAAA,EAC7D,SAAS;AAAA,IACP,SAAS;AAAA,IACT,SAAS;AAAA,IACT,kBAAkB;AAAA,IAClB,SAAS;AAAA,EACX;AAAA,EACA,WAAW;AAAA,IACT,GAAG,YAAY;AAAA,IACf,kBAAkB;AAAA,MAChB,CAAC,QAAQ,GAAG;AAAA,QACV,SAAS;AAAA,MACX;AAAA,IACF;AAAA,IACA,iBAAiB;AAAA,MACf,SAAS;AAAA,IACX;AAAA,EACF;AAAA,EACA,gBAAgB;AAAA,IACd,SAAS;AAAA,MACP,MAAM;AAAA,MACN,KAAK;AAAA,IACP;AAAA,IACA,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,KAAK;AAAA,IACP;AAAA,EACF;AAAA,EACA,UAAU,CAAC,gDAAgD;AAAA,EAC3D,YAAY;AACd;","names":[]}
1
+ {"version":3,"sources":["../src/chains/mudFoundry.ts","../src/chains/redstone.ts","../src/chains/garnet.ts","../src/chains/rhodolite.ts","../src/chains/pyrope.ts"],"sourcesContent":["import { foundry } from \"viem/chains\";\nimport { MUDChain } from \"./types\";\n\nexport const mudFoundry = {\n ...foundry,\n fees: {\n defaultPriorityFee: 0n,\n },\n} as const satisfies MUDChain;\n","import { redstone as redstoneConfig } from \"viem/chains\";\nimport type { MUDChain } from \"./types\";\n\nexport const redstone = {\n ...redstoneConfig,\n iconUrls: [\"https://redstone.xyz/chain-icons/redstone.png\"],\n indexerUrl: \"https://indexer.mud.redstonechain.com\",\n} as const satisfies MUDChain;\n","import { garnet as garnetConfig } from \"viem/chains\";\nimport type { MUDChain } from \"./types\";\n\nexport const garnet = {\n ...garnetConfig,\n rpcUrls: {\n ...garnetConfig.rpcUrls,\n bundler: garnetConfig.rpcUrls.default,\n },\n iconUrls: [\"https://redstone.xyz/chain-icons/garnet.png\"],\n indexerUrl: \"https://indexer.mud.garnetchain.com\",\n} as const satisfies MUDChain;\n","import { chainConfig } from \"viem/op-stack\";\nimport { MUDChain } from \"./types\";\nimport { Chain } from \"viem\";\n\nconst sourceId = 17000;\n\nconst defaultRpcUrls = {\n http: [\"https://rpc.rhodolitechain.com\"],\n webSocket: [\"wss://rpc.rhodolitechain.com\"],\n} as const satisfies Chain[\"rpcUrls\"][\"default\"];\n\nexport const rhodolite = {\n ...chainConfig,\n name: \"Rhodolite Devnet\",\n testnet: true,\n id: 17420,\n sourceId,\n nativeCurrency: { name: \"Ether\", symbol: \"ETH\", decimals: 18 },\n rpcUrls: {\n default: defaultRpcUrls,\n bundler: defaultRpcUrls,\n quarryPassIssuer: defaultRpcUrls,\n wiresaw: defaultRpcUrls,\n },\n contracts: {\n ...chainConfig.contracts,\n l1StandardBridge: {\n [sourceId]: {\n address: \"0x6487446e0B9FAEa90F6a9772A6448cFa780E30F9\",\n },\n },\n quarryPaymaster: {\n address: \"0x7ca1b85aca23fccf2fbac14c02b5e8a6432639b9\",\n },\n },\n blockExplorers: {\n default: {\n name: \"Blockscout\",\n url: \"https://explorer.rhodolitechain.com\",\n },\n worldsExplorer: {\n name: \"MUD Worlds Explorer\",\n url: \"https://explorer.mud.dev/rhodolite/worlds\",\n },\n },\n iconUrls: [\"https://redstone.xyz/chain-icons/rhodolite.png\"],\n indexerUrl: \"https://indexer.mud.rhodolitechain.com\",\n} as const satisfies MUDChain;\n","import { chainConfig } from \"viem/op-stack\";\nimport { MUDChain } from \"./types\";\nimport { Chain } from \"viem\";\n\nconst sourceId = 11155111;\n\nconst defaultRpcUrls = {\n http: [\"https://rpc.pyropechain.com\"],\n webSocket: [\"wss://rpc.pyropechain.com\"],\n} as const satisfies Chain[\"rpcUrls\"][\"default\"];\n\nexport const pyrope = {\n ...chainConfig,\n name: \"Pyrope Testnet\",\n testnet: true,\n id: 695569,\n sourceId,\n nativeCurrency: { name: \"Ether\", symbol: \"ETH\", decimals: 18 },\n rpcUrls: {\n default: defaultRpcUrls,\n bundler: defaultRpcUrls,\n },\n contracts: {\n ...chainConfig.contracts,\n l1StandardBridge: {\n [sourceId]: {\n address: \"0xC24932c31D9621aE9e792576152B7ef010cFC2F8\",\n },\n },\n },\n blockExplorers: {\n default: {\n name: \"Blockscout\",\n url: \"https://explorer.pyropechain.com\",\n },\n worldsExplorer: {\n name: \"MUD Worlds Explorer\",\n url: \"https://explorer.mud.dev/pyrope/worlds\",\n },\n },\n iconUrls: [\"https://lattice.xyz/brand/color/pyrope.svg\"],\n indexerUrl: \"https://indexer.mud.pyropechain.com\",\n} as const satisfies MUDChain;\n"],"mappings":";AAAA,SAAS,eAAe;AAGjB,IAAM,aAAa;AAAA,EACxB,GAAG;AAAA,EACH,MAAM;AAAA,IACJ,oBAAoB;AAAA,EACtB;AACF;;;ACRA,SAAS,YAAY,sBAAsB;AAGpC,IAAM,WAAW;AAAA,EACtB,GAAG;AAAA,EACH,UAAU,CAAC,+CAA+C;AAAA,EAC1D,YAAY;AACd;;;ACPA,SAAS,UAAU,oBAAoB;AAGhC,IAAM,SAAS;AAAA,EACpB,GAAG;AAAA,EACH,SAAS;AAAA,IACP,GAAG,aAAa;AAAA,IAChB,SAAS,aAAa,QAAQ;AAAA,EAChC;AAAA,EACA,UAAU,CAAC,6CAA6C;AAAA,EACxD,YAAY;AACd;;;ACXA,SAAS,mBAAmB;AAI5B,IAAM,WAAW;AAEjB,IAAM,iBAAiB;AAAA,EACrB,MAAM,CAAC,gCAAgC;AAAA,EACvC,WAAW,CAAC,8BAA8B;AAC5C;AAEO,IAAM,YAAY;AAAA,EACvB,GAAG;AAAA,EACH,MAAM;AAAA,EACN,SAAS;AAAA,EACT,IAAI;AAAA,EACJ;AAAA,EACA,gBAAgB,EAAE,MAAM,SAAS,QAAQ,OAAO,UAAU,GAAG;AAAA,EAC7D,SAAS;AAAA,IACP,SAAS;AAAA,IACT,SAAS;AAAA,IACT,kBAAkB;AAAA,IAClB,SAAS;AAAA,EACX;AAAA,EACA,WAAW;AAAA,IACT,GAAG,YAAY;AAAA,IACf,kBAAkB;AAAA,MAChB,CAAC,QAAQ,GAAG;AAAA,QACV,SAAS;AAAA,MACX;AAAA,IACF;AAAA,IACA,iBAAiB;AAAA,MACf,SAAS;AAAA,IACX;AAAA,EACF;AAAA,EACA,gBAAgB;AAAA,IACd,SAAS;AAAA,MACP,MAAM;AAAA,MACN,KAAK;AAAA,IACP;AAAA,IACA,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,KAAK;AAAA,IACP;AAAA,EACF;AAAA,EACA,UAAU,CAAC,gDAAgD;AAAA,EAC3D,YAAY;AACd;;;AC/CA,SAAS,eAAAA,oBAAmB;AAI5B,IAAMC,YAAW;AAEjB,IAAMC,kBAAiB;AAAA,EACrB,MAAM,CAAC,6BAA6B;AAAA,EACpC,WAAW,CAAC,2BAA2B;AACzC;AAEO,IAAM,SAAS;AAAA,EACpB,GAAGF;AAAA,EACH,MAAM;AAAA,EACN,SAAS;AAAA,EACT,IAAI;AAAA,EACJ,UAAAC;AAAA,EACA,gBAAgB,EAAE,MAAM,SAAS,QAAQ,OAAO,UAAU,GAAG;AAAA,EAC7D,SAAS;AAAA,IACP,SAASC;AAAA,IACT,SAASA;AAAA,EACX;AAAA,EACA,WAAW;AAAA,IACT,GAAGF,aAAY;AAAA,IACf,kBAAkB;AAAA,MAChB,CAACC,SAAQ,GAAG;AAAA,QACV,SAAS;AAAA,MACX;AAAA,IACF;AAAA,EACF;AAAA,EACA,gBAAgB;AAAA,IACd,SAAS;AAAA,MACP,MAAM;AAAA,MACN,KAAK;AAAA,IACP;AAAA,IACA,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,KAAK;AAAA,IACP;AAAA,EACF;AAAA,EACA,UAAU,CAAC,4CAA4C;AAAA,EACvD,YAAY;AACd;","names":["chainConfig","sourceId","defaultRpcUrls"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@latticexyz/common",
3
- "version": "2.2.21-f1e008f2d2a7ba2369a07f9807a7ee0cd1b3b20c",
3
+ "version": "2.2.21",
4
4
  "description": "Common low level logic shared between packages",
5
5
  "repository": {
6
6
  "type": "git",
@@ -69,7 +69,7 @@
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.21-f1e008f2d2a7ba2369a07f9807a7ee0cd1b3b20c"
72
+ "@latticexyz/schema-type": "2.2.21"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@types/debug": "^4.1.7",