@chainflip/rpc 1.11.0-beta.10 → 1.11.0-beta.12
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 +63 -4
- package/dist/common.d.ts +63 -4
- package/dist/parsers.cjs +10 -1
- package/dist/parsers.d.cts +103 -3
- package/dist/parsers.d.ts +103 -3
- package/dist/parsers.mjs +10 -1
- package/package.json +1 -1
package/dist/parsers.d.ts
CHANGED
|
@@ -16945,6 +16945,7 @@ declare const requestSwapParameterEncoding: z.ZodDiscriminatedUnion<"chain", [z.
|
|
|
16945
16945
|
}[];
|
|
16946
16946
|
}>]>;
|
|
16947
16947
|
declare const accountInfoCommon: {
|
|
16948
|
+
readonly vanity_name: z.ZodOptional<z.ZodString>;
|
|
16948
16949
|
readonly flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
16949
16950
|
readonly asset_balances: z.ZodObject<{
|
|
16950
16951
|
Bitcoin: z.ZodObject<{
|
|
@@ -17270,6 +17271,7 @@ declare const oldUnregistered: z.ZodObject<{
|
|
|
17270
17271
|
};
|
|
17271
17272
|
}>;
|
|
17272
17273
|
declare const unregistered: z.ZodObject<{
|
|
17274
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
17273
17275
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17274
17276
|
asset_balances: z.ZodObject<{
|
|
17275
17277
|
Bitcoin: z.ZodObject<{
|
|
@@ -17445,6 +17447,7 @@ declare const unregistered: z.ZodObject<{
|
|
|
17445
17447
|
};
|
|
17446
17448
|
bond: bigint;
|
|
17447
17449
|
estimated_redeemable_balance: bigint;
|
|
17450
|
+
vanity_name?: string | undefined;
|
|
17448
17451
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
17449
17452
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
17450
17453
|
current_delegation_status?: {
|
|
@@ -17487,6 +17490,7 @@ declare const unregistered: z.ZodObject<{
|
|
|
17487
17490
|
};
|
|
17488
17491
|
bond: string | number;
|
|
17489
17492
|
estimated_redeemable_balance: string | number;
|
|
17493
|
+
vanity_name?: string | undefined;
|
|
17490
17494
|
bound_redeem_address?: string | undefined;
|
|
17491
17495
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
17492
17496
|
current_delegation_status?: {
|
|
@@ -17840,6 +17844,7 @@ declare const broker: z.ZodObject<{
|
|
|
17840
17844
|
short_id: number;
|
|
17841
17845
|
withdrawal_address: string;
|
|
17842
17846
|
}>, "many">>>;
|
|
17847
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
17843
17848
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
17844
17849
|
asset_balances: z.ZodObject<{
|
|
17845
17850
|
Bitcoin: z.ZodObject<{
|
|
@@ -18047,6 +18052,7 @@ declare const broker: z.ZodObject<{
|
|
|
18047
18052
|
short_id: number;
|
|
18048
18053
|
withdrawal_address: `0x${string}`;
|
|
18049
18054
|
}[];
|
|
18055
|
+
vanity_name?: string | undefined;
|
|
18050
18056
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
18051
18057
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
18052
18058
|
current_delegation_status?: {
|
|
@@ -18117,6 +18123,7 @@ declare const broker: z.ZodObject<{
|
|
|
18117
18123
|
DOT: string | number;
|
|
18118
18124
|
};
|
|
18119
18125
|
};
|
|
18126
|
+
vanity_name?: string | undefined;
|
|
18120
18127
|
bound_redeem_address?: string | undefined;
|
|
18121
18128
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
18122
18129
|
current_delegation_status?: {
|
|
@@ -18165,6 +18172,7 @@ declare const operator: z.ZodObject<{
|
|
|
18165
18172
|
validators: Record<string, string | number>;
|
|
18166
18173
|
delegation_fee_bps: number;
|
|
18167
18174
|
}>>;
|
|
18175
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
18168
18176
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18169
18177
|
asset_balances: z.ZodObject<{
|
|
18170
18178
|
Bitcoin: z.ZodObject<{
|
|
@@ -18348,6 +18356,7 @@ declare const operator: z.ZodObject<{
|
|
|
18348
18356
|
};
|
|
18349
18357
|
allowed: `cF${string}`[];
|
|
18350
18358
|
blocked: `cF${string}`[];
|
|
18359
|
+
vanity_name?: string | undefined;
|
|
18351
18360
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
18352
18361
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
18353
18362
|
current_delegation_status?: {
|
|
@@ -18402,6 +18411,7 @@ declare const operator: z.ZodObject<{
|
|
|
18402
18411
|
fee_bps: number;
|
|
18403
18412
|
delegation_acceptance: "Allow" | "Deny";
|
|
18404
18413
|
};
|
|
18414
|
+
vanity_name?: string | undefined;
|
|
18405
18415
|
bound_redeem_address?: string | undefined;
|
|
18406
18416
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
18407
18417
|
current_delegation_status?: {
|
|
@@ -20487,6 +20497,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20487
20497
|
}[];
|
|
20488
20498
|
};
|
|
20489
20499
|
}>;
|
|
20500
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
20490
20501
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
20491
20502
|
asset_balances: z.ZodObject<{
|
|
20492
20503
|
Bitcoin: z.ZodObject<{
|
|
@@ -20802,6 +20813,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20802
20813
|
}[];
|
|
20803
20814
|
};
|
|
20804
20815
|
};
|
|
20816
|
+
vanity_name?: string | undefined;
|
|
20805
20817
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
20806
20818
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
20807
20819
|
current_delegation_status?: {
|
|
@@ -20984,6 +20996,7 @@ declare const liquidityProvider: z.ZodObject<{
|
|
|
20984
20996
|
}[];
|
|
20985
20997
|
};
|
|
20986
20998
|
};
|
|
20999
|
+
vanity_name?: string | undefined;
|
|
20987
21000
|
bound_redeem_address?: string | undefined;
|
|
20988
21001
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
20989
21002
|
current_delegation_status?: {
|
|
@@ -21058,6 +21071,7 @@ declare const validator: z.ZodObject<{
|
|
|
21058
21071
|
is_bidding: z.ZodBoolean;
|
|
21059
21072
|
apy_bp: z.ZodNullable<z.ZodNumber>;
|
|
21060
21073
|
operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
|
|
21074
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
21061
21075
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
21062
21076
|
asset_balances: z.ZodObject<{
|
|
21063
21077
|
Bitcoin: z.ZodObject<{
|
|
@@ -21243,6 +21257,7 @@ declare const validator: z.ZodObject<{
|
|
|
21243
21257
|
is_bidding: boolean;
|
|
21244
21258
|
apy_bp: number | null;
|
|
21245
21259
|
operator?: `cF${string}` | undefined;
|
|
21260
|
+
vanity_name?: string | undefined;
|
|
21246
21261
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
21247
21262
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
21248
21263
|
current_delegation_status?: {
|
|
@@ -21295,6 +21310,7 @@ declare const validator: z.ZodObject<{
|
|
|
21295
21310
|
is_bidding: boolean;
|
|
21296
21311
|
apy_bp: number | null;
|
|
21297
21312
|
operator?: string | undefined;
|
|
21313
|
+
vanity_name?: string | undefined;
|
|
21298
21314
|
bound_redeem_address?: string | undefined;
|
|
21299
21315
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
21300
21316
|
current_delegation_status?: {
|
|
@@ -21307,6 +21323,7 @@ declare const validator: z.ZodObject<{
|
|
|
21307
21323
|
} | undefined;
|
|
21308
21324
|
}>;
|
|
21309
21325
|
declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
21326
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
21310
21327
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
21311
21328
|
asset_balances: z.ZodObject<{
|
|
21312
21329
|
Bitcoin: z.ZodObject<{
|
|
@@ -21482,6 +21499,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
21482
21499
|
};
|
|
21483
21500
|
bond: bigint;
|
|
21484
21501
|
estimated_redeemable_balance: bigint;
|
|
21502
|
+
vanity_name?: string | undefined;
|
|
21485
21503
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
21486
21504
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
21487
21505
|
current_delegation_status?: {
|
|
@@ -21524,6 +21542,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
21524
21542
|
};
|
|
21525
21543
|
bond: string | number;
|
|
21526
21544
|
estimated_redeemable_balance: string | number;
|
|
21545
|
+
vanity_name?: string | undefined;
|
|
21527
21546
|
bound_redeem_address?: string | undefined;
|
|
21528
21547
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
21529
21548
|
current_delegation_status?: {
|
|
@@ -21666,6 +21685,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
21666
21685
|
short_id: number;
|
|
21667
21686
|
withdrawal_address: string;
|
|
21668
21687
|
}>, "many">>>;
|
|
21688
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
21669
21689
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
21670
21690
|
asset_balances: z.ZodObject<{
|
|
21671
21691
|
Bitcoin: z.ZodObject<{
|
|
@@ -21873,6 +21893,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
21873
21893
|
short_id: number;
|
|
21874
21894
|
withdrawal_address: `0x${string}`;
|
|
21875
21895
|
}[];
|
|
21896
|
+
vanity_name?: string | undefined;
|
|
21876
21897
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
21877
21898
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
21878
21899
|
current_delegation_status?: {
|
|
@@ -21943,6 +21964,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
21943
21964
|
DOT: string | number;
|
|
21944
21965
|
};
|
|
21945
21966
|
};
|
|
21967
|
+
vanity_name?: string | undefined;
|
|
21946
21968
|
bound_redeem_address?: string | undefined;
|
|
21947
21969
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
21948
21970
|
current_delegation_status?: {
|
|
@@ -21990,6 +22012,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
21990
22012
|
validators: Record<string, string | number>;
|
|
21991
22013
|
delegation_fee_bps: number;
|
|
21992
22014
|
}>>;
|
|
22015
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
21993
22016
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
21994
22017
|
asset_balances: z.ZodObject<{
|
|
21995
22018
|
Bitcoin: z.ZodObject<{
|
|
@@ -22173,6 +22196,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
22173
22196
|
};
|
|
22174
22197
|
allowed: `cF${string}`[];
|
|
22175
22198
|
blocked: `cF${string}`[];
|
|
22199
|
+
vanity_name?: string | undefined;
|
|
22176
22200
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
22177
22201
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
22178
22202
|
current_delegation_status?: {
|
|
@@ -22227,6 +22251,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
22227
22251
|
fee_bps: number;
|
|
22228
22252
|
delegation_acceptance: "Allow" | "Deny";
|
|
22229
22253
|
};
|
|
22254
|
+
vanity_name?: string | undefined;
|
|
22230
22255
|
bound_redeem_address?: string | undefined;
|
|
22231
22256
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
22232
22257
|
current_delegation_status?: {
|
|
@@ -23048,6 +23073,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23048
23073
|
}[];
|
|
23049
23074
|
};
|
|
23050
23075
|
}>;
|
|
23076
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
23051
23077
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
23052
23078
|
asset_balances: z.ZodObject<{
|
|
23053
23079
|
Bitcoin: z.ZodObject<{
|
|
@@ -23363,6 +23389,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23363
23389
|
}[];
|
|
23364
23390
|
};
|
|
23365
23391
|
};
|
|
23392
|
+
vanity_name?: string | undefined;
|
|
23366
23393
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
23367
23394
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
23368
23395
|
current_delegation_status?: {
|
|
@@ -23545,6 +23572,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23545
23572
|
}[];
|
|
23546
23573
|
};
|
|
23547
23574
|
};
|
|
23575
|
+
vanity_name?: string | undefined;
|
|
23548
23576
|
bound_redeem_address?: string | undefined;
|
|
23549
23577
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
23550
23578
|
current_delegation_status?: {
|
|
@@ -23566,6 +23594,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23566
23594
|
is_bidding: z.ZodBoolean;
|
|
23567
23595
|
apy_bp: z.ZodNullable<z.ZodNumber>;
|
|
23568
23596
|
operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
|
|
23597
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
23569
23598
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
23570
23599
|
asset_balances: z.ZodObject<{
|
|
23571
23600
|
Bitcoin: z.ZodObject<{
|
|
@@ -23751,6 +23780,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23751
23780
|
is_bidding: boolean;
|
|
23752
23781
|
apy_bp: number | null;
|
|
23753
23782
|
operator?: `cF${string}` | undefined;
|
|
23783
|
+
vanity_name?: string | undefined;
|
|
23754
23784
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
23755
23785
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
23756
23786
|
current_delegation_status?: {
|
|
@@ -23803,6 +23833,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23803
23833
|
is_bidding: boolean;
|
|
23804
23834
|
apy_bp: number | null;
|
|
23805
23835
|
operator?: string | undefined;
|
|
23836
|
+
vanity_name?: string | undefined;
|
|
23806
23837
|
bound_redeem_address?: string | undefined;
|
|
23807
23838
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
23808
23839
|
current_delegation_status?: {
|
|
@@ -23845,6 +23876,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23845
23876
|
};
|
|
23846
23877
|
bond: bigint;
|
|
23847
23878
|
estimated_redeemable_balance: bigint;
|
|
23879
|
+
vanity_name?: string | undefined;
|
|
23848
23880
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
23849
23881
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
23850
23882
|
current_delegation_status?: {
|
|
@@ -23919,6 +23951,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23919
23951
|
short_id: number;
|
|
23920
23952
|
withdrawal_address: `0x${string}`;
|
|
23921
23953
|
}[];
|
|
23954
|
+
vanity_name?: string | undefined;
|
|
23922
23955
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
23923
23956
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
23924
23957
|
current_delegation_status?: {
|
|
@@ -23972,6 +24005,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
23972
24005
|
is_bidding: boolean;
|
|
23973
24006
|
apy_bp: number | null;
|
|
23974
24007
|
operator?: `cF${string}` | undefined;
|
|
24008
|
+
vanity_name?: string | undefined;
|
|
23975
24009
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
23976
24010
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
23977
24011
|
current_delegation_status?: {
|
|
@@ -24022,6 +24056,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
24022
24056
|
estimated_redeemable_balance: bigint;
|
|
24023
24057
|
allowed: `cF${string}`[];
|
|
24024
24058
|
blocked: `cF${string}`[];
|
|
24059
|
+
vanity_name?: string | undefined;
|
|
24025
24060
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
24026
24061
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
24027
24062
|
current_delegation_status?: {
|
|
@@ -24237,6 +24272,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
24237
24272
|
}[];
|
|
24238
24273
|
};
|
|
24239
24274
|
};
|
|
24275
|
+
vanity_name?: string | undefined;
|
|
24240
24276
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
24241
24277
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
24242
24278
|
current_delegation_status?: {
|
|
@@ -24279,6 +24315,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
24279
24315
|
};
|
|
24280
24316
|
bond: string | number;
|
|
24281
24317
|
estimated_redeemable_balance: string | number;
|
|
24318
|
+
vanity_name?: string | undefined;
|
|
24282
24319
|
bound_redeem_address?: string | undefined;
|
|
24283
24320
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
24284
24321
|
current_delegation_status?: {
|
|
@@ -24348,6 +24385,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
24348
24385
|
DOT: string | number;
|
|
24349
24386
|
};
|
|
24350
24387
|
};
|
|
24388
|
+
vanity_name?: string | undefined;
|
|
24351
24389
|
bound_redeem_address?: string | undefined;
|
|
24352
24390
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
24353
24391
|
current_delegation_status?: {
|
|
@@ -24402,6 +24440,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
24402
24440
|
fee_bps: number;
|
|
24403
24441
|
delegation_acceptance: "Allow" | "Deny";
|
|
24404
24442
|
};
|
|
24443
|
+
vanity_name?: string | undefined;
|
|
24405
24444
|
bound_redeem_address?: string | undefined;
|
|
24406
24445
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
24407
24446
|
current_delegation_status?: {
|
|
@@ -24592,6 +24631,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
24592
24631
|
}[];
|
|
24593
24632
|
};
|
|
24594
24633
|
};
|
|
24634
|
+
vanity_name?: string | undefined;
|
|
24595
24635
|
bound_redeem_address?: string | undefined;
|
|
24596
24636
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
24597
24637
|
current_delegation_status?: {
|
|
@@ -24644,6 +24684,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
|
|
|
24644
24684
|
is_bidding: boolean;
|
|
24645
24685
|
apy_bp: number | null;
|
|
24646
24686
|
operator?: string | undefined;
|
|
24687
|
+
vanity_name?: string | undefined;
|
|
24647
24688
|
bound_redeem_address?: string | undefined;
|
|
24648
24689
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
24649
24690
|
current_delegation_status?: {
|
|
@@ -26359,6 +26400,7 @@ declare const oldCfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
|
26359
26400
|
operator?: string | undefined;
|
|
26360
26401
|
}>]>;
|
|
26361
26402
|
declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
26403
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
26362
26404
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
26363
26405
|
asset_balances: z.ZodObject<{
|
|
26364
26406
|
Bitcoin: z.ZodObject<{
|
|
@@ -26534,6 +26576,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
26534
26576
|
};
|
|
26535
26577
|
bond: bigint;
|
|
26536
26578
|
estimated_redeemable_balance: bigint;
|
|
26579
|
+
vanity_name?: string | undefined;
|
|
26537
26580
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
26538
26581
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
26539
26582
|
current_delegation_status?: {
|
|
@@ -26576,6 +26619,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
26576
26619
|
};
|
|
26577
26620
|
bond: string | number;
|
|
26578
26621
|
estimated_redeemable_balance: string | number;
|
|
26622
|
+
vanity_name?: string | undefined;
|
|
26579
26623
|
bound_redeem_address?: string | undefined;
|
|
26580
26624
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
26581
26625
|
current_delegation_status?: {
|
|
@@ -26718,6 +26762,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
26718
26762
|
short_id: number;
|
|
26719
26763
|
withdrawal_address: string;
|
|
26720
26764
|
}>, "many">>>;
|
|
26765
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
26721
26766
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
26722
26767
|
asset_balances: z.ZodObject<{
|
|
26723
26768
|
Bitcoin: z.ZodObject<{
|
|
@@ -26925,6 +26970,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
26925
26970
|
short_id: number;
|
|
26926
26971
|
withdrawal_address: `0x${string}`;
|
|
26927
26972
|
}[];
|
|
26973
|
+
vanity_name?: string | undefined;
|
|
26928
26974
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
26929
26975
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
26930
26976
|
current_delegation_status?: {
|
|
@@ -26995,6 +27041,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
26995
27041
|
DOT: string | number;
|
|
26996
27042
|
};
|
|
26997
27043
|
};
|
|
27044
|
+
vanity_name?: string | undefined;
|
|
26998
27045
|
bound_redeem_address?: string | undefined;
|
|
26999
27046
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
27000
27047
|
current_delegation_status?: {
|
|
@@ -27042,6 +27089,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
27042
27089
|
validators: Record<string, string | number>;
|
|
27043
27090
|
delegation_fee_bps: number;
|
|
27044
27091
|
}>>;
|
|
27092
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
27045
27093
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
27046
27094
|
asset_balances: z.ZodObject<{
|
|
27047
27095
|
Bitcoin: z.ZodObject<{
|
|
@@ -27225,6 +27273,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
27225
27273
|
};
|
|
27226
27274
|
allowed: `cF${string}`[];
|
|
27227
27275
|
blocked: `cF${string}`[];
|
|
27276
|
+
vanity_name?: string | undefined;
|
|
27228
27277
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
27229
27278
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
27230
27279
|
current_delegation_status?: {
|
|
@@ -27279,6 +27328,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
27279
27328
|
fee_bps: number;
|
|
27280
27329
|
delegation_acceptance: "Allow" | "Deny";
|
|
27281
27330
|
};
|
|
27331
|
+
vanity_name?: string | undefined;
|
|
27282
27332
|
bound_redeem_address?: string | undefined;
|
|
27283
27333
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
27284
27334
|
current_delegation_status?: {
|
|
@@ -28100,6 +28150,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
28100
28150
|
}[];
|
|
28101
28151
|
};
|
|
28102
28152
|
}>;
|
|
28153
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
28103
28154
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
28104
28155
|
asset_balances: z.ZodObject<{
|
|
28105
28156
|
Bitcoin: z.ZodObject<{
|
|
@@ -28415,6 +28466,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
28415
28466
|
}[];
|
|
28416
28467
|
};
|
|
28417
28468
|
};
|
|
28469
|
+
vanity_name?: string | undefined;
|
|
28418
28470
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
28419
28471
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
28420
28472
|
current_delegation_status?: {
|
|
@@ -28597,6 +28649,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
28597
28649
|
}[];
|
|
28598
28650
|
};
|
|
28599
28651
|
};
|
|
28652
|
+
vanity_name?: string | undefined;
|
|
28600
28653
|
bound_redeem_address?: string | undefined;
|
|
28601
28654
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
28602
28655
|
current_delegation_status?: {
|
|
@@ -28618,6 +28671,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
28618
28671
|
is_bidding: z.ZodBoolean;
|
|
28619
28672
|
apy_bp: z.ZodNullable<z.ZodNumber>;
|
|
28620
28673
|
operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
|
|
28674
|
+
vanity_name: z.ZodOptional<z.ZodString>;
|
|
28621
28675
|
flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
28622
28676
|
asset_balances: z.ZodObject<{
|
|
28623
28677
|
Bitcoin: z.ZodObject<{
|
|
@@ -28803,6 +28857,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
28803
28857
|
is_bidding: boolean;
|
|
28804
28858
|
apy_bp: number | null;
|
|
28805
28859
|
operator?: `cF${string}` | undefined;
|
|
28860
|
+
vanity_name?: string | undefined;
|
|
28806
28861
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
28807
28862
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
28808
28863
|
current_delegation_status?: {
|
|
@@ -28855,6 +28910,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
28855
28910
|
is_bidding: boolean;
|
|
28856
28911
|
apy_bp: number | null;
|
|
28857
28912
|
operator?: string | undefined;
|
|
28913
|
+
vanity_name?: string | undefined;
|
|
28858
28914
|
bound_redeem_address?: string | undefined;
|
|
28859
28915
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
28860
28916
|
current_delegation_status?: {
|
|
@@ -28897,6 +28953,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
28897
28953
|
};
|
|
28898
28954
|
bond: bigint;
|
|
28899
28955
|
estimated_redeemable_balance: bigint;
|
|
28956
|
+
vanity_name?: string | undefined;
|
|
28900
28957
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
28901
28958
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
28902
28959
|
current_delegation_status?: {
|
|
@@ -28971,6 +29028,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
28971
29028
|
short_id: number;
|
|
28972
29029
|
withdrawal_address: `0x${string}`;
|
|
28973
29030
|
}[];
|
|
29031
|
+
vanity_name?: string | undefined;
|
|
28974
29032
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
28975
29033
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
28976
29034
|
current_delegation_status?: {
|
|
@@ -29024,6 +29082,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
29024
29082
|
is_bidding: boolean;
|
|
29025
29083
|
apy_bp: number | null;
|
|
29026
29084
|
operator?: `cF${string}` | undefined;
|
|
29085
|
+
vanity_name?: string | undefined;
|
|
29027
29086
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
29028
29087
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
29029
29088
|
current_delegation_status?: {
|
|
@@ -29074,6 +29133,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
29074
29133
|
estimated_redeemable_balance: bigint;
|
|
29075
29134
|
allowed: `cF${string}`[];
|
|
29076
29135
|
blocked: `cF${string}`[];
|
|
29136
|
+
vanity_name?: string | undefined;
|
|
29077
29137
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
29078
29138
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
29079
29139
|
current_delegation_status?: {
|
|
@@ -29289,6 +29349,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
29289
29349
|
}[];
|
|
29290
29350
|
};
|
|
29291
29351
|
};
|
|
29352
|
+
vanity_name?: string | undefined;
|
|
29292
29353
|
bound_redeem_address?: `0x${string}` | undefined;
|
|
29293
29354
|
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
29294
29355
|
current_delegation_status?: {
|
|
@@ -29331,6 +29392,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
29331
29392
|
};
|
|
29332
29393
|
bond: string | number;
|
|
29333
29394
|
estimated_redeemable_balance: string | number;
|
|
29395
|
+
vanity_name?: string | undefined;
|
|
29334
29396
|
bound_redeem_address?: string | undefined;
|
|
29335
29397
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
29336
29398
|
current_delegation_status?: {
|
|
@@ -29400,6 +29462,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
29400
29462
|
DOT: string | number;
|
|
29401
29463
|
};
|
|
29402
29464
|
};
|
|
29465
|
+
vanity_name?: string | undefined;
|
|
29403
29466
|
bound_redeem_address?: string | undefined;
|
|
29404
29467
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
29405
29468
|
current_delegation_status?: {
|
|
@@ -29454,6 +29517,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
29454
29517
|
fee_bps: number;
|
|
29455
29518
|
delegation_acceptance: "Allow" | "Deny";
|
|
29456
29519
|
};
|
|
29520
|
+
vanity_name?: string | undefined;
|
|
29457
29521
|
bound_redeem_address?: string | undefined;
|
|
29458
29522
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
29459
29523
|
current_delegation_status?: {
|
|
@@ -29644,6 +29708,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
29644
29708
|
}[];
|
|
29645
29709
|
};
|
|
29646
29710
|
};
|
|
29711
|
+
vanity_name?: string | undefined;
|
|
29647
29712
|
bound_redeem_address?: string | undefined;
|
|
29648
29713
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
29649
29714
|
current_delegation_status?: {
|
|
@@ -29696,6 +29761,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
|
|
|
29696
29761
|
is_bidding: boolean;
|
|
29697
29762
|
apy_bp: number | null;
|
|
29698
29763
|
operator?: string | undefined;
|
|
29764
|
+
vanity_name?: string | undefined;
|
|
29699
29765
|
bound_redeem_address?: string | undefined;
|
|
29700
29766
|
restricted_balances?: Record<string, string | number> | undefined;
|
|
29701
29767
|
current_delegation_status?: {
|
|
@@ -37360,7 +37426,25 @@ declare const cfLendingPools: z.ZodArray<z.ZodObject<{
|
|
|
37360
37426
|
total_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
37361
37427
|
available_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
37362
37428
|
utilisation_rate: z.ZodNumber;
|
|
37363
|
-
|
|
37429
|
+
current_interest_rate: z.ZodNumber;
|
|
37430
|
+
origination_fee: z.ZodNumber;
|
|
37431
|
+
liquidation_fee: z.ZodNumber;
|
|
37432
|
+
interest_rate_curve: z.ZodObject<{
|
|
37433
|
+
interest_at_zero_utilisation: z.ZodNumber;
|
|
37434
|
+
junction_utilisation: z.ZodNumber;
|
|
37435
|
+
interest_at_junction_utilisation: z.ZodNumber;
|
|
37436
|
+
interest_at_max_utilisation: z.ZodNumber;
|
|
37437
|
+
}, "strip", z.ZodTypeAny, {
|
|
37438
|
+
interest_at_zero_utilisation: number;
|
|
37439
|
+
junction_utilisation: number;
|
|
37440
|
+
interest_at_junction_utilisation: number;
|
|
37441
|
+
interest_at_max_utilisation: number;
|
|
37442
|
+
}, {
|
|
37443
|
+
interest_at_zero_utilisation: number;
|
|
37444
|
+
junction_utilisation: number;
|
|
37445
|
+
interest_at_junction_utilisation: number;
|
|
37446
|
+
interest_at_max_utilisation: number;
|
|
37447
|
+
}>;
|
|
37364
37448
|
}, "strip", z.ZodTypeAny, {
|
|
37365
37449
|
asset: {
|
|
37366
37450
|
chain: "Bitcoin";
|
|
@@ -37405,7 +37489,15 @@ declare const cfLendingPools: z.ZodArray<z.ZodObject<{
|
|
|
37405
37489
|
available_amount: bigint;
|
|
37406
37490
|
total_amount: bigint;
|
|
37407
37491
|
utilisation_rate: number;
|
|
37408
|
-
|
|
37492
|
+
current_interest_rate: number;
|
|
37493
|
+
origination_fee: number;
|
|
37494
|
+
liquidation_fee: number;
|
|
37495
|
+
interest_rate_curve: {
|
|
37496
|
+
interest_at_zero_utilisation: number;
|
|
37497
|
+
junction_utilisation: number;
|
|
37498
|
+
interest_at_junction_utilisation: number;
|
|
37499
|
+
interest_at_max_utilisation: number;
|
|
37500
|
+
};
|
|
37409
37501
|
}, {
|
|
37410
37502
|
asset: {
|
|
37411
37503
|
chain: "Bitcoin";
|
|
@@ -37450,7 +37542,15 @@ declare const cfLendingPools: z.ZodArray<z.ZodObject<{
|
|
|
37450
37542
|
available_amount: string | number;
|
|
37451
37543
|
total_amount: string | number;
|
|
37452
37544
|
utilisation_rate: number;
|
|
37453
|
-
|
|
37545
|
+
current_interest_rate: number;
|
|
37546
|
+
origination_fee: number;
|
|
37547
|
+
liquidation_fee: number;
|
|
37548
|
+
interest_rate_curve: {
|
|
37549
|
+
interest_at_zero_utilisation: number;
|
|
37550
|
+
junction_utilisation: number;
|
|
37551
|
+
interest_at_junction_utilisation: number;
|
|
37552
|
+
interest_at_max_utilisation: number;
|
|
37553
|
+
};
|
|
37454
37554
|
}>, "many">;
|
|
37455
37555
|
|
|
37456
37556
|
export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, accountInfoCommon, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfAuctionState, cfAvailablePools, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFailedCallEvm, cfFlipSuppy, cfFundingEnvironment, cfGetTradingStrategies, cfGetTradingStrategyLimits, cfIngressEgressEnvironment, cfLendingPools, cfOraclePrices, cfPoolDepth, cfPoolOrderbook, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSafeModeStatuses, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, cfTradingStrategy, chainGetBlockHash, ethereumAddress, hexString, liquidityProvider, lpTotalBalances, newCfAccountInfo, numberOrHex, oldBroker, oldCfAccountInfo, oldLiquidityProvider, oldUnregistered, oldValidator, operator, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|
package/dist/parsers.mjs
CHANGED
|
@@ -211,6 +211,7 @@ var delegationStatus = z.object({
|
|
|
211
211
|
bid: numberOrHex
|
|
212
212
|
});
|
|
213
213
|
var accountInfoCommon = {
|
|
214
|
+
vanity_name: z.string().optional(),
|
|
214
215
|
flip_balance: numberOrHex,
|
|
215
216
|
asset_balances: chainAssetMapFactory(numberOrHex, 0),
|
|
216
217
|
bond: numberOrHex,
|
|
@@ -631,7 +632,15 @@ var cfLendingPools = z.array(
|
|
|
631
632
|
total_amount: numberOrHex,
|
|
632
633
|
available_amount: numberOrHex,
|
|
633
634
|
utilisation_rate: z.number(),
|
|
634
|
-
|
|
635
|
+
current_interest_rate: z.number(),
|
|
636
|
+
origination_fee: z.number(),
|
|
637
|
+
liquidation_fee: z.number(),
|
|
638
|
+
interest_rate_curve: z.object({
|
|
639
|
+
interest_at_zero_utilisation: z.number(),
|
|
640
|
+
junction_utilisation: z.number(),
|
|
641
|
+
interest_at_junction_utilisation: z.number(),
|
|
642
|
+
interest_at_max_utilisation: z.number()
|
|
643
|
+
})
|
|
635
644
|
})
|
|
636
645
|
);
|
|
637
646
|
export {
|