@chainflip/rpc 2.0.6 → 2.0.7
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/common.d.cts +563 -560
- package/dist/common.d.ts +563 -560
- package/dist/parsers.cjs +3 -1
- package/dist/parsers.d.cts +687 -684
- package/dist/parsers.d.ts +687 -684
- package/dist/parsers.mjs +3 -1
- package/package.json +3 -3
package/dist/parsers.mjs
CHANGED
|
@@ -501,7 +501,9 @@ var cfOraclePrices = z.array(
|
|
|
501
501
|
updated_at_oracle_timestamp: z.number(),
|
|
502
502
|
updated_at_statechain_block: z.number(),
|
|
503
503
|
base_asset: z.enum(priceAssets),
|
|
504
|
-
quote_asset: z.enum(priceAssets)
|
|
504
|
+
quote_asset: z.enum(priceAssets),
|
|
505
|
+
price_status: z.enum(["UpToDate", "Stale", "MaybeStale"]).optional()
|
|
506
|
+
// TODO remove `optional` after backspin updates
|
|
505
507
|
})
|
|
506
508
|
);
|
|
507
509
|
var broadcastPalletSafeModeStatuses = z.object({
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chainflip/rpc",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@chainflip/utils": "0.11.0",
|
|
7
7
|
"zod": "^3.25.75"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@types/node": "^
|
|
10
|
+
"@types/node": "^25.0.8",
|
|
11
11
|
"@types/ws": "^8.18.1",
|
|
12
|
-
"ws": "^8.
|
|
12
|
+
"ws": "^8.19.0"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"dist",
|