@latticexyz/common 2.2.12-entrykit-a58cc135b24c644a67242a7d39f3d44d83b2b955 → 2.2.12-entrykit-bc150f8e6c877fc2c6381f761b6c629c10f52965
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 +2 -29
- package/dist/chains.js +1 -1
- package/dist/chains.js.map +1 -1
- package/package.json +2 -2
package/dist/chains.d.ts
CHANGED
|
@@ -55,34 +55,6 @@ declare const mudFoundry: {
|
|
|
55
55
|
readonly serializers?: viem.ChainSerializers<undefined, viem.TransactionSerializable<bigint, number>> | undefined;
|
|
56
56
|
};
|
|
57
57
|
|
|
58
|
-
/** @deprecated This chain is deprecated and will be going offline soon. Please switch to Garnet! */
|
|
59
|
-
declare const latticeTestnet: {
|
|
60
|
-
readonly name: "Lattice Testnet";
|
|
61
|
-
readonly id: 4242;
|
|
62
|
-
readonly nativeCurrency: {
|
|
63
|
-
readonly decimals: 18;
|
|
64
|
-
readonly name: "Ether";
|
|
65
|
-
readonly symbol: "ETH";
|
|
66
|
-
};
|
|
67
|
-
readonly rpcUrls: {
|
|
68
|
-
readonly default: {
|
|
69
|
-
readonly http: readonly ["https://follower.testnet-chain.linfra.xyz"];
|
|
70
|
-
readonly webSocket: readonly ["wss://follower.testnet-chain.linfra.xyz"];
|
|
71
|
-
};
|
|
72
|
-
readonly public: {
|
|
73
|
-
readonly http: readonly ["https://follower.testnet-chain.linfra.xyz"];
|
|
74
|
-
readonly webSocket: readonly ["wss://follower.testnet-chain.linfra.xyz"];
|
|
75
|
-
};
|
|
76
|
-
};
|
|
77
|
-
readonly blockExplorers: {
|
|
78
|
-
readonly default: {
|
|
79
|
-
readonly name: "Otterscan";
|
|
80
|
-
readonly url: "https://explorer.testnet-chain.linfra.xyz";
|
|
81
|
-
};
|
|
82
|
-
};
|
|
83
|
-
readonly faucetUrl: "https://faucet.testnet-mud-services.linfra.xyz";
|
|
84
|
-
};
|
|
85
|
-
|
|
86
58
|
declare const redstone: {
|
|
87
59
|
readonly iconUrls: readonly ["https://redstone.xyz/chain-icons/redstone.png"];
|
|
88
60
|
readonly indexerUrl: "https://indexer.mud.redstonechain.com";
|
|
@@ -705,6 +677,7 @@ declare const rhodolite: {
|
|
|
705
677
|
};
|
|
706
678
|
};
|
|
707
679
|
readonly iconUrls: readonly ["https://redstone.xyz/chain-icons/rhodolite.png"];
|
|
680
|
+
readonly indexerUrl: "https://indexer.mud.rhodolitechain.com";
|
|
708
681
|
readonly contracts: {
|
|
709
682
|
readonly gasPriceOracle: {
|
|
710
683
|
readonly address: "0x420000000000000000000000000000000000000F";
|
|
@@ -961,4 +934,4 @@ declare const rhodolite: {
|
|
|
961
934
|
};
|
|
962
935
|
};
|
|
963
936
|
|
|
964
|
-
export { MUDChain, garnet,
|
|
937
|
+
export { MUDChain, garnet, mudFoundry, redstone, rhodolite };
|
package/dist/chains.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{foundry as t}from"viem/chains";var e={...t,fees:{defaultPriorityFee:0n}};
|
|
1
|
+
import{foundry as t}from"viem/chains";var e={...t,fees:{defaultPriorityFee:0n}};import{redstone as o}from"viem/chains";var r={...o,iconUrls:["https://redstone.xyz/chain-icons/redstone.png"],indexerUrl:"https://indexer.mud.redstonechain.com"};import{garnet as n}from"viem/chains";var i={...n,iconUrls:["https://redstone.xyz/chain-icons/garnet.png"],indexerUrl:"https://indexer.mud.garnetchain.com"};import{chainConfig as s}from"viem/op-stack";var a=17001,p={...s,name:"Rhodolite Devnet",testnet:!0,id:17420,sourceId:a,nativeCurrency:{name:"Ether",symbol:"ETH",decimals:18},rpcUrls:{default:{http:["https://rpc.rhodolitechain.com"]}},iconUrls:["https://redstone.xyz/chain-icons/rhodolite.png"],indexerUrl:"https://indexer.mud.rhodolitechain.com"};export{i as garnet,e as mudFoundry,r as redstone,p as rhodolite};
|
|
2
2
|
//# sourceMappingURL=chains.js.map
|
package/dist/chains.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/chains/mudFoundry.ts","../src/chains/
|
|
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 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\";\n\nconst sourceId = 17001;\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: {\n http: [\"https://rpc.rhodolitechain.com\"],\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,OAAS,WAAAA,MAAe,cAGjB,IAAMC,EAAa,CACxB,GAAGD,EACH,KAAM,CACJ,mBAAoB,EACtB,CACF,ECRA,OAAS,YAAYE,MAAsB,cAGpC,IAAMC,EAAW,CACtB,GAAGD,EACH,SAAU,CAAC,+CAA+C,EAC1D,WAAY,uCACd,ECPA,OAAS,UAAUE,MAAoB,cAGhC,IAAMC,EAAS,CACpB,GAAGD,EACH,SAAU,CAAC,6CAA6C,EACxD,WAAY,qCACd,ECPA,OAAS,eAAAE,MAAmB,gBAG5B,IAAMC,EAAW,MAEJC,EAAY,CACvB,GAAGF,EACH,KAAM,mBACN,QAAS,GACT,GAAI,MACJ,SAAAC,EACA,eAAgB,CAAE,KAAM,QAAS,OAAQ,MAAO,SAAU,EAAG,EAC7D,QAAS,CACP,QAAS,CACP,KAAM,CAAC,gCAAgC,CACzC,CACF,EACA,SAAU,CAAC,gDAAgD,EAC3D,WAAY,wCACd","names":["foundry","mudFoundry","redstoneConfig","redstone","garnetConfig","garnet","chainConfig","sourceId","rhodolite"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@latticexyz/common",
|
|
3
|
-
"version": "2.2.12-entrykit-
|
|
3
|
+
"version": "2.2.12-entrykit-bc150f8e6c877fc2c6381f761b6c629c10f52965",
|
|
4
4
|
"description": "Common low level logic shared between packages",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"prettier": "3.2.5",
|
|
67
67
|
"prettier-plugin-solidity": "1.3.1",
|
|
68
68
|
"viem": "2.21.19",
|
|
69
|
-
"@latticexyz/schema-type": "2.2.12-entrykit-
|
|
69
|
+
"@latticexyz/schema-type": "2.2.12-entrykit-bc150f8e6c877fc2c6381f761b6c629c10f52965"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@types/debug": "^4.1.7",
|