@chainflip/rpc 2.1.0-beta.1 → 2.1.1-beta.0
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/_virtual/{rolldown_runtime.mjs → _rolldown/runtime.cjs} +5 -4
- package/dist/_virtual/{rolldown_runtime.cjs → _rolldown/runtime.mjs} +4 -5
- package/dist/common.cjs +1 -0
- package/dist/common.d.cts +383 -881
- package/dist/common.d.mts +383 -881
- package/dist/constants.cjs +3 -2
- package/dist/constants.mjs +1 -1
- package/dist/index.cjs +1 -0
- package/dist/parsers.cjs +1 -4
- package/dist/parsers.d.cts +768 -1452
- package/dist/parsers.d.mts +768 -1452
- package/dist/parsers.mjs +0 -4
- package/package.json +3 -3
package/dist/constants.cjs
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
2
|
+
const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
|
|
2
3
|
|
|
3
4
|
//#region src/constants.ts
|
|
4
|
-
var constants_exports = /* @__PURE__ */
|
|
5
|
+
var constants_exports = /* @__PURE__ */ require_runtime.__exportAll({ PUBLIC_RPC_ENDPOINTS: () => PUBLIC_RPC_ENDPOINTS });
|
|
5
6
|
const PUBLIC_RPC_ENDPOINTS = {
|
|
6
7
|
mainnet: "https://rpc.mainnet.chainflip.io",
|
|
7
8
|
perseverance: "https://archive.perseverance.chainflip.io",
|
package/dist/constants.mjs
CHANGED
package/dist/index.cjs
CHANGED
package/dist/parsers.cjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
1
2
|
let zod = require("zod");
|
|
2
3
|
let _chainflip_utils_bytes = require("@chainflip/utils/bytes");
|
|
3
4
|
let _chainflip_utils_chainflip = require("@chainflip/utils/chainflip");
|
|
@@ -75,10 +76,6 @@ const rpcAssetSchema = zod.z.union([
|
|
|
75
76
|
chain: zod.z.literal("Bitcoin"),
|
|
76
77
|
asset: zod.z.literal("BTC")
|
|
77
78
|
}),
|
|
78
|
-
zod.z.object({
|
|
79
|
-
chain: zod.z.literal("Polkadot"),
|
|
80
|
-
asset: zod.z.literal("DOT")
|
|
81
|
-
}),
|
|
82
79
|
zod.z.object({
|
|
83
80
|
chain: zod.z.literal("Ethereum"),
|
|
84
81
|
asset: zod.z.literal("FLIP")
|