@chainflip/rpc 1.11.1 → 1.11.3
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 +229 -1859
- package/dist/common.d.ts +229 -1859
- package/dist/parsers.cjs +8 -63
- package/dist/parsers.d.cts +3055 -11694
- package/dist/parsers.d.ts +3055 -11694
- package/dist/parsers.mjs +7 -62
- package/package.json +1 -1
package/dist/common.d.cts
CHANGED
|
@@ -391,7 +391,7 @@ declare const rpcResult: {
|
|
|
391
391
|
}[];
|
|
392
392
|
}>]>;
|
|
393
393
|
readonly cf_accounts: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
|
|
394
|
-
readonly cf_account_info: z.
|
|
394
|
+
readonly cf_account_info: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
395
395
|
vanity_name: z.ZodOptional<z.ZodString>;
|
|
396
396
|
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
397
397
|
asset_balances: z.ZodObject<Omit<{
|
|
@@ -2189,11 +2189,11 @@ declare const rpcResult: {
|
|
|
2189
2189
|
total_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2190
2190
|
available_amount: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
2191
2191
|
}, "strip", z.ZodTypeAny, {
|
|
2192
|
-
available_amount: bigint;
|
|
2193
2192
|
total_amount: bigint;
|
|
2193
|
+
available_amount: bigint;
|
|
2194
2194
|
}, {
|
|
2195
|
-
available_amount: string | number;
|
|
2196
2195
|
total_amount: string | number;
|
|
2196
|
+
available_amount: string | number;
|
|
2197
2197
|
}>>, "many">>;
|
|
2198
2198
|
collateral_balances: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
2199
2199
|
chain: z.ZodLiteral<"Bitcoin">;
|
|
@@ -2664,8 +2664,8 @@ declare const rpcResult: {
|
|
|
2664
2664
|
chain: "Assethub";
|
|
2665
2665
|
asset: "USDT";
|
|
2666
2666
|
}) & {
|
|
2667
|
-
available_amount: bigint;
|
|
2668
2667
|
total_amount: bigint;
|
|
2668
|
+
available_amount: bigint;
|
|
2669
2669
|
})[] | undefined;
|
|
2670
2670
|
collateral_balances?: (({
|
|
2671
2671
|
chain: "Bitcoin";
|
|
@@ -2916,8 +2916,8 @@ declare const rpcResult: {
|
|
|
2916
2916
|
chain: "Assethub";
|
|
2917
2917
|
asset: "USDT";
|
|
2918
2918
|
}) & {
|
|
2919
|
-
available_amount: string | number;
|
|
2920
2919
|
total_amount: string | number;
|
|
2920
|
+
available_amount: string | number;
|
|
2921
2921
|
})[] | undefined;
|
|
2922
2922
|
collateral_balances?: (({
|
|
2923
2923
|
chain: "Bitcoin";
|
|
@@ -3321,134 +3321,6 @@ declare const rpcResult: {
|
|
|
3321
3321
|
} | undefined;
|
|
3322
3322
|
btc_vault_deposit_address?: string | null | undefined;
|
|
3323
3323
|
} | {
|
|
3324
|
-
role: "validator";
|
|
3325
|
-
flip_balance: bigint;
|
|
3326
|
-
asset_balances: {
|
|
3327
|
-
Bitcoin: {
|
|
3328
|
-
BTC: bigint;
|
|
3329
|
-
};
|
|
3330
|
-
Ethereum: {
|
|
3331
|
-
FLIP: bigint;
|
|
3332
|
-
ETH: bigint;
|
|
3333
|
-
USDC: bigint;
|
|
3334
|
-
USDT: bigint;
|
|
3335
|
-
};
|
|
3336
|
-
Arbitrum: {
|
|
3337
|
-
ETH: bigint;
|
|
3338
|
-
USDC: bigint;
|
|
3339
|
-
};
|
|
3340
|
-
Solana: {
|
|
3341
|
-
USDC: bigint;
|
|
3342
|
-
SOL: bigint;
|
|
3343
|
-
};
|
|
3344
|
-
Assethub: {
|
|
3345
|
-
DOT: bigint;
|
|
3346
|
-
USDC: bigint;
|
|
3347
|
-
USDT: bigint;
|
|
3348
|
-
};
|
|
3349
|
-
};
|
|
3350
|
-
bond: bigint;
|
|
3351
|
-
estimated_redeemable_balance: bigint;
|
|
3352
|
-
last_heartbeat: number;
|
|
3353
|
-
reputation_points: number;
|
|
3354
|
-
keyholder_epochs: number[];
|
|
3355
|
-
is_current_authority: boolean;
|
|
3356
|
-
is_current_backup: boolean;
|
|
3357
|
-
is_qualified: boolean;
|
|
3358
|
-
is_online: boolean;
|
|
3359
|
-
is_bidding: boolean;
|
|
3360
|
-
apy_bp: number | null;
|
|
3361
|
-
operator?: `cF${string}` | undefined;
|
|
3362
|
-
vanity_name?: string | undefined;
|
|
3363
|
-
bound_redeem_address?: `0x${string}` | undefined;
|
|
3364
|
-
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
3365
|
-
current_delegation_status?: {
|
|
3366
|
-
operator: `cF${string}`;
|
|
3367
|
-
bid: bigint;
|
|
3368
|
-
} | undefined;
|
|
3369
|
-
upcoming_delegation_status?: {
|
|
3370
|
-
operator: `cF${string}`;
|
|
3371
|
-
bid: bigint;
|
|
3372
|
-
} | undefined;
|
|
3373
|
-
} | {
|
|
3374
|
-
upcoming_delegation: {
|
|
3375
|
-
validators: Partial<Record<`cF${string}`, bigint>>;
|
|
3376
|
-
delegators: Partial<Record<`cF${string}`, bigint>>;
|
|
3377
|
-
delegation_fee_bps: number;
|
|
3378
|
-
delegation_acceptance: "Allow" | "Deny";
|
|
3379
|
-
};
|
|
3380
|
-
role: "operator";
|
|
3381
|
-
flip_balance: bigint;
|
|
3382
|
-
asset_balances: {
|
|
3383
|
-
Bitcoin: {
|
|
3384
|
-
BTC: bigint;
|
|
3385
|
-
};
|
|
3386
|
-
Ethereum: {
|
|
3387
|
-
FLIP: bigint;
|
|
3388
|
-
ETH: bigint;
|
|
3389
|
-
USDC: bigint;
|
|
3390
|
-
USDT: bigint;
|
|
3391
|
-
};
|
|
3392
|
-
Arbitrum: {
|
|
3393
|
-
ETH: bigint;
|
|
3394
|
-
USDC: bigint;
|
|
3395
|
-
};
|
|
3396
|
-
Solana: {
|
|
3397
|
-
USDC: bigint;
|
|
3398
|
-
SOL: bigint;
|
|
3399
|
-
};
|
|
3400
|
-
Assethub: {
|
|
3401
|
-
DOT: bigint;
|
|
3402
|
-
USDC: bigint;
|
|
3403
|
-
USDT: bigint;
|
|
3404
|
-
};
|
|
3405
|
-
};
|
|
3406
|
-
bond: bigint;
|
|
3407
|
-
estimated_redeemable_balance: bigint;
|
|
3408
|
-
allowed: `cF${string}`[];
|
|
3409
|
-
blocked: `cF${string}`[];
|
|
3410
|
-
vanity_name?: string | undefined;
|
|
3411
|
-
bound_redeem_address?: `0x${string}` | undefined;
|
|
3412
|
-
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
3413
|
-
current_delegation_status?: {
|
|
3414
|
-
operator: `cF${string}`;
|
|
3415
|
-
bid: bigint;
|
|
3416
|
-
} | undefined;
|
|
3417
|
-
upcoming_delegation_status?: {
|
|
3418
|
-
operator: `cF${string}`;
|
|
3419
|
-
bid: bigint;
|
|
3420
|
-
} | undefined;
|
|
3421
|
-
active_delegation?: {
|
|
3422
|
-
operator: `cF${string}`;
|
|
3423
|
-
delegators: Partial<Record<`cF${string}`, bigint>>;
|
|
3424
|
-
validators: Partial<Record<`cF${string}`, bigint>>;
|
|
3425
|
-
delegation_fee_bps: number;
|
|
3426
|
-
} | undefined;
|
|
3427
|
-
} | {
|
|
3428
|
-
balances: {
|
|
3429
|
-
Bitcoin: {
|
|
3430
|
-
BTC: bigint;
|
|
3431
|
-
};
|
|
3432
|
-
Ethereum: {
|
|
3433
|
-
FLIP: bigint;
|
|
3434
|
-
ETH: bigint;
|
|
3435
|
-
USDC: bigint;
|
|
3436
|
-
USDT: bigint;
|
|
3437
|
-
};
|
|
3438
|
-
Arbitrum: {
|
|
3439
|
-
ETH: bigint;
|
|
3440
|
-
USDC: bigint;
|
|
3441
|
-
};
|
|
3442
|
-
Solana: {
|
|
3443
|
-
USDC: bigint;
|
|
3444
|
-
SOL: bigint;
|
|
3445
|
-
};
|
|
3446
|
-
Assethub: {
|
|
3447
|
-
DOT: bigint;
|
|
3448
|
-
USDC: bigint;
|
|
3449
|
-
USDT: bigint;
|
|
3450
|
-
};
|
|
3451
|
-
};
|
|
3452
3324
|
role: "liquidity_provider";
|
|
3453
3325
|
flip_balance: bigint;
|
|
3454
3326
|
asset_balances: {
|
|
@@ -3655,8 +3527,8 @@ declare const rpcResult: {
|
|
|
3655
3527
|
chain: "Assethub";
|
|
3656
3528
|
asset: "USDT";
|
|
3657
3529
|
}) & {
|
|
3658
|
-
available_amount: bigint;
|
|
3659
3530
|
total_amount: bigint;
|
|
3531
|
+
available_amount: bigint;
|
|
3660
3532
|
})[] | undefined;
|
|
3661
3533
|
collateral_balances?: (({
|
|
3662
3534
|
chain: "Bitcoin";
|
|
@@ -3700,6 +3572,110 @@ declare const rpcResult: {
|
|
|
3700
3572
|
}) & {
|
|
3701
3573
|
amount: bigint;
|
|
3702
3574
|
})[] | undefined;
|
|
3575
|
+
} | {
|
|
3576
|
+
role: "validator";
|
|
3577
|
+
flip_balance: bigint;
|
|
3578
|
+
asset_balances: {
|
|
3579
|
+
Bitcoin: {
|
|
3580
|
+
BTC: bigint;
|
|
3581
|
+
};
|
|
3582
|
+
Ethereum: {
|
|
3583
|
+
FLIP: bigint;
|
|
3584
|
+
ETH: bigint;
|
|
3585
|
+
USDC: bigint;
|
|
3586
|
+
USDT: bigint;
|
|
3587
|
+
};
|
|
3588
|
+
Arbitrum: {
|
|
3589
|
+
ETH: bigint;
|
|
3590
|
+
USDC: bigint;
|
|
3591
|
+
};
|
|
3592
|
+
Solana: {
|
|
3593
|
+
USDC: bigint;
|
|
3594
|
+
SOL: bigint;
|
|
3595
|
+
};
|
|
3596
|
+
Assethub: {
|
|
3597
|
+
DOT: bigint;
|
|
3598
|
+
USDC: bigint;
|
|
3599
|
+
USDT: bigint;
|
|
3600
|
+
};
|
|
3601
|
+
};
|
|
3602
|
+
bond: bigint;
|
|
3603
|
+
estimated_redeemable_balance: bigint;
|
|
3604
|
+
last_heartbeat: number;
|
|
3605
|
+
reputation_points: number;
|
|
3606
|
+
keyholder_epochs: number[];
|
|
3607
|
+
is_current_authority: boolean;
|
|
3608
|
+
is_current_backup: boolean;
|
|
3609
|
+
is_qualified: boolean;
|
|
3610
|
+
is_online: boolean;
|
|
3611
|
+
is_bidding: boolean;
|
|
3612
|
+
apy_bp: number | null;
|
|
3613
|
+
operator?: `cF${string}` | undefined;
|
|
3614
|
+
vanity_name?: string | undefined;
|
|
3615
|
+
bound_redeem_address?: `0x${string}` | undefined;
|
|
3616
|
+
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
3617
|
+
current_delegation_status?: {
|
|
3618
|
+
operator: `cF${string}`;
|
|
3619
|
+
bid: bigint;
|
|
3620
|
+
} | undefined;
|
|
3621
|
+
upcoming_delegation_status?: {
|
|
3622
|
+
operator: `cF${string}`;
|
|
3623
|
+
bid: bigint;
|
|
3624
|
+
} | undefined;
|
|
3625
|
+
} | {
|
|
3626
|
+
upcoming_delegation: {
|
|
3627
|
+
validators: Partial<Record<`cF${string}`, bigint>>;
|
|
3628
|
+
delegators: Partial<Record<`cF${string}`, bigint>>;
|
|
3629
|
+
delegation_fee_bps: number;
|
|
3630
|
+
delegation_acceptance: "Allow" | "Deny";
|
|
3631
|
+
};
|
|
3632
|
+
role: "operator";
|
|
3633
|
+
flip_balance: bigint;
|
|
3634
|
+
asset_balances: {
|
|
3635
|
+
Bitcoin: {
|
|
3636
|
+
BTC: bigint;
|
|
3637
|
+
};
|
|
3638
|
+
Ethereum: {
|
|
3639
|
+
FLIP: bigint;
|
|
3640
|
+
ETH: bigint;
|
|
3641
|
+
USDC: bigint;
|
|
3642
|
+
USDT: bigint;
|
|
3643
|
+
};
|
|
3644
|
+
Arbitrum: {
|
|
3645
|
+
ETH: bigint;
|
|
3646
|
+
USDC: bigint;
|
|
3647
|
+
};
|
|
3648
|
+
Solana: {
|
|
3649
|
+
USDC: bigint;
|
|
3650
|
+
SOL: bigint;
|
|
3651
|
+
};
|
|
3652
|
+
Assethub: {
|
|
3653
|
+
DOT: bigint;
|
|
3654
|
+
USDC: bigint;
|
|
3655
|
+
USDT: bigint;
|
|
3656
|
+
};
|
|
3657
|
+
};
|
|
3658
|
+
bond: bigint;
|
|
3659
|
+
estimated_redeemable_balance: bigint;
|
|
3660
|
+
allowed: `cF${string}`[];
|
|
3661
|
+
blocked: `cF${string}`[];
|
|
3662
|
+
vanity_name?: string | undefined;
|
|
3663
|
+
bound_redeem_address?: `0x${string}` | undefined;
|
|
3664
|
+
restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
|
|
3665
|
+
current_delegation_status?: {
|
|
3666
|
+
operator: `cF${string}`;
|
|
3667
|
+
bid: bigint;
|
|
3668
|
+
} | undefined;
|
|
3669
|
+
upcoming_delegation_status?: {
|
|
3670
|
+
operator: `cF${string}`;
|
|
3671
|
+
bid: bigint;
|
|
3672
|
+
} | undefined;
|
|
3673
|
+
active_delegation?: {
|
|
3674
|
+
operator: `cF${string}`;
|
|
3675
|
+
delegators: Partial<Record<`cF${string}`, bigint>>;
|
|
3676
|
+
validators: Partial<Record<`cF${string}`, bigint>>;
|
|
3677
|
+
delegation_fee_bps: number;
|
|
3678
|
+
} | undefined;
|
|
3703
3679
|
}, {
|
|
3704
3680
|
role: "unregistered";
|
|
3705
3681
|
flip_balance: string | number;
|
|
@@ -4071,8 +4047,8 @@ declare const rpcResult: {
|
|
|
4071
4047
|
chain: "Assethub";
|
|
4072
4048
|
asset: "USDT";
|
|
4073
4049
|
}) & {
|
|
4074
|
-
available_amount: string | number;
|
|
4075
4050
|
total_amount: string | number;
|
|
4051
|
+
available_amount: string | number;
|
|
4076
4052
|
})[] | undefined;
|
|
4077
4053
|
collateral_balances?: (({
|
|
4078
4054
|
chain: "Bitcoin";
|
|
@@ -4121,1655 +4097,30 @@ declare const rpcResult: {
|
|
|
4121
4097
|
flip_balance: string | number;
|
|
4122
4098
|
asset_balances: {
|
|
4123
4099
|
Bitcoin: {
|
|
4124
|
-
BTC: string | number;
|
|
4125
|
-
};
|
|
4126
|
-
Ethereum: {
|
|
4127
|
-
FLIP: string | number;
|
|
4128
|
-
ETH: string | number;
|
|
4129
|
-
USDC: string | number;
|
|
4130
|
-
USDT: string | number;
|
|
4131
|
-
};
|
|
4132
|
-
Arbitrum: {
|
|
4133
|
-
ETH: string | number;
|
|
4134
|
-
USDC: string | number;
|
|
4135
|
-
};
|
|
4136
|
-
Solana: {
|
|
4137
|
-
USDC: string | number;
|
|
4138
|
-
SOL: string | number;
|
|
4139
|
-
};
|
|
4140
|
-
Assethub: {
|
|
4141
|
-
DOT: string | number;
|
|
4142
|
-
USDC: string | number;
|
|
4143
|
-
USDT: string | number;
|
|
4144
|
-
};
|
|
4145
|
-
};
|
|
4146
|
-
bond: string | number;
|
|
4147
|
-
estimated_redeemable_balance: string | number;
|
|
4148
|
-
last_heartbeat: number;
|
|
4149
|
-
reputation_points: number;
|
|
4150
|
-
keyholder_epochs: number[];
|
|
4151
|
-
is_current_authority: boolean;
|
|
4152
|
-
is_current_backup: boolean;
|
|
4153
|
-
is_qualified: boolean;
|
|
4154
|
-
is_online: boolean;
|
|
4155
|
-
is_bidding: boolean;
|
|
4156
|
-
apy_bp: number | null;
|
|
4157
|
-
operator?: string | undefined;
|
|
4158
|
-
vanity_name?: string | undefined;
|
|
4159
|
-
bound_redeem_address?: string | undefined;
|
|
4160
|
-
restricted_balances?: Record<string, string | number> | undefined;
|
|
4161
|
-
current_delegation_status?: {
|
|
4162
|
-
operator: string;
|
|
4163
|
-
bid: string | number;
|
|
4164
|
-
} | undefined;
|
|
4165
|
-
upcoming_delegation_status?: {
|
|
4166
|
-
operator: string;
|
|
4167
|
-
bid: string | number;
|
|
4168
|
-
} | undefined;
|
|
4169
|
-
}>, z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
|
|
4170
|
-
role: z.ZodLiteral<"unregistered">;
|
|
4171
|
-
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4172
|
-
asset_balances: z.ZodObject<Omit<{
|
|
4173
|
-
Bitcoin: z.ZodObject<{
|
|
4174
|
-
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4175
|
-
}, "strip", z.ZodTypeAny, {
|
|
4176
|
-
BTC: bigint;
|
|
4177
|
-
}, {
|
|
4178
|
-
BTC: string | number;
|
|
4179
|
-
}>;
|
|
4180
|
-
Ethereum: z.ZodObject<{
|
|
4181
|
-
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4182
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4183
|
-
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4184
|
-
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4185
|
-
}, "strip", z.ZodTypeAny, {
|
|
4186
|
-
FLIP: bigint;
|
|
4187
|
-
ETH: bigint;
|
|
4188
|
-
USDC: bigint;
|
|
4189
|
-
USDT: bigint;
|
|
4190
|
-
}, {
|
|
4191
|
-
FLIP: string | number;
|
|
4192
|
-
ETH: string | number;
|
|
4193
|
-
USDC: string | number;
|
|
4194
|
-
USDT: string | number;
|
|
4195
|
-
}>;
|
|
4196
|
-
Polkadot: z.ZodObject<{
|
|
4197
|
-
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4198
|
-
}, "strip", z.ZodTypeAny, {
|
|
4199
|
-
DOT: bigint;
|
|
4200
|
-
}, {
|
|
4201
|
-
DOT: string | number;
|
|
4202
|
-
}>;
|
|
4203
|
-
Arbitrum: z.ZodObject<{
|
|
4204
|
-
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4205
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4206
|
-
}, "strip", z.ZodTypeAny, {
|
|
4207
|
-
ETH: bigint;
|
|
4208
|
-
USDC: bigint;
|
|
4209
|
-
}, {
|
|
4210
|
-
ETH: string | number;
|
|
4211
|
-
USDC: string | number;
|
|
4212
|
-
}>;
|
|
4213
|
-
Solana: z.ZodObject<{
|
|
4214
|
-
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4215
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4216
|
-
}, "strip", z.ZodTypeAny, {
|
|
4217
|
-
USDC: bigint;
|
|
4218
|
-
SOL: bigint;
|
|
4219
|
-
}, {
|
|
4220
|
-
USDC: string | number;
|
|
4221
|
-
SOL: string | number;
|
|
4222
|
-
}>;
|
|
4223
|
-
Assethub: z.ZodObject<{
|
|
4224
|
-
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4225
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4226
|
-
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4227
|
-
}, "strip", z.ZodTypeAny, {
|
|
4228
|
-
DOT: bigint;
|
|
4229
|
-
USDC: bigint;
|
|
4230
|
-
USDT: bigint;
|
|
4231
|
-
}, {
|
|
4232
|
-
DOT: string | number;
|
|
4233
|
-
USDC: string | number;
|
|
4234
|
-
USDT: string | number;
|
|
4235
|
-
}>;
|
|
4236
|
-
}, "Polkadot">, "strip", z.ZodTypeAny, {
|
|
4237
|
-
Bitcoin: {
|
|
4238
|
-
BTC: bigint;
|
|
4239
|
-
};
|
|
4240
|
-
Ethereum: {
|
|
4241
|
-
FLIP: bigint;
|
|
4242
|
-
ETH: bigint;
|
|
4243
|
-
USDC: bigint;
|
|
4244
|
-
USDT: bigint;
|
|
4245
|
-
};
|
|
4246
|
-
Arbitrum: {
|
|
4247
|
-
ETH: bigint;
|
|
4248
|
-
USDC: bigint;
|
|
4249
|
-
};
|
|
4250
|
-
Solana: {
|
|
4251
|
-
USDC: bigint;
|
|
4252
|
-
SOL: bigint;
|
|
4253
|
-
};
|
|
4254
|
-
Assethub: {
|
|
4255
|
-
DOT: bigint;
|
|
4256
|
-
USDC: bigint;
|
|
4257
|
-
USDT: bigint;
|
|
4258
|
-
};
|
|
4259
|
-
}, {
|
|
4260
|
-
Bitcoin: {
|
|
4261
|
-
BTC: string | number;
|
|
4262
|
-
};
|
|
4263
|
-
Ethereum: {
|
|
4264
|
-
FLIP: string | number;
|
|
4265
|
-
ETH: string | number;
|
|
4266
|
-
USDC: string | number;
|
|
4267
|
-
USDT: string | number;
|
|
4268
|
-
};
|
|
4269
|
-
Arbitrum: {
|
|
4270
|
-
ETH: string | number;
|
|
4271
|
-
USDC: string | number;
|
|
4272
|
-
};
|
|
4273
|
-
Solana: {
|
|
4274
|
-
USDC: string | number;
|
|
4275
|
-
SOL: string | number;
|
|
4276
|
-
};
|
|
4277
|
-
Assethub: {
|
|
4278
|
-
DOT: string | number;
|
|
4279
|
-
USDC: string | number;
|
|
4280
|
-
USDT: string | number;
|
|
4281
|
-
};
|
|
4282
|
-
}>;
|
|
4283
|
-
}, "strip", z.ZodTypeAny, {
|
|
4284
|
-
role: "unregistered";
|
|
4285
|
-
flip_balance: bigint;
|
|
4286
|
-
asset_balances: {
|
|
4287
|
-
Bitcoin: {
|
|
4288
|
-
BTC: bigint;
|
|
4289
|
-
};
|
|
4290
|
-
Ethereum: {
|
|
4291
|
-
FLIP: bigint;
|
|
4292
|
-
ETH: bigint;
|
|
4293
|
-
USDC: bigint;
|
|
4294
|
-
USDT: bigint;
|
|
4295
|
-
};
|
|
4296
|
-
Arbitrum: {
|
|
4297
|
-
ETH: bigint;
|
|
4298
|
-
USDC: bigint;
|
|
4299
|
-
};
|
|
4300
|
-
Solana: {
|
|
4301
|
-
USDC: bigint;
|
|
4302
|
-
SOL: bigint;
|
|
4303
|
-
};
|
|
4304
|
-
Assethub: {
|
|
4305
|
-
DOT: bigint;
|
|
4306
|
-
USDC: bigint;
|
|
4307
|
-
USDT: bigint;
|
|
4308
|
-
};
|
|
4309
|
-
};
|
|
4310
|
-
}, {
|
|
4311
|
-
role: "unregistered";
|
|
4312
|
-
flip_balance: string | number;
|
|
4313
|
-
asset_balances: {
|
|
4314
|
-
Bitcoin: {
|
|
4315
|
-
BTC: string | number;
|
|
4316
|
-
};
|
|
4317
|
-
Ethereum: {
|
|
4318
|
-
FLIP: string | number;
|
|
4319
|
-
ETH: string | number;
|
|
4320
|
-
USDC: string | number;
|
|
4321
|
-
USDT: string | number;
|
|
4322
|
-
};
|
|
4323
|
-
Arbitrum: {
|
|
4324
|
-
ETH: string | number;
|
|
4325
|
-
USDC: string | number;
|
|
4326
|
-
};
|
|
4327
|
-
Solana: {
|
|
4328
|
-
USDC: string | number;
|
|
4329
|
-
SOL: string | number;
|
|
4330
|
-
};
|
|
4331
|
-
Assethub: {
|
|
4332
|
-
DOT: string | number;
|
|
4333
|
-
USDC: string | number;
|
|
4334
|
-
USDT: string | number;
|
|
4335
|
-
};
|
|
4336
|
-
};
|
|
4337
|
-
}>, z.ZodObject<{
|
|
4338
|
-
role: z.ZodLiteral<"broker">;
|
|
4339
|
-
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4340
|
-
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4341
|
-
earned_fees: z.ZodObject<Omit<{
|
|
4342
|
-
Bitcoin: z.ZodObject<{
|
|
4343
|
-
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4344
|
-
}, "strip", z.ZodTypeAny, {
|
|
4345
|
-
BTC: bigint;
|
|
4346
|
-
}, {
|
|
4347
|
-
BTC: string | number;
|
|
4348
|
-
}>;
|
|
4349
|
-
Ethereum: z.ZodObject<{
|
|
4350
|
-
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4351
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4352
|
-
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4353
|
-
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4354
|
-
}, "strip", z.ZodTypeAny, {
|
|
4355
|
-
FLIP: bigint;
|
|
4356
|
-
ETH: bigint;
|
|
4357
|
-
USDC: bigint;
|
|
4358
|
-
USDT: bigint;
|
|
4359
|
-
}, {
|
|
4360
|
-
FLIP: string | number;
|
|
4361
|
-
ETH: string | number;
|
|
4362
|
-
USDC: string | number;
|
|
4363
|
-
USDT: string | number;
|
|
4364
|
-
}>;
|
|
4365
|
-
Polkadot: z.ZodObject<{
|
|
4366
|
-
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4367
|
-
}, "strip", z.ZodTypeAny, {
|
|
4368
|
-
DOT: bigint;
|
|
4369
|
-
}, {
|
|
4370
|
-
DOT: string | number;
|
|
4371
|
-
}>;
|
|
4372
|
-
Arbitrum: z.ZodObject<{
|
|
4373
|
-
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4374
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4375
|
-
}, "strip", z.ZodTypeAny, {
|
|
4376
|
-
ETH: bigint;
|
|
4377
|
-
USDC: bigint;
|
|
4378
|
-
}, {
|
|
4379
|
-
ETH: string | number;
|
|
4380
|
-
USDC: string | number;
|
|
4381
|
-
}>;
|
|
4382
|
-
Solana: z.ZodObject<{
|
|
4383
|
-
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4384
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4385
|
-
}, "strip", z.ZodTypeAny, {
|
|
4386
|
-
USDC: bigint;
|
|
4387
|
-
SOL: bigint;
|
|
4388
|
-
}, {
|
|
4389
|
-
USDC: string | number;
|
|
4390
|
-
SOL: string | number;
|
|
4391
|
-
}>;
|
|
4392
|
-
Assethub: z.ZodObject<{
|
|
4393
|
-
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4394
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4395
|
-
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4396
|
-
}, "strip", z.ZodTypeAny, {
|
|
4397
|
-
DOT: bigint;
|
|
4398
|
-
USDC: bigint;
|
|
4399
|
-
USDT: bigint;
|
|
4400
|
-
}, {
|
|
4401
|
-
DOT: string | number;
|
|
4402
|
-
USDC: string | number;
|
|
4403
|
-
USDT: string | number;
|
|
4404
|
-
}>;
|
|
4405
|
-
}, "Polkadot">, "strip", z.ZodTypeAny, {
|
|
4406
|
-
Bitcoin: {
|
|
4407
|
-
BTC: bigint;
|
|
4408
|
-
};
|
|
4409
|
-
Ethereum: {
|
|
4410
|
-
FLIP: bigint;
|
|
4411
|
-
ETH: bigint;
|
|
4412
|
-
USDC: bigint;
|
|
4413
|
-
USDT: bigint;
|
|
4414
|
-
};
|
|
4415
|
-
Arbitrum: {
|
|
4416
|
-
ETH: bigint;
|
|
4417
|
-
USDC: bigint;
|
|
4418
|
-
};
|
|
4419
|
-
Solana: {
|
|
4420
|
-
USDC: bigint;
|
|
4421
|
-
SOL: bigint;
|
|
4422
|
-
};
|
|
4423
|
-
Assethub: {
|
|
4424
|
-
DOT: bigint;
|
|
4425
|
-
USDC: bigint;
|
|
4426
|
-
USDT: bigint;
|
|
4427
|
-
};
|
|
4428
|
-
}, {
|
|
4429
|
-
Bitcoin: {
|
|
4430
|
-
BTC: string | number;
|
|
4431
|
-
};
|
|
4432
|
-
Ethereum: {
|
|
4433
|
-
FLIP: string | number;
|
|
4434
|
-
ETH: string | number;
|
|
4435
|
-
USDC: string | number;
|
|
4436
|
-
USDT: string | number;
|
|
4437
|
-
};
|
|
4438
|
-
Arbitrum: {
|
|
4439
|
-
ETH: string | number;
|
|
4440
|
-
USDC: string | number;
|
|
4441
|
-
};
|
|
4442
|
-
Solana: {
|
|
4443
|
-
USDC: string | number;
|
|
4444
|
-
SOL: string | number;
|
|
4445
|
-
};
|
|
4446
|
-
Assethub: {
|
|
4447
|
-
DOT: string | number;
|
|
4448
|
-
USDC: string | number;
|
|
4449
|
-
USDT: string | number;
|
|
4450
|
-
};
|
|
4451
|
-
}>;
|
|
4452
|
-
btc_vault_deposit_address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4453
|
-
affiliates: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4454
|
-
account_id: z.ZodEffects<z.ZodString, `cF${string}`, string>;
|
|
4455
|
-
short_id: z.ZodNumber;
|
|
4456
|
-
withdrawal_address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
4457
|
-
}, "strip", z.ZodTypeAny, {
|
|
4458
|
-
account_id: `cF${string}`;
|
|
4459
|
-
short_id: number;
|
|
4460
|
-
withdrawal_address: `0x${string}`;
|
|
4461
|
-
}, {
|
|
4462
|
-
account_id: string;
|
|
4463
|
-
short_id: number;
|
|
4464
|
-
withdrawal_address: string;
|
|
4465
|
-
}>, "many">>>;
|
|
4466
|
-
}, "strip", z.ZodTypeAny, {
|
|
4467
|
-
role: "broker";
|
|
4468
|
-
flip_balance: bigint;
|
|
4469
|
-
bond: bigint;
|
|
4470
|
-
earned_fees: {
|
|
4471
|
-
Bitcoin: {
|
|
4472
|
-
BTC: bigint;
|
|
4473
|
-
};
|
|
4474
|
-
Ethereum: {
|
|
4475
|
-
FLIP: bigint;
|
|
4476
|
-
ETH: bigint;
|
|
4477
|
-
USDC: bigint;
|
|
4478
|
-
USDT: bigint;
|
|
4479
|
-
};
|
|
4480
|
-
Arbitrum: {
|
|
4481
|
-
ETH: bigint;
|
|
4482
|
-
USDC: bigint;
|
|
4483
|
-
};
|
|
4484
|
-
Solana: {
|
|
4485
|
-
USDC: bigint;
|
|
4486
|
-
SOL: bigint;
|
|
4487
|
-
};
|
|
4488
|
-
Assethub: {
|
|
4489
|
-
DOT: bigint;
|
|
4490
|
-
USDC: bigint;
|
|
4491
|
-
USDT: bigint;
|
|
4492
|
-
};
|
|
4493
|
-
};
|
|
4494
|
-
affiliates: {
|
|
4495
|
-
account_id: `cF${string}`;
|
|
4496
|
-
short_id: number;
|
|
4497
|
-
withdrawal_address: `0x${string}`;
|
|
4498
|
-
}[];
|
|
4499
|
-
btc_vault_deposit_address?: string | null | undefined;
|
|
4500
|
-
}, {
|
|
4501
|
-
role: "broker";
|
|
4502
|
-
flip_balance: string | number;
|
|
4503
|
-
bond: string | number;
|
|
4504
|
-
earned_fees: {
|
|
4505
|
-
Bitcoin: {
|
|
4506
|
-
BTC: string | number;
|
|
4507
|
-
};
|
|
4508
|
-
Ethereum: {
|
|
4509
|
-
FLIP: string | number;
|
|
4510
|
-
ETH: string | number;
|
|
4511
|
-
USDC: string | number;
|
|
4512
|
-
USDT: string | number;
|
|
4513
|
-
};
|
|
4514
|
-
Arbitrum: {
|
|
4515
|
-
ETH: string | number;
|
|
4516
|
-
USDC: string | number;
|
|
4517
|
-
};
|
|
4518
|
-
Solana: {
|
|
4519
|
-
USDC: string | number;
|
|
4520
|
-
SOL: string | number;
|
|
4521
|
-
};
|
|
4522
|
-
Assethub: {
|
|
4523
|
-
DOT: string | number;
|
|
4524
|
-
USDC: string | number;
|
|
4525
|
-
USDT: string | number;
|
|
4526
|
-
};
|
|
4527
|
-
};
|
|
4528
|
-
btc_vault_deposit_address?: string | null | undefined;
|
|
4529
|
-
affiliates?: {
|
|
4530
|
-
account_id: string;
|
|
4531
|
-
short_id: number;
|
|
4532
|
-
withdrawal_address: string;
|
|
4533
|
-
}[] | undefined;
|
|
4534
|
-
}>, z.ZodObject<{
|
|
4535
|
-
role: z.ZodLiteral<"liquidity_provider">;
|
|
4536
|
-
balances: z.ZodObject<Omit<{
|
|
4537
|
-
Bitcoin: z.ZodObject<{
|
|
4538
|
-
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4539
|
-
}, "strip", z.ZodTypeAny, {
|
|
4540
|
-
BTC: bigint;
|
|
4541
|
-
}, {
|
|
4542
|
-
BTC: string | number;
|
|
4543
|
-
}>;
|
|
4544
|
-
Ethereum: z.ZodObject<{
|
|
4545
|
-
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4546
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4547
|
-
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4548
|
-
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4549
|
-
}, "strip", z.ZodTypeAny, {
|
|
4550
|
-
FLIP: bigint;
|
|
4551
|
-
ETH: bigint;
|
|
4552
|
-
USDC: bigint;
|
|
4553
|
-
USDT: bigint;
|
|
4554
|
-
}, {
|
|
4555
|
-
FLIP: string | number;
|
|
4556
|
-
ETH: string | number;
|
|
4557
|
-
USDC: string | number;
|
|
4558
|
-
USDT: string | number;
|
|
4559
|
-
}>;
|
|
4560
|
-
Polkadot: z.ZodObject<{
|
|
4561
|
-
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4562
|
-
}, "strip", z.ZodTypeAny, {
|
|
4563
|
-
DOT: bigint;
|
|
4564
|
-
}, {
|
|
4565
|
-
DOT: string | number;
|
|
4566
|
-
}>;
|
|
4567
|
-
Arbitrum: z.ZodObject<{
|
|
4568
|
-
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4569
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4570
|
-
}, "strip", z.ZodTypeAny, {
|
|
4571
|
-
ETH: bigint;
|
|
4572
|
-
USDC: bigint;
|
|
4573
|
-
}, {
|
|
4574
|
-
ETH: string | number;
|
|
4575
|
-
USDC: string | number;
|
|
4576
|
-
}>;
|
|
4577
|
-
Solana: z.ZodObject<{
|
|
4578
|
-
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4579
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4580
|
-
}, "strip", z.ZodTypeAny, {
|
|
4581
|
-
USDC: bigint;
|
|
4582
|
-
SOL: bigint;
|
|
4583
|
-
}, {
|
|
4584
|
-
USDC: string | number;
|
|
4585
|
-
SOL: string | number;
|
|
4586
|
-
}>;
|
|
4587
|
-
Assethub: z.ZodObject<{
|
|
4588
|
-
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4589
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4590
|
-
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4591
|
-
}, "strip", z.ZodTypeAny, {
|
|
4592
|
-
DOT: bigint;
|
|
4593
|
-
USDC: bigint;
|
|
4594
|
-
USDT: bigint;
|
|
4595
|
-
}, {
|
|
4596
|
-
DOT: string | number;
|
|
4597
|
-
USDC: string | number;
|
|
4598
|
-
USDT: string | number;
|
|
4599
|
-
}>;
|
|
4600
|
-
}, "Polkadot">, "strip", z.ZodTypeAny, {
|
|
4601
|
-
Bitcoin: {
|
|
4602
|
-
BTC: bigint;
|
|
4603
|
-
};
|
|
4604
|
-
Ethereum: {
|
|
4605
|
-
FLIP: bigint;
|
|
4606
|
-
ETH: bigint;
|
|
4607
|
-
USDC: bigint;
|
|
4608
|
-
USDT: bigint;
|
|
4609
|
-
};
|
|
4610
|
-
Arbitrum: {
|
|
4611
|
-
ETH: bigint;
|
|
4612
|
-
USDC: bigint;
|
|
4613
|
-
};
|
|
4614
|
-
Solana: {
|
|
4615
|
-
USDC: bigint;
|
|
4616
|
-
SOL: bigint;
|
|
4617
|
-
};
|
|
4618
|
-
Assethub: {
|
|
4619
|
-
DOT: bigint;
|
|
4620
|
-
USDC: bigint;
|
|
4621
|
-
USDT: bigint;
|
|
4622
|
-
};
|
|
4623
|
-
}, {
|
|
4624
|
-
Bitcoin: {
|
|
4625
|
-
BTC: string | number;
|
|
4626
|
-
};
|
|
4627
|
-
Ethereum: {
|
|
4628
|
-
FLIP: string | number;
|
|
4629
|
-
ETH: string | number;
|
|
4630
|
-
USDC: string | number;
|
|
4631
|
-
USDT: string | number;
|
|
4632
|
-
};
|
|
4633
|
-
Arbitrum: {
|
|
4634
|
-
ETH: string | number;
|
|
4635
|
-
USDC: string | number;
|
|
4636
|
-
};
|
|
4637
|
-
Solana: {
|
|
4638
|
-
USDC: string | number;
|
|
4639
|
-
SOL: string | number;
|
|
4640
|
-
};
|
|
4641
|
-
Assethub: {
|
|
4642
|
-
DOT: string | number;
|
|
4643
|
-
USDC: string | number;
|
|
4644
|
-
USDT: string | number;
|
|
4645
|
-
};
|
|
4646
|
-
}>;
|
|
4647
|
-
refund_addresses: z.ZodObject<Omit<{
|
|
4648
|
-
Bitcoin: z.ZodNullable<z.ZodString>;
|
|
4649
|
-
Ethereum: z.ZodNullable<z.ZodString>;
|
|
4650
|
-
Polkadot: z.ZodNullable<z.ZodString>;
|
|
4651
|
-
Arbitrum: z.ZodNullable<z.ZodString>;
|
|
4652
|
-
Solana: z.ZodNullable<z.ZodString>;
|
|
4653
|
-
Assethub: z.ZodNullable<z.ZodString>;
|
|
4654
|
-
}, "Polkadot">, "strip", z.ZodTypeAny, {
|
|
4655
|
-
Bitcoin: string | null;
|
|
4656
|
-
Ethereum: string | null;
|
|
4657
|
-
Arbitrum: string | null;
|
|
4658
|
-
Solana: string | null;
|
|
4659
|
-
Assethub: string | null;
|
|
4660
|
-
}, {
|
|
4661
|
-
Bitcoin: string | null;
|
|
4662
|
-
Ethereum: string | null;
|
|
4663
|
-
Arbitrum: string | null;
|
|
4664
|
-
Solana: string | null;
|
|
4665
|
-
Assethub: string | null;
|
|
4666
|
-
}>;
|
|
4667
|
-
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4668
|
-
earned_fees: z.ZodObject<Omit<{
|
|
4669
|
-
Bitcoin: z.ZodObject<{
|
|
4670
|
-
BTC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4671
|
-
}, "strip", z.ZodTypeAny, {
|
|
4672
|
-
BTC: bigint;
|
|
4673
|
-
}, {
|
|
4674
|
-
BTC: string | number;
|
|
4675
|
-
}>;
|
|
4676
|
-
Ethereum: z.ZodObject<{
|
|
4677
|
-
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4678
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4679
|
-
FLIP: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4680
|
-
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4681
|
-
}, "strip", z.ZodTypeAny, {
|
|
4682
|
-
FLIP: bigint;
|
|
4683
|
-
ETH: bigint;
|
|
4684
|
-
USDC: bigint;
|
|
4685
|
-
USDT: bigint;
|
|
4686
|
-
}, {
|
|
4687
|
-
FLIP: string | number;
|
|
4688
|
-
ETH: string | number;
|
|
4689
|
-
USDC: string | number;
|
|
4690
|
-
USDT: string | number;
|
|
4691
|
-
}>;
|
|
4692
|
-
Polkadot: z.ZodObject<{
|
|
4693
|
-
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4694
|
-
}, "strip", z.ZodTypeAny, {
|
|
4695
|
-
DOT: bigint;
|
|
4696
|
-
}, {
|
|
4697
|
-
DOT: string | number;
|
|
4698
|
-
}>;
|
|
4699
|
-
Arbitrum: z.ZodObject<{
|
|
4700
|
-
ETH: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4701
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4702
|
-
}, "strip", z.ZodTypeAny, {
|
|
4703
|
-
ETH: bigint;
|
|
4704
|
-
USDC: bigint;
|
|
4705
|
-
}, {
|
|
4706
|
-
ETH: string | number;
|
|
4707
|
-
USDC: string | number;
|
|
4708
|
-
}>;
|
|
4709
|
-
Solana: z.ZodObject<{
|
|
4710
|
-
SOL: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4711
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4712
|
-
}, "strip", z.ZodTypeAny, {
|
|
4713
|
-
USDC: bigint;
|
|
4714
|
-
SOL: bigint;
|
|
4715
|
-
}, {
|
|
4716
|
-
USDC: string | number;
|
|
4717
|
-
SOL: string | number;
|
|
4718
|
-
}>;
|
|
4719
|
-
Assethub: z.ZodObject<{
|
|
4720
|
-
DOT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4721
|
-
USDC: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4722
|
-
USDT: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
4723
|
-
}, "strip", z.ZodTypeAny, {
|
|
4724
|
-
DOT: bigint;
|
|
4725
|
-
USDC: bigint;
|
|
4726
|
-
USDT: bigint;
|
|
4727
|
-
}, {
|
|
4728
|
-
DOT: string | number;
|
|
4729
|
-
USDC: string | number;
|
|
4730
|
-
USDT: string | number;
|
|
4731
|
-
}>;
|
|
4732
|
-
}, "Polkadot">, "strip", z.ZodTypeAny, {
|
|
4733
|
-
Bitcoin: {
|
|
4734
|
-
BTC: bigint;
|
|
4735
|
-
};
|
|
4736
|
-
Ethereum: {
|
|
4737
|
-
FLIP: bigint;
|
|
4738
|
-
ETH: bigint;
|
|
4739
|
-
USDC: bigint;
|
|
4740
|
-
USDT: bigint;
|
|
4741
|
-
};
|
|
4742
|
-
Arbitrum: {
|
|
4743
|
-
ETH: bigint;
|
|
4744
|
-
USDC: bigint;
|
|
4745
|
-
};
|
|
4746
|
-
Solana: {
|
|
4747
|
-
USDC: bigint;
|
|
4748
|
-
SOL: bigint;
|
|
4749
|
-
};
|
|
4750
|
-
Assethub: {
|
|
4751
|
-
DOT: bigint;
|
|
4752
|
-
USDC: bigint;
|
|
4753
|
-
USDT: bigint;
|
|
4754
|
-
};
|
|
4755
|
-
}, {
|
|
4756
|
-
Bitcoin: {
|
|
4757
|
-
BTC: string | number;
|
|
4758
|
-
};
|
|
4759
|
-
Ethereum: {
|
|
4760
|
-
FLIP: string | number;
|
|
4761
|
-
ETH: string | number;
|
|
4762
|
-
USDC: string | number;
|
|
4763
|
-
USDT: string | number;
|
|
4764
|
-
};
|
|
4765
|
-
Arbitrum: {
|
|
4766
|
-
ETH: string | number;
|
|
4767
|
-
USDC: string | number;
|
|
4768
|
-
};
|
|
4769
|
-
Solana: {
|
|
4770
|
-
USDC: string | number;
|
|
4771
|
-
SOL: string | number;
|
|
4772
|
-
};
|
|
4773
|
-
Assethub: {
|
|
4774
|
-
DOT: string | number;
|
|
4775
|
-
USDC: string | number;
|
|
4776
|
-
USDT: string | number;
|
|
4777
|
-
};
|
|
4778
|
-
}>;
|
|
4779
|
-
boost_balances: z.ZodObject<Omit<{
|
|
4780
|
-
Bitcoin: z.ZodObject<{
|
|
4781
|
-
BTC: z.ZodArray<z.ZodObject<{
|
|
4782
|
-
fee_tier: z.ZodNumber;
|
|
4783
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4784
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4785
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4786
|
-
is_withdrawing: z.ZodBoolean;
|
|
4787
|
-
}, "strip", z.ZodTypeAny, {
|
|
4788
|
-
fee_tier: number;
|
|
4789
|
-
total_balance: bigint;
|
|
4790
|
-
available_balance: bigint;
|
|
4791
|
-
in_use_balance: bigint;
|
|
4792
|
-
is_withdrawing: boolean;
|
|
4793
|
-
}, {
|
|
4794
|
-
fee_tier: number;
|
|
4795
|
-
total_balance: string;
|
|
4796
|
-
available_balance: string;
|
|
4797
|
-
in_use_balance: string;
|
|
4798
|
-
is_withdrawing: boolean;
|
|
4799
|
-
}>, "many">;
|
|
4800
|
-
}, "strip", z.ZodTypeAny, {
|
|
4801
|
-
BTC: {
|
|
4802
|
-
fee_tier: number;
|
|
4803
|
-
total_balance: bigint;
|
|
4804
|
-
available_balance: bigint;
|
|
4805
|
-
in_use_balance: bigint;
|
|
4806
|
-
is_withdrawing: boolean;
|
|
4807
|
-
}[];
|
|
4808
|
-
}, {
|
|
4809
|
-
BTC: {
|
|
4810
|
-
fee_tier: number;
|
|
4811
|
-
total_balance: string;
|
|
4812
|
-
available_balance: string;
|
|
4813
|
-
in_use_balance: string;
|
|
4814
|
-
is_withdrawing: boolean;
|
|
4815
|
-
}[];
|
|
4816
|
-
}>;
|
|
4817
|
-
Ethereum: z.ZodObject<{
|
|
4818
|
-
ETH: z.ZodArray<z.ZodObject<{
|
|
4819
|
-
fee_tier: z.ZodNumber;
|
|
4820
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4821
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4822
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4823
|
-
is_withdrawing: z.ZodBoolean;
|
|
4824
|
-
}, "strip", z.ZodTypeAny, {
|
|
4825
|
-
fee_tier: number;
|
|
4826
|
-
total_balance: bigint;
|
|
4827
|
-
available_balance: bigint;
|
|
4828
|
-
in_use_balance: bigint;
|
|
4829
|
-
is_withdrawing: boolean;
|
|
4830
|
-
}, {
|
|
4831
|
-
fee_tier: number;
|
|
4832
|
-
total_balance: string;
|
|
4833
|
-
available_balance: string;
|
|
4834
|
-
in_use_balance: string;
|
|
4835
|
-
is_withdrawing: boolean;
|
|
4836
|
-
}>, "many">;
|
|
4837
|
-
USDC: z.ZodArray<z.ZodObject<{
|
|
4838
|
-
fee_tier: z.ZodNumber;
|
|
4839
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4840
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4841
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4842
|
-
is_withdrawing: z.ZodBoolean;
|
|
4843
|
-
}, "strip", z.ZodTypeAny, {
|
|
4844
|
-
fee_tier: number;
|
|
4845
|
-
total_balance: bigint;
|
|
4846
|
-
available_balance: bigint;
|
|
4847
|
-
in_use_balance: bigint;
|
|
4848
|
-
is_withdrawing: boolean;
|
|
4849
|
-
}, {
|
|
4850
|
-
fee_tier: number;
|
|
4851
|
-
total_balance: string;
|
|
4852
|
-
available_balance: string;
|
|
4853
|
-
in_use_balance: string;
|
|
4854
|
-
is_withdrawing: boolean;
|
|
4855
|
-
}>, "many">;
|
|
4856
|
-
FLIP: z.ZodArray<z.ZodObject<{
|
|
4857
|
-
fee_tier: z.ZodNumber;
|
|
4858
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4859
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4860
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4861
|
-
is_withdrawing: z.ZodBoolean;
|
|
4862
|
-
}, "strip", z.ZodTypeAny, {
|
|
4863
|
-
fee_tier: number;
|
|
4864
|
-
total_balance: bigint;
|
|
4865
|
-
available_balance: bigint;
|
|
4866
|
-
in_use_balance: bigint;
|
|
4867
|
-
is_withdrawing: boolean;
|
|
4868
|
-
}, {
|
|
4869
|
-
fee_tier: number;
|
|
4870
|
-
total_balance: string;
|
|
4871
|
-
available_balance: string;
|
|
4872
|
-
in_use_balance: string;
|
|
4873
|
-
is_withdrawing: boolean;
|
|
4874
|
-
}>, "many">;
|
|
4875
|
-
USDT: z.ZodArray<z.ZodObject<{
|
|
4876
|
-
fee_tier: z.ZodNumber;
|
|
4877
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4878
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4879
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4880
|
-
is_withdrawing: z.ZodBoolean;
|
|
4881
|
-
}, "strip", z.ZodTypeAny, {
|
|
4882
|
-
fee_tier: number;
|
|
4883
|
-
total_balance: bigint;
|
|
4884
|
-
available_balance: bigint;
|
|
4885
|
-
in_use_balance: bigint;
|
|
4886
|
-
is_withdrawing: boolean;
|
|
4887
|
-
}, {
|
|
4888
|
-
fee_tier: number;
|
|
4889
|
-
total_balance: string;
|
|
4890
|
-
available_balance: string;
|
|
4891
|
-
in_use_balance: string;
|
|
4892
|
-
is_withdrawing: boolean;
|
|
4893
|
-
}>, "many">;
|
|
4894
|
-
}, "strip", z.ZodTypeAny, {
|
|
4895
|
-
FLIP: {
|
|
4896
|
-
fee_tier: number;
|
|
4897
|
-
total_balance: bigint;
|
|
4898
|
-
available_balance: bigint;
|
|
4899
|
-
in_use_balance: bigint;
|
|
4900
|
-
is_withdrawing: boolean;
|
|
4901
|
-
}[];
|
|
4902
|
-
ETH: {
|
|
4903
|
-
fee_tier: number;
|
|
4904
|
-
total_balance: bigint;
|
|
4905
|
-
available_balance: bigint;
|
|
4906
|
-
in_use_balance: bigint;
|
|
4907
|
-
is_withdrawing: boolean;
|
|
4908
|
-
}[];
|
|
4909
|
-
USDC: {
|
|
4910
|
-
fee_tier: number;
|
|
4911
|
-
total_balance: bigint;
|
|
4912
|
-
available_balance: bigint;
|
|
4913
|
-
in_use_balance: bigint;
|
|
4914
|
-
is_withdrawing: boolean;
|
|
4915
|
-
}[];
|
|
4916
|
-
USDT: {
|
|
4917
|
-
fee_tier: number;
|
|
4918
|
-
total_balance: bigint;
|
|
4919
|
-
available_balance: bigint;
|
|
4920
|
-
in_use_balance: bigint;
|
|
4921
|
-
is_withdrawing: boolean;
|
|
4922
|
-
}[];
|
|
4923
|
-
}, {
|
|
4924
|
-
FLIP: {
|
|
4925
|
-
fee_tier: number;
|
|
4926
|
-
total_balance: string;
|
|
4927
|
-
available_balance: string;
|
|
4928
|
-
in_use_balance: string;
|
|
4929
|
-
is_withdrawing: boolean;
|
|
4930
|
-
}[];
|
|
4931
|
-
ETH: {
|
|
4932
|
-
fee_tier: number;
|
|
4933
|
-
total_balance: string;
|
|
4934
|
-
available_balance: string;
|
|
4935
|
-
in_use_balance: string;
|
|
4936
|
-
is_withdrawing: boolean;
|
|
4937
|
-
}[];
|
|
4938
|
-
USDC: {
|
|
4939
|
-
fee_tier: number;
|
|
4940
|
-
total_balance: string;
|
|
4941
|
-
available_balance: string;
|
|
4942
|
-
in_use_balance: string;
|
|
4943
|
-
is_withdrawing: boolean;
|
|
4944
|
-
}[];
|
|
4945
|
-
USDT: {
|
|
4946
|
-
fee_tier: number;
|
|
4947
|
-
total_balance: string;
|
|
4948
|
-
available_balance: string;
|
|
4949
|
-
in_use_balance: string;
|
|
4950
|
-
is_withdrawing: boolean;
|
|
4951
|
-
}[];
|
|
4952
|
-
}>;
|
|
4953
|
-
Polkadot: z.ZodObject<{
|
|
4954
|
-
DOT: z.ZodArray<z.ZodObject<{
|
|
4955
|
-
fee_tier: z.ZodNumber;
|
|
4956
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4957
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4958
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4959
|
-
is_withdrawing: z.ZodBoolean;
|
|
4960
|
-
}, "strip", z.ZodTypeAny, {
|
|
4961
|
-
fee_tier: number;
|
|
4962
|
-
total_balance: bigint;
|
|
4963
|
-
available_balance: bigint;
|
|
4964
|
-
in_use_balance: bigint;
|
|
4965
|
-
is_withdrawing: boolean;
|
|
4966
|
-
}, {
|
|
4967
|
-
fee_tier: number;
|
|
4968
|
-
total_balance: string;
|
|
4969
|
-
available_balance: string;
|
|
4970
|
-
in_use_balance: string;
|
|
4971
|
-
is_withdrawing: boolean;
|
|
4972
|
-
}>, "many">;
|
|
4973
|
-
}, "strip", z.ZodTypeAny, {
|
|
4974
|
-
DOT: {
|
|
4975
|
-
fee_tier: number;
|
|
4976
|
-
total_balance: bigint;
|
|
4977
|
-
available_balance: bigint;
|
|
4978
|
-
in_use_balance: bigint;
|
|
4979
|
-
is_withdrawing: boolean;
|
|
4980
|
-
}[];
|
|
4981
|
-
}, {
|
|
4982
|
-
DOT: {
|
|
4983
|
-
fee_tier: number;
|
|
4984
|
-
total_balance: string;
|
|
4985
|
-
available_balance: string;
|
|
4986
|
-
in_use_balance: string;
|
|
4987
|
-
is_withdrawing: boolean;
|
|
4988
|
-
}[];
|
|
4989
|
-
}>;
|
|
4990
|
-
Arbitrum: z.ZodObject<{
|
|
4991
|
-
ETH: z.ZodArray<z.ZodObject<{
|
|
4992
|
-
fee_tier: z.ZodNumber;
|
|
4993
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4994
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4995
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
4996
|
-
is_withdrawing: z.ZodBoolean;
|
|
4997
|
-
}, "strip", z.ZodTypeAny, {
|
|
4998
|
-
fee_tier: number;
|
|
4999
|
-
total_balance: bigint;
|
|
5000
|
-
available_balance: bigint;
|
|
5001
|
-
in_use_balance: bigint;
|
|
5002
|
-
is_withdrawing: boolean;
|
|
5003
|
-
}, {
|
|
5004
|
-
fee_tier: number;
|
|
5005
|
-
total_balance: string;
|
|
5006
|
-
available_balance: string;
|
|
5007
|
-
in_use_balance: string;
|
|
5008
|
-
is_withdrawing: boolean;
|
|
5009
|
-
}>, "many">;
|
|
5010
|
-
USDC: z.ZodArray<z.ZodObject<{
|
|
5011
|
-
fee_tier: z.ZodNumber;
|
|
5012
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5013
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5014
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5015
|
-
is_withdrawing: z.ZodBoolean;
|
|
5016
|
-
}, "strip", z.ZodTypeAny, {
|
|
5017
|
-
fee_tier: number;
|
|
5018
|
-
total_balance: bigint;
|
|
5019
|
-
available_balance: bigint;
|
|
5020
|
-
in_use_balance: bigint;
|
|
5021
|
-
is_withdrawing: boolean;
|
|
5022
|
-
}, {
|
|
5023
|
-
fee_tier: number;
|
|
5024
|
-
total_balance: string;
|
|
5025
|
-
available_balance: string;
|
|
5026
|
-
in_use_balance: string;
|
|
5027
|
-
is_withdrawing: boolean;
|
|
5028
|
-
}>, "many">;
|
|
5029
|
-
}, "strip", z.ZodTypeAny, {
|
|
5030
|
-
ETH: {
|
|
5031
|
-
fee_tier: number;
|
|
5032
|
-
total_balance: bigint;
|
|
5033
|
-
available_balance: bigint;
|
|
5034
|
-
in_use_balance: bigint;
|
|
5035
|
-
is_withdrawing: boolean;
|
|
5036
|
-
}[];
|
|
5037
|
-
USDC: {
|
|
5038
|
-
fee_tier: number;
|
|
5039
|
-
total_balance: bigint;
|
|
5040
|
-
available_balance: bigint;
|
|
5041
|
-
in_use_balance: bigint;
|
|
5042
|
-
is_withdrawing: boolean;
|
|
5043
|
-
}[];
|
|
5044
|
-
}, {
|
|
5045
|
-
ETH: {
|
|
5046
|
-
fee_tier: number;
|
|
5047
|
-
total_balance: string;
|
|
5048
|
-
available_balance: string;
|
|
5049
|
-
in_use_balance: string;
|
|
5050
|
-
is_withdrawing: boolean;
|
|
5051
|
-
}[];
|
|
5052
|
-
USDC: {
|
|
5053
|
-
fee_tier: number;
|
|
5054
|
-
total_balance: string;
|
|
5055
|
-
available_balance: string;
|
|
5056
|
-
in_use_balance: string;
|
|
5057
|
-
is_withdrawing: boolean;
|
|
5058
|
-
}[];
|
|
5059
|
-
}>;
|
|
5060
|
-
Solana: z.ZodObject<{
|
|
5061
|
-
SOL: z.ZodArray<z.ZodObject<{
|
|
5062
|
-
fee_tier: z.ZodNumber;
|
|
5063
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5064
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5065
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5066
|
-
is_withdrawing: z.ZodBoolean;
|
|
5067
|
-
}, "strip", z.ZodTypeAny, {
|
|
5068
|
-
fee_tier: number;
|
|
5069
|
-
total_balance: bigint;
|
|
5070
|
-
available_balance: bigint;
|
|
5071
|
-
in_use_balance: bigint;
|
|
5072
|
-
is_withdrawing: boolean;
|
|
5073
|
-
}, {
|
|
5074
|
-
fee_tier: number;
|
|
5075
|
-
total_balance: string;
|
|
5076
|
-
available_balance: string;
|
|
5077
|
-
in_use_balance: string;
|
|
5078
|
-
is_withdrawing: boolean;
|
|
5079
|
-
}>, "many">;
|
|
5080
|
-
USDC: z.ZodArray<z.ZodObject<{
|
|
5081
|
-
fee_tier: z.ZodNumber;
|
|
5082
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5083
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5084
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5085
|
-
is_withdrawing: z.ZodBoolean;
|
|
5086
|
-
}, "strip", z.ZodTypeAny, {
|
|
5087
|
-
fee_tier: number;
|
|
5088
|
-
total_balance: bigint;
|
|
5089
|
-
available_balance: bigint;
|
|
5090
|
-
in_use_balance: bigint;
|
|
5091
|
-
is_withdrawing: boolean;
|
|
5092
|
-
}, {
|
|
5093
|
-
fee_tier: number;
|
|
5094
|
-
total_balance: string;
|
|
5095
|
-
available_balance: string;
|
|
5096
|
-
in_use_balance: string;
|
|
5097
|
-
is_withdrawing: boolean;
|
|
5098
|
-
}>, "many">;
|
|
5099
|
-
}, "strip", z.ZodTypeAny, {
|
|
5100
|
-
USDC: {
|
|
5101
|
-
fee_tier: number;
|
|
5102
|
-
total_balance: bigint;
|
|
5103
|
-
available_balance: bigint;
|
|
5104
|
-
in_use_balance: bigint;
|
|
5105
|
-
is_withdrawing: boolean;
|
|
5106
|
-
}[];
|
|
5107
|
-
SOL: {
|
|
5108
|
-
fee_tier: number;
|
|
5109
|
-
total_balance: bigint;
|
|
5110
|
-
available_balance: bigint;
|
|
5111
|
-
in_use_balance: bigint;
|
|
5112
|
-
is_withdrawing: boolean;
|
|
5113
|
-
}[];
|
|
5114
|
-
}, {
|
|
5115
|
-
USDC: {
|
|
5116
|
-
fee_tier: number;
|
|
5117
|
-
total_balance: string;
|
|
5118
|
-
available_balance: string;
|
|
5119
|
-
in_use_balance: string;
|
|
5120
|
-
is_withdrawing: boolean;
|
|
5121
|
-
}[];
|
|
5122
|
-
SOL: {
|
|
5123
|
-
fee_tier: number;
|
|
5124
|
-
total_balance: string;
|
|
5125
|
-
available_balance: string;
|
|
5126
|
-
in_use_balance: string;
|
|
5127
|
-
is_withdrawing: boolean;
|
|
5128
|
-
}[];
|
|
5129
|
-
}>;
|
|
5130
|
-
Assethub: z.ZodObject<{
|
|
5131
|
-
DOT: z.ZodArray<z.ZodObject<{
|
|
5132
|
-
fee_tier: z.ZodNumber;
|
|
5133
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5134
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5135
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5136
|
-
is_withdrawing: z.ZodBoolean;
|
|
5137
|
-
}, "strip", z.ZodTypeAny, {
|
|
5138
|
-
fee_tier: number;
|
|
5139
|
-
total_balance: bigint;
|
|
5140
|
-
available_balance: bigint;
|
|
5141
|
-
in_use_balance: bigint;
|
|
5142
|
-
is_withdrawing: boolean;
|
|
5143
|
-
}, {
|
|
5144
|
-
fee_tier: number;
|
|
5145
|
-
total_balance: string;
|
|
5146
|
-
available_balance: string;
|
|
5147
|
-
in_use_balance: string;
|
|
5148
|
-
is_withdrawing: boolean;
|
|
5149
|
-
}>, "many">;
|
|
5150
|
-
USDC: z.ZodArray<z.ZodObject<{
|
|
5151
|
-
fee_tier: z.ZodNumber;
|
|
5152
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5153
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5154
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5155
|
-
is_withdrawing: z.ZodBoolean;
|
|
5156
|
-
}, "strip", z.ZodTypeAny, {
|
|
5157
|
-
fee_tier: number;
|
|
5158
|
-
total_balance: bigint;
|
|
5159
|
-
available_balance: bigint;
|
|
5160
|
-
in_use_balance: bigint;
|
|
5161
|
-
is_withdrawing: boolean;
|
|
5162
|
-
}, {
|
|
5163
|
-
fee_tier: number;
|
|
5164
|
-
total_balance: string;
|
|
5165
|
-
available_balance: string;
|
|
5166
|
-
in_use_balance: string;
|
|
5167
|
-
is_withdrawing: boolean;
|
|
5168
|
-
}>, "many">;
|
|
5169
|
-
USDT: z.ZodArray<z.ZodObject<{
|
|
5170
|
-
fee_tier: z.ZodNumber;
|
|
5171
|
-
total_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5172
|
-
available_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5173
|
-
in_use_balance: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
5174
|
-
is_withdrawing: z.ZodBoolean;
|
|
5175
|
-
}, "strip", z.ZodTypeAny, {
|
|
5176
|
-
fee_tier: number;
|
|
5177
|
-
total_balance: bigint;
|
|
5178
|
-
available_balance: bigint;
|
|
5179
|
-
in_use_balance: bigint;
|
|
5180
|
-
is_withdrawing: boolean;
|
|
5181
|
-
}, {
|
|
5182
|
-
fee_tier: number;
|
|
5183
|
-
total_balance: string;
|
|
5184
|
-
available_balance: string;
|
|
5185
|
-
in_use_balance: string;
|
|
5186
|
-
is_withdrawing: boolean;
|
|
5187
|
-
}>, "many">;
|
|
5188
|
-
}, "strip", z.ZodTypeAny, {
|
|
5189
|
-
DOT: {
|
|
5190
|
-
fee_tier: number;
|
|
5191
|
-
total_balance: bigint;
|
|
5192
|
-
available_balance: bigint;
|
|
5193
|
-
in_use_balance: bigint;
|
|
5194
|
-
is_withdrawing: boolean;
|
|
5195
|
-
}[];
|
|
5196
|
-
USDC: {
|
|
5197
|
-
fee_tier: number;
|
|
5198
|
-
total_balance: bigint;
|
|
5199
|
-
available_balance: bigint;
|
|
5200
|
-
in_use_balance: bigint;
|
|
5201
|
-
is_withdrawing: boolean;
|
|
5202
|
-
}[];
|
|
5203
|
-
USDT: {
|
|
5204
|
-
fee_tier: number;
|
|
5205
|
-
total_balance: bigint;
|
|
5206
|
-
available_balance: bigint;
|
|
5207
|
-
in_use_balance: bigint;
|
|
5208
|
-
is_withdrawing: boolean;
|
|
5209
|
-
}[];
|
|
5210
|
-
}, {
|
|
5211
|
-
DOT: {
|
|
5212
|
-
fee_tier: number;
|
|
5213
|
-
total_balance: string;
|
|
5214
|
-
available_balance: string;
|
|
5215
|
-
in_use_balance: string;
|
|
5216
|
-
is_withdrawing: boolean;
|
|
5217
|
-
}[];
|
|
5218
|
-
USDC: {
|
|
5219
|
-
fee_tier: number;
|
|
5220
|
-
total_balance: string;
|
|
5221
|
-
available_balance: string;
|
|
5222
|
-
in_use_balance: string;
|
|
5223
|
-
is_withdrawing: boolean;
|
|
5224
|
-
}[];
|
|
5225
|
-
USDT: {
|
|
5226
|
-
fee_tier: number;
|
|
5227
|
-
total_balance: string;
|
|
5228
|
-
available_balance: string;
|
|
5229
|
-
in_use_balance: string;
|
|
5230
|
-
is_withdrawing: boolean;
|
|
5231
|
-
}[];
|
|
5232
|
-
}>;
|
|
5233
|
-
}, "Polkadot">, "strip", z.ZodTypeAny, {
|
|
5234
|
-
Bitcoin: {
|
|
5235
|
-
BTC: {
|
|
5236
|
-
fee_tier: number;
|
|
5237
|
-
total_balance: bigint;
|
|
5238
|
-
available_balance: bigint;
|
|
5239
|
-
in_use_balance: bigint;
|
|
5240
|
-
is_withdrawing: boolean;
|
|
5241
|
-
}[];
|
|
5242
|
-
};
|
|
5243
|
-
Ethereum: {
|
|
5244
|
-
FLIP: {
|
|
5245
|
-
fee_tier: number;
|
|
5246
|
-
total_balance: bigint;
|
|
5247
|
-
available_balance: bigint;
|
|
5248
|
-
in_use_balance: bigint;
|
|
5249
|
-
is_withdrawing: boolean;
|
|
5250
|
-
}[];
|
|
5251
|
-
ETH: {
|
|
5252
|
-
fee_tier: number;
|
|
5253
|
-
total_balance: bigint;
|
|
5254
|
-
available_balance: bigint;
|
|
5255
|
-
in_use_balance: bigint;
|
|
5256
|
-
is_withdrawing: boolean;
|
|
5257
|
-
}[];
|
|
5258
|
-
USDC: {
|
|
5259
|
-
fee_tier: number;
|
|
5260
|
-
total_balance: bigint;
|
|
5261
|
-
available_balance: bigint;
|
|
5262
|
-
in_use_balance: bigint;
|
|
5263
|
-
is_withdrawing: boolean;
|
|
5264
|
-
}[];
|
|
5265
|
-
USDT: {
|
|
5266
|
-
fee_tier: number;
|
|
5267
|
-
total_balance: bigint;
|
|
5268
|
-
available_balance: bigint;
|
|
5269
|
-
in_use_balance: bigint;
|
|
5270
|
-
is_withdrawing: boolean;
|
|
5271
|
-
}[];
|
|
5272
|
-
};
|
|
5273
|
-
Arbitrum: {
|
|
5274
|
-
ETH: {
|
|
5275
|
-
fee_tier: number;
|
|
5276
|
-
total_balance: bigint;
|
|
5277
|
-
available_balance: bigint;
|
|
5278
|
-
in_use_balance: bigint;
|
|
5279
|
-
is_withdrawing: boolean;
|
|
5280
|
-
}[];
|
|
5281
|
-
USDC: {
|
|
5282
|
-
fee_tier: number;
|
|
5283
|
-
total_balance: bigint;
|
|
5284
|
-
available_balance: bigint;
|
|
5285
|
-
in_use_balance: bigint;
|
|
5286
|
-
is_withdrawing: boolean;
|
|
5287
|
-
}[];
|
|
5288
|
-
};
|
|
5289
|
-
Solana: {
|
|
5290
|
-
USDC: {
|
|
5291
|
-
fee_tier: number;
|
|
5292
|
-
total_balance: bigint;
|
|
5293
|
-
available_balance: bigint;
|
|
5294
|
-
in_use_balance: bigint;
|
|
5295
|
-
is_withdrawing: boolean;
|
|
5296
|
-
}[];
|
|
5297
|
-
SOL: {
|
|
5298
|
-
fee_tier: number;
|
|
5299
|
-
total_balance: bigint;
|
|
5300
|
-
available_balance: bigint;
|
|
5301
|
-
in_use_balance: bigint;
|
|
5302
|
-
is_withdrawing: boolean;
|
|
5303
|
-
}[];
|
|
5304
|
-
};
|
|
5305
|
-
Assethub: {
|
|
5306
|
-
DOT: {
|
|
5307
|
-
fee_tier: number;
|
|
5308
|
-
total_balance: bigint;
|
|
5309
|
-
available_balance: bigint;
|
|
5310
|
-
in_use_balance: bigint;
|
|
5311
|
-
is_withdrawing: boolean;
|
|
5312
|
-
}[];
|
|
5313
|
-
USDC: {
|
|
5314
|
-
fee_tier: number;
|
|
5315
|
-
total_balance: bigint;
|
|
5316
|
-
available_balance: bigint;
|
|
5317
|
-
in_use_balance: bigint;
|
|
5318
|
-
is_withdrawing: boolean;
|
|
5319
|
-
}[];
|
|
5320
|
-
USDT: {
|
|
5321
|
-
fee_tier: number;
|
|
5322
|
-
total_balance: bigint;
|
|
5323
|
-
available_balance: bigint;
|
|
5324
|
-
in_use_balance: bigint;
|
|
5325
|
-
is_withdrawing: boolean;
|
|
5326
|
-
}[];
|
|
5327
|
-
};
|
|
5328
|
-
}, {
|
|
5329
|
-
Bitcoin: {
|
|
5330
|
-
BTC: {
|
|
5331
|
-
fee_tier: number;
|
|
5332
|
-
total_balance: string;
|
|
5333
|
-
available_balance: string;
|
|
5334
|
-
in_use_balance: string;
|
|
5335
|
-
is_withdrawing: boolean;
|
|
5336
|
-
}[];
|
|
5337
|
-
};
|
|
5338
|
-
Ethereum: {
|
|
5339
|
-
FLIP: {
|
|
5340
|
-
fee_tier: number;
|
|
5341
|
-
total_balance: string;
|
|
5342
|
-
available_balance: string;
|
|
5343
|
-
in_use_balance: string;
|
|
5344
|
-
is_withdrawing: boolean;
|
|
5345
|
-
}[];
|
|
5346
|
-
ETH: {
|
|
5347
|
-
fee_tier: number;
|
|
5348
|
-
total_balance: string;
|
|
5349
|
-
available_balance: string;
|
|
5350
|
-
in_use_balance: string;
|
|
5351
|
-
is_withdrawing: boolean;
|
|
5352
|
-
}[];
|
|
5353
|
-
USDC: {
|
|
5354
|
-
fee_tier: number;
|
|
5355
|
-
total_balance: string;
|
|
5356
|
-
available_balance: string;
|
|
5357
|
-
in_use_balance: string;
|
|
5358
|
-
is_withdrawing: boolean;
|
|
5359
|
-
}[];
|
|
5360
|
-
USDT: {
|
|
5361
|
-
fee_tier: number;
|
|
5362
|
-
total_balance: string;
|
|
5363
|
-
available_balance: string;
|
|
5364
|
-
in_use_balance: string;
|
|
5365
|
-
is_withdrawing: boolean;
|
|
5366
|
-
}[];
|
|
5367
|
-
};
|
|
5368
|
-
Arbitrum: {
|
|
5369
|
-
ETH: {
|
|
5370
|
-
fee_tier: number;
|
|
5371
|
-
total_balance: string;
|
|
5372
|
-
available_balance: string;
|
|
5373
|
-
in_use_balance: string;
|
|
5374
|
-
is_withdrawing: boolean;
|
|
5375
|
-
}[];
|
|
5376
|
-
USDC: {
|
|
5377
|
-
fee_tier: number;
|
|
5378
|
-
total_balance: string;
|
|
5379
|
-
available_balance: string;
|
|
5380
|
-
in_use_balance: string;
|
|
5381
|
-
is_withdrawing: boolean;
|
|
5382
|
-
}[];
|
|
5383
|
-
};
|
|
5384
|
-
Solana: {
|
|
5385
|
-
USDC: {
|
|
5386
|
-
fee_tier: number;
|
|
5387
|
-
total_balance: string;
|
|
5388
|
-
available_balance: string;
|
|
5389
|
-
in_use_balance: string;
|
|
5390
|
-
is_withdrawing: boolean;
|
|
5391
|
-
}[];
|
|
5392
|
-
SOL: {
|
|
5393
|
-
fee_tier: number;
|
|
5394
|
-
total_balance: string;
|
|
5395
|
-
available_balance: string;
|
|
5396
|
-
in_use_balance: string;
|
|
5397
|
-
is_withdrawing: boolean;
|
|
5398
|
-
}[];
|
|
5399
|
-
};
|
|
5400
|
-
Assethub: {
|
|
5401
|
-
DOT: {
|
|
5402
|
-
fee_tier: number;
|
|
5403
|
-
total_balance: string;
|
|
5404
|
-
available_balance: string;
|
|
5405
|
-
in_use_balance: string;
|
|
5406
|
-
is_withdrawing: boolean;
|
|
5407
|
-
}[];
|
|
5408
|
-
USDC: {
|
|
5409
|
-
fee_tier: number;
|
|
5410
|
-
total_balance: string;
|
|
5411
|
-
available_balance: string;
|
|
5412
|
-
in_use_balance: string;
|
|
5413
|
-
is_withdrawing: boolean;
|
|
5414
|
-
}[];
|
|
5415
|
-
USDT: {
|
|
5416
|
-
fee_tier: number;
|
|
5417
|
-
total_balance: string;
|
|
5418
|
-
available_balance: string;
|
|
5419
|
-
in_use_balance: string;
|
|
5420
|
-
is_withdrawing: boolean;
|
|
5421
|
-
}[];
|
|
5422
|
-
};
|
|
5423
|
-
}>;
|
|
5424
|
-
}, "strip", z.ZodTypeAny, {
|
|
5425
|
-
role: "liquidity_provider";
|
|
5426
|
-
flip_balance: bigint;
|
|
5427
|
-
earned_fees: {
|
|
5428
|
-
Bitcoin: {
|
|
5429
|
-
BTC: bigint;
|
|
5430
|
-
};
|
|
5431
|
-
Ethereum: {
|
|
5432
|
-
FLIP: bigint;
|
|
5433
|
-
ETH: bigint;
|
|
5434
|
-
USDC: bigint;
|
|
5435
|
-
USDT: bigint;
|
|
5436
|
-
};
|
|
5437
|
-
Arbitrum: {
|
|
5438
|
-
ETH: bigint;
|
|
5439
|
-
USDC: bigint;
|
|
5440
|
-
};
|
|
5441
|
-
Solana: {
|
|
5442
|
-
USDC: bigint;
|
|
5443
|
-
SOL: bigint;
|
|
5444
|
-
};
|
|
5445
|
-
Assethub: {
|
|
5446
|
-
DOT: bigint;
|
|
5447
|
-
USDC: bigint;
|
|
5448
|
-
USDT: bigint;
|
|
5449
|
-
};
|
|
5450
|
-
};
|
|
5451
|
-
balances: {
|
|
5452
|
-
Bitcoin: {
|
|
5453
|
-
BTC: bigint;
|
|
5454
|
-
};
|
|
5455
|
-
Ethereum: {
|
|
5456
|
-
FLIP: bigint;
|
|
5457
|
-
ETH: bigint;
|
|
5458
|
-
USDC: bigint;
|
|
5459
|
-
USDT: bigint;
|
|
5460
|
-
};
|
|
5461
|
-
Arbitrum: {
|
|
5462
|
-
ETH: bigint;
|
|
5463
|
-
USDC: bigint;
|
|
5464
|
-
};
|
|
5465
|
-
Solana: {
|
|
5466
|
-
USDC: bigint;
|
|
5467
|
-
SOL: bigint;
|
|
5468
|
-
};
|
|
5469
|
-
Assethub: {
|
|
5470
|
-
DOT: bigint;
|
|
5471
|
-
USDC: bigint;
|
|
5472
|
-
USDT: bigint;
|
|
5473
|
-
};
|
|
5474
|
-
};
|
|
5475
|
-
refund_addresses: {
|
|
5476
|
-
Bitcoin: string | null;
|
|
5477
|
-
Ethereum: string | null;
|
|
5478
|
-
Arbitrum: string | null;
|
|
5479
|
-
Solana: string | null;
|
|
5480
|
-
Assethub: string | null;
|
|
5481
|
-
};
|
|
5482
|
-
boost_balances: {
|
|
5483
|
-
Bitcoin: {
|
|
5484
|
-
BTC: {
|
|
5485
|
-
fee_tier: number;
|
|
5486
|
-
total_balance: bigint;
|
|
5487
|
-
available_balance: bigint;
|
|
5488
|
-
in_use_balance: bigint;
|
|
5489
|
-
is_withdrawing: boolean;
|
|
5490
|
-
}[];
|
|
5491
|
-
};
|
|
5492
|
-
Ethereum: {
|
|
5493
|
-
FLIP: {
|
|
5494
|
-
fee_tier: number;
|
|
5495
|
-
total_balance: bigint;
|
|
5496
|
-
available_balance: bigint;
|
|
5497
|
-
in_use_balance: bigint;
|
|
5498
|
-
is_withdrawing: boolean;
|
|
5499
|
-
}[];
|
|
5500
|
-
ETH: {
|
|
5501
|
-
fee_tier: number;
|
|
5502
|
-
total_balance: bigint;
|
|
5503
|
-
available_balance: bigint;
|
|
5504
|
-
in_use_balance: bigint;
|
|
5505
|
-
is_withdrawing: boolean;
|
|
5506
|
-
}[];
|
|
5507
|
-
USDC: {
|
|
5508
|
-
fee_tier: number;
|
|
5509
|
-
total_balance: bigint;
|
|
5510
|
-
available_balance: bigint;
|
|
5511
|
-
in_use_balance: bigint;
|
|
5512
|
-
is_withdrawing: boolean;
|
|
5513
|
-
}[];
|
|
5514
|
-
USDT: {
|
|
5515
|
-
fee_tier: number;
|
|
5516
|
-
total_balance: bigint;
|
|
5517
|
-
available_balance: bigint;
|
|
5518
|
-
in_use_balance: bigint;
|
|
5519
|
-
is_withdrawing: boolean;
|
|
5520
|
-
}[];
|
|
5521
|
-
};
|
|
5522
|
-
Arbitrum: {
|
|
5523
|
-
ETH: {
|
|
5524
|
-
fee_tier: number;
|
|
5525
|
-
total_balance: bigint;
|
|
5526
|
-
available_balance: bigint;
|
|
5527
|
-
in_use_balance: bigint;
|
|
5528
|
-
is_withdrawing: boolean;
|
|
5529
|
-
}[];
|
|
5530
|
-
USDC: {
|
|
5531
|
-
fee_tier: number;
|
|
5532
|
-
total_balance: bigint;
|
|
5533
|
-
available_balance: bigint;
|
|
5534
|
-
in_use_balance: bigint;
|
|
5535
|
-
is_withdrawing: boolean;
|
|
5536
|
-
}[];
|
|
5537
|
-
};
|
|
5538
|
-
Solana: {
|
|
5539
|
-
USDC: {
|
|
5540
|
-
fee_tier: number;
|
|
5541
|
-
total_balance: bigint;
|
|
5542
|
-
available_balance: bigint;
|
|
5543
|
-
in_use_balance: bigint;
|
|
5544
|
-
is_withdrawing: boolean;
|
|
5545
|
-
}[];
|
|
5546
|
-
SOL: {
|
|
5547
|
-
fee_tier: number;
|
|
5548
|
-
total_balance: bigint;
|
|
5549
|
-
available_balance: bigint;
|
|
5550
|
-
in_use_balance: bigint;
|
|
5551
|
-
is_withdrawing: boolean;
|
|
5552
|
-
}[];
|
|
5553
|
-
};
|
|
5554
|
-
Assethub: {
|
|
5555
|
-
DOT: {
|
|
5556
|
-
fee_tier: number;
|
|
5557
|
-
total_balance: bigint;
|
|
5558
|
-
available_balance: bigint;
|
|
5559
|
-
in_use_balance: bigint;
|
|
5560
|
-
is_withdrawing: boolean;
|
|
5561
|
-
}[];
|
|
5562
|
-
USDC: {
|
|
5563
|
-
fee_tier: number;
|
|
5564
|
-
total_balance: bigint;
|
|
5565
|
-
available_balance: bigint;
|
|
5566
|
-
in_use_balance: bigint;
|
|
5567
|
-
is_withdrawing: boolean;
|
|
5568
|
-
}[];
|
|
5569
|
-
USDT: {
|
|
5570
|
-
fee_tier: number;
|
|
5571
|
-
total_balance: bigint;
|
|
5572
|
-
available_balance: bigint;
|
|
5573
|
-
in_use_balance: bigint;
|
|
5574
|
-
is_withdrawing: boolean;
|
|
5575
|
-
}[];
|
|
5576
|
-
};
|
|
5577
|
-
};
|
|
5578
|
-
}, {
|
|
5579
|
-
role: "liquidity_provider";
|
|
5580
|
-
flip_balance: string | number;
|
|
5581
|
-
earned_fees: {
|
|
5582
|
-
Bitcoin: {
|
|
5583
|
-
BTC: string | number;
|
|
5584
|
-
};
|
|
5585
|
-
Ethereum: {
|
|
5586
|
-
FLIP: string | number;
|
|
5587
|
-
ETH: string | number;
|
|
5588
|
-
USDC: string | number;
|
|
5589
|
-
USDT: string | number;
|
|
5590
|
-
};
|
|
5591
|
-
Arbitrum: {
|
|
5592
|
-
ETH: string | number;
|
|
5593
|
-
USDC: string | number;
|
|
5594
|
-
};
|
|
5595
|
-
Solana: {
|
|
5596
|
-
USDC: string | number;
|
|
5597
|
-
SOL: string | number;
|
|
5598
|
-
};
|
|
5599
|
-
Assethub: {
|
|
5600
|
-
DOT: string | number;
|
|
5601
|
-
USDC: string | number;
|
|
5602
|
-
USDT: string | number;
|
|
5603
|
-
};
|
|
5604
|
-
};
|
|
5605
|
-
balances: {
|
|
5606
|
-
Bitcoin: {
|
|
5607
|
-
BTC: string | number;
|
|
5608
|
-
};
|
|
5609
|
-
Ethereum: {
|
|
5610
|
-
FLIP: string | number;
|
|
5611
|
-
ETH: string | number;
|
|
5612
|
-
USDC: string | number;
|
|
5613
|
-
USDT: string | number;
|
|
5614
|
-
};
|
|
5615
|
-
Arbitrum: {
|
|
5616
|
-
ETH: string | number;
|
|
5617
|
-
USDC: string | number;
|
|
5618
|
-
};
|
|
5619
|
-
Solana: {
|
|
5620
|
-
USDC: string | number;
|
|
5621
|
-
SOL: string | number;
|
|
5622
|
-
};
|
|
5623
|
-
Assethub: {
|
|
5624
|
-
DOT: string | number;
|
|
5625
|
-
USDC: string | number;
|
|
5626
|
-
USDT: string | number;
|
|
5627
|
-
};
|
|
5628
|
-
};
|
|
5629
|
-
refund_addresses: {
|
|
5630
|
-
Bitcoin: string | null;
|
|
5631
|
-
Ethereum: string | null;
|
|
5632
|
-
Arbitrum: string | null;
|
|
5633
|
-
Solana: string | null;
|
|
5634
|
-
Assethub: string | null;
|
|
5635
|
-
};
|
|
5636
|
-
boost_balances: {
|
|
5637
|
-
Bitcoin: {
|
|
5638
|
-
BTC: {
|
|
5639
|
-
fee_tier: number;
|
|
5640
|
-
total_balance: string;
|
|
5641
|
-
available_balance: string;
|
|
5642
|
-
in_use_balance: string;
|
|
5643
|
-
is_withdrawing: boolean;
|
|
5644
|
-
}[];
|
|
5645
|
-
};
|
|
5646
|
-
Ethereum: {
|
|
5647
|
-
FLIP: {
|
|
5648
|
-
fee_tier: number;
|
|
5649
|
-
total_balance: string;
|
|
5650
|
-
available_balance: string;
|
|
5651
|
-
in_use_balance: string;
|
|
5652
|
-
is_withdrawing: boolean;
|
|
5653
|
-
}[];
|
|
5654
|
-
ETH: {
|
|
5655
|
-
fee_tier: number;
|
|
5656
|
-
total_balance: string;
|
|
5657
|
-
available_balance: string;
|
|
5658
|
-
in_use_balance: string;
|
|
5659
|
-
is_withdrawing: boolean;
|
|
5660
|
-
}[];
|
|
5661
|
-
USDC: {
|
|
5662
|
-
fee_tier: number;
|
|
5663
|
-
total_balance: string;
|
|
5664
|
-
available_balance: string;
|
|
5665
|
-
in_use_balance: string;
|
|
5666
|
-
is_withdrawing: boolean;
|
|
5667
|
-
}[];
|
|
5668
|
-
USDT: {
|
|
5669
|
-
fee_tier: number;
|
|
5670
|
-
total_balance: string;
|
|
5671
|
-
available_balance: string;
|
|
5672
|
-
in_use_balance: string;
|
|
5673
|
-
is_withdrawing: boolean;
|
|
5674
|
-
}[];
|
|
4100
|
+
BTC: string | number;
|
|
4101
|
+
};
|
|
4102
|
+
Ethereum: {
|
|
4103
|
+
FLIP: string | number;
|
|
4104
|
+
ETH: string | number;
|
|
4105
|
+
USDC: string | number;
|
|
4106
|
+
USDT: string | number;
|
|
5675
4107
|
};
|
|
5676
4108
|
Arbitrum: {
|
|
5677
|
-
ETH:
|
|
5678
|
-
|
|
5679
|
-
total_balance: string;
|
|
5680
|
-
available_balance: string;
|
|
5681
|
-
in_use_balance: string;
|
|
5682
|
-
is_withdrawing: boolean;
|
|
5683
|
-
}[];
|
|
5684
|
-
USDC: {
|
|
5685
|
-
fee_tier: number;
|
|
5686
|
-
total_balance: string;
|
|
5687
|
-
available_balance: string;
|
|
5688
|
-
in_use_balance: string;
|
|
5689
|
-
is_withdrawing: boolean;
|
|
5690
|
-
}[];
|
|
4109
|
+
ETH: string | number;
|
|
4110
|
+
USDC: string | number;
|
|
5691
4111
|
};
|
|
5692
4112
|
Solana: {
|
|
5693
|
-
USDC:
|
|
5694
|
-
|
|
5695
|
-
total_balance: string;
|
|
5696
|
-
available_balance: string;
|
|
5697
|
-
in_use_balance: string;
|
|
5698
|
-
is_withdrawing: boolean;
|
|
5699
|
-
}[];
|
|
5700
|
-
SOL: {
|
|
5701
|
-
fee_tier: number;
|
|
5702
|
-
total_balance: string;
|
|
5703
|
-
available_balance: string;
|
|
5704
|
-
in_use_balance: string;
|
|
5705
|
-
is_withdrawing: boolean;
|
|
5706
|
-
}[];
|
|
4113
|
+
USDC: string | number;
|
|
4114
|
+
SOL: string | number;
|
|
5707
4115
|
};
|
|
5708
4116
|
Assethub: {
|
|
5709
|
-
DOT:
|
|
5710
|
-
|
|
5711
|
-
|
|
5712
|
-
available_balance: string;
|
|
5713
|
-
in_use_balance: string;
|
|
5714
|
-
is_withdrawing: boolean;
|
|
5715
|
-
}[];
|
|
5716
|
-
USDC: {
|
|
5717
|
-
fee_tier: number;
|
|
5718
|
-
total_balance: string;
|
|
5719
|
-
available_balance: string;
|
|
5720
|
-
in_use_balance: string;
|
|
5721
|
-
is_withdrawing: boolean;
|
|
5722
|
-
}[];
|
|
5723
|
-
USDT: {
|
|
5724
|
-
fee_tier: number;
|
|
5725
|
-
total_balance: string;
|
|
5726
|
-
available_balance: string;
|
|
5727
|
-
in_use_balance: string;
|
|
5728
|
-
is_withdrawing: boolean;
|
|
5729
|
-
}[];
|
|
4117
|
+
DOT: string | number;
|
|
4118
|
+
USDC: string | number;
|
|
4119
|
+
USDT: string | number;
|
|
5730
4120
|
};
|
|
5731
4121
|
};
|
|
5732
|
-
}>, z.ZodObject<{
|
|
5733
|
-
role: z.ZodLiteral<"validator">;
|
|
5734
|
-
flip_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5735
|
-
bond: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5736
|
-
last_heartbeat: z.ZodNumber;
|
|
5737
|
-
reputation_points: z.ZodNumber;
|
|
5738
|
-
keyholder_epochs: z.ZodArray<z.ZodNumber, "many">;
|
|
5739
|
-
is_current_authority: z.ZodBoolean;
|
|
5740
|
-
is_current_backup: z.ZodBoolean;
|
|
5741
|
-
is_qualified: z.ZodBoolean;
|
|
5742
|
-
is_online: z.ZodBoolean;
|
|
5743
|
-
is_bidding: z.ZodBoolean;
|
|
5744
|
-
bound_redeem_address: z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
|
|
5745
|
-
apy_bp: z.ZodNullable<z.ZodNumber>;
|
|
5746
|
-
restricted_balances: z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>>;
|
|
5747
|
-
estimated_redeemable_balance: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
5748
|
-
operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
|
|
5749
|
-
}, "strip", z.ZodTypeAny, {
|
|
5750
|
-
role: "validator";
|
|
5751
|
-
flip_balance: bigint;
|
|
5752
|
-
bond: bigint;
|
|
5753
|
-
estimated_redeemable_balance: bigint;
|
|
5754
|
-
bound_redeem_address: `0x${string}` | null;
|
|
5755
|
-
restricted_balances: Partial<Record<`0x${string}`, bigint>>;
|
|
5756
|
-
last_heartbeat: number;
|
|
5757
|
-
reputation_points: number;
|
|
5758
|
-
keyholder_epochs: number[];
|
|
5759
|
-
is_current_authority: boolean;
|
|
5760
|
-
is_current_backup: boolean;
|
|
5761
|
-
is_qualified: boolean;
|
|
5762
|
-
is_online: boolean;
|
|
5763
|
-
is_bidding: boolean;
|
|
5764
|
-
apy_bp: number | null;
|
|
5765
|
-
operator?: `cF${string}` | undefined;
|
|
5766
|
-
}, {
|
|
5767
|
-
role: "validator";
|
|
5768
|
-
flip_balance: string | number;
|
|
5769
4122
|
bond: string | number;
|
|
5770
4123
|
estimated_redeemable_balance: string | number;
|
|
5771
|
-
bound_redeem_address: string | null;
|
|
5772
|
-
restricted_balances: Record<string, string | number>;
|
|
5773
4124
|
last_heartbeat: number;
|
|
5774
4125
|
reputation_points: number;
|
|
5775
4126
|
keyholder_epochs: number[];
|
|
@@ -5780,7 +4131,18 @@ declare const rpcResult: {
|
|
|
5780
4131
|
is_bidding: boolean;
|
|
5781
4132
|
apy_bp: number | null;
|
|
5782
4133
|
operator?: string | undefined;
|
|
5783
|
-
|
|
4134
|
+
vanity_name?: string | undefined;
|
|
4135
|
+
bound_redeem_address?: string | undefined;
|
|
4136
|
+
restricted_balances?: Record<string, string | number> | undefined;
|
|
4137
|
+
current_delegation_status?: {
|
|
4138
|
+
operator: string;
|
|
4139
|
+
bid: string | number;
|
|
4140
|
+
} | undefined;
|
|
4141
|
+
upcoming_delegation_status?: {
|
|
4142
|
+
operator: string;
|
|
4143
|
+
bid: string | number;
|
|
4144
|
+
} | undefined;
|
|
4145
|
+
}>;
|
|
5784
4146
|
readonly cf_pool_depth: z.ZodNullable<z.ZodObject<{
|
|
5785
4147
|
asks: z.ZodObject<{
|
|
5786
4148
|
limit_orders: z.ZodObject<{
|
|
@@ -6026,11 +4388,11 @@ declare const rpcResult: {
|
|
|
6026
4388
|
tier: z.ZodNumber;
|
|
6027
4389
|
available_amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
6028
4390
|
}, "strip", z.ZodTypeAny, {
|
|
6029
|
-
tier: number;
|
|
6030
4391
|
available_amount: bigint;
|
|
6031
|
-
}, {
|
|
6032
4392
|
tier: number;
|
|
4393
|
+
}, {
|
|
6033
4394
|
available_amount: string;
|
|
4395
|
+
tier: number;
|
|
6034
4396
|
}>>, "many">;
|
|
6035
4397
|
readonly cf_environment: z.ZodObject<{
|
|
6036
4398
|
ingress_egress: z.ZodEffects<z.ZodObject<{
|
|
@@ -15222,6 +13584,8 @@ declare const rpcResult: {
|
|
|
15222
13584
|
asset: "USDT";
|
|
15223
13585
|
}>]>;
|
|
15224
13586
|
}, "strip", z.ZodTypeAny, {
|
|
13587
|
+
buy: bigint | null;
|
|
13588
|
+
sell: bigint | null;
|
|
15225
13589
|
quote_asset: {
|
|
15226
13590
|
chain: "Bitcoin";
|
|
15227
13591
|
asset: "BTC";
|
|
@@ -15262,8 +13626,6 @@ declare const rpcResult: {
|
|
|
15262
13626
|
chain: "Assethub";
|
|
15263
13627
|
asset: "USDT";
|
|
15264
13628
|
};
|
|
15265
|
-
sell: bigint | null;
|
|
15266
|
-
buy: bigint | null;
|
|
15267
13629
|
range_order: bigint;
|
|
15268
13630
|
base_asset: {
|
|
15269
13631
|
chain: "Bitcoin";
|
|
@@ -15306,6 +13668,8 @@ declare const rpcResult: {
|
|
|
15306
13668
|
asset: "USDT";
|
|
15307
13669
|
};
|
|
15308
13670
|
}, {
|
|
13671
|
+
buy: string | number | null;
|
|
13672
|
+
sell: string | number | null;
|
|
15309
13673
|
quote_asset: {
|
|
15310
13674
|
chain: "Bitcoin";
|
|
15311
13675
|
asset: "BTC";
|
|
@@ -15346,8 +13710,6 @@ declare const rpcResult: {
|
|
|
15346
13710
|
chain: "Assethub";
|
|
15347
13711
|
asset: "USDT";
|
|
15348
13712
|
};
|
|
15349
|
-
sell: string | number | null;
|
|
15350
|
-
buy: string | number | null;
|
|
15351
13713
|
range_order: string | number;
|
|
15352
13714
|
base_asset: {
|
|
15353
13715
|
chain: "Bitcoin";
|
|
@@ -22515,11 +20877,11 @@ declare const rpcResult: {
|
|
|
22515
20877
|
account_id: z.ZodString;
|
|
22516
20878
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
22517
20879
|
}, "strip", z.ZodTypeAny, {
|
|
22518
|
-
amount: bigint;
|
|
22519
20880
|
account_id: string;
|
|
20881
|
+
amount: bigint;
|
|
22520
20882
|
}, {
|
|
22521
|
-
amount: string;
|
|
22522
20883
|
account_id: string;
|
|
20884
|
+
amount: string;
|
|
22523
20885
|
}>, "many">;
|
|
22524
20886
|
deposits_pending_finalization: z.ZodArray<z.ZodObject<{
|
|
22525
20887
|
deposit_id: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
@@ -22527,23 +20889,23 @@ declare const rpcResult: {
|
|
|
22527
20889
|
account_id: z.ZodString;
|
|
22528
20890
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
22529
20891
|
}, "strip", z.ZodTypeAny, {
|
|
22530
|
-
amount: bigint;
|
|
22531
20892
|
account_id: string;
|
|
20893
|
+
amount: bigint;
|
|
22532
20894
|
}, {
|
|
22533
|
-
amount: string;
|
|
22534
20895
|
account_id: string;
|
|
20896
|
+
amount: string;
|
|
22535
20897
|
}>, "many">;
|
|
22536
20898
|
}, "strip", z.ZodTypeAny, {
|
|
22537
20899
|
deposit_id: bigint;
|
|
22538
20900
|
owed_amounts: {
|
|
22539
|
-
amount: bigint;
|
|
22540
20901
|
account_id: string;
|
|
20902
|
+
amount: bigint;
|
|
22541
20903
|
}[];
|
|
22542
20904
|
}, {
|
|
22543
20905
|
deposit_id: string | number;
|
|
22544
20906
|
owed_amounts: {
|
|
22545
|
-
amount: string;
|
|
22546
20907
|
account_id: string;
|
|
20908
|
+
amount: string;
|
|
22547
20909
|
}[];
|
|
22548
20910
|
}>, "many">;
|
|
22549
20911
|
pending_withdrawals: z.ZodArray<z.ZodObject<{
|
|
@@ -22560,14 +20922,14 @@ declare const rpcResult: {
|
|
|
22560
20922
|
}, "strip", z.ZodTypeAny, {
|
|
22561
20923
|
fee_tier: number;
|
|
22562
20924
|
available_amounts: {
|
|
22563
|
-
amount: bigint;
|
|
22564
20925
|
account_id: string;
|
|
20926
|
+
amount: bigint;
|
|
22565
20927
|
}[];
|
|
22566
20928
|
deposits_pending_finalization: {
|
|
22567
20929
|
deposit_id: bigint;
|
|
22568
20930
|
owed_amounts: {
|
|
22569
|
-
amount: bigint;
|
|
22570
20931
|
account_id: string;
|
|
20932
|
+
amount: bigint;
|
|
22571
20933
|
}[];
|
|
22572
20934
|
}[];
|
|
22573
20935
|
pending_withdrawals: {
|
|
@@ -22578,14 +20940,14 @@ declare const rpcResult: {
|
|
|
22578
20940
|
}, {
|
|
22579
20941
|
fee_tier: number;
|
|
22580
20942
|
available_amounts: {
|
|
22581
|
-
amount: string;
|
|
22582
20943
|
account_id: string;
|
|
20944
|
+
amount: string;
|
|
22583
20945
|
}[];
|
|
22584
20946
|
deposits_pending_finalization: {
|
|
22585
20947
|
deposit_id: string | number;
|
|
22586
20948
|
owed_amounts: {
|
|
22587
|
-
amount: string;
|
|
22588
20949
|
account_id: string;
|
|
20950
|
+
amount: string;
|
|
22589
20951
|
}[];
|
|
22590
20952
|
}[];
|
|
22591
20953
|
pending_withdrawals: {
|
|
@@ -22719,22 +21081,22 @@ declare const rpcResult: {
|
|
|
22719
21081
|
account_id: z.ZodString;
|
|
22720
21082
|
amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
|
|
22721
21083
|
}, "strip", z.ZodTypeAny, {
|
|
22722
|
-
amount: bigint;
|
|
22723
21084
|
account_id: string;
|
|
21085
|
+
amount: bigint;
|
|
22724
21086
|
}, {
|
|
22725
|
-
amount: string;
|
|
22726
21087
|
account_id: string;
|
|
21088
|
+
amount: string;
|
|
22727
21089
|
}>, "many">;
|
|
22728
21090
|
}, "strip", z.ZodTypeAny, {
|
|
22729
21091
|
fees: {
|
|
22730
|
-
amount: bigint;
|
|
22731
21092
|
account_id: string;
|
|
21093
|
+
amount: bigint;
|
|
22732
21094
|
}[];
|
|
22733
21095
|
deposit_id: bigint;
|
|
22734
21096
|
}, {
|
|
22735
21097
|
fees: {
|
|
22736
|
-
amount: string;
|
|
22737
21098
|
account_id: string;
|
|
21099
|
+
amount: string;
|
|
22738
21100
|
}[];
|
|
22739
21101
|
deposit_id: number;
|
|
22740
21102
|
}>, "many">;
|
|
@@ -22742,8 +21104,8 @@ declare const rpcResult: {
|
|
|
22742
21104
|
fee_tier: number;
|
|
22743
21105
|
pending_fees: {
|
|
22744
21106
|
fees: {
|
|
22745
|
-
amount: bigint;
|
|
22746
21107
|
account_id: string;
|
|
21108
|
+
amount: bigint;
|
|
22747
21109
|
}[];
|
|
22748
21110
|
deposit_id: bigint;
|
|
22749
21111
|
}[];
|
|
@@ -22751,8 +21113,8 @@ declare const rpcResult: {
|
|
|
22751
21113
|
fee_tier: number;
|
|
22752
21114
|
pending_fees: {
|
|
22753
21115
|
fees: {
|
|
22754
|
-
amount: string;
|
|
22755
21116
|
account_id: string;
|
|
21117
|
+
amount: string;
|
|
22756
21118
|
}[];
|
|
22757
21119
|
deposit_id: number;
|
|
22758
21120
|
}[];
|
|
@@ -25334,18 +23696,6 @@ declare const rpcResult: {
|
|
|
25334
23696
|
deposits_enabled: boolean;
|
|
25335
23697
|
}>;
|
|
25336
23698
|
}, "strip", z.ZodTypeAny, {
|
|
25337
|
-
swapping: {
|
|
25338
|
-
swaps_enabled: boolean;
|
|
25339
|
-
withdrawals_enabled: boolean;
|
|
25340
|
-
broker_registration_enabled: boolean;
|
|
25341
|
-
};
|
|
25342
|
-
funding: {
|
|
25343
|
-
redeem_enabled: boolean;
|
|
25344
|
-
};
|
|
25345
|
-
pools: {
|
|
25346
|
-
range_order_update_enabled: boolean;
|
|
25347
|
-
limit_order_update_enabled: boolean;
|
|
25348
|
-
};
|
|
25349
23699
|
asset_balances: {
|
|
25350
23700
|
reconciliation_enabled: boolean;
|
|
25351
23701
|
};
|
|
@@ -25359,6 +23709,18 @@ declare const rpcResult: {
|
|
|
25359
23709
|
start_bidding_enabled: boolean;
|
|
25360
23710
|
stop_bidding_enabled: boolean;
|
|
25361
23711
|
};
|
|
23712
|
+
swapping: {
|
|
23713
|
+
swaps_enabled: boolean;
|
|
23714
|
+
withdrawals_enabled: boolean;
|
|
23715
|
+
broker_registration_enabled: boolean;
|
|
23716
|
+
};
|
|
23717
|
+
funding: {
|
|
23718
|
+
redeem_enabled: boolean;
|
|
23719
|
+
};
|
|
23720
|
+
pools: {
|
|
23721
|
+
range_order_update_enabled: boolean;
|
|
23722
|
+
limit_order_update_enabled: boolean;
|
|
23723
|
+
};
|
|
25362
23724
|
emissions: {
|
|
25363
23725
|
emissions_sync_enabled: boolean;
|
|
25364
23726
|
};
|
|
@@ -25443,18 +23805,6 @@ declare const rpcResult: {
|
|
|
25443
23805
|
deposits_enabled: boolean;
|
|
25444
23806
|
};
|
|
25445
23807
|
}, {
|
|
25446
|
-
swapping: {
|
|
25447
|
-
swaps_enabled: boolean;
|
|
25448
|
-
withdrawals_enabled: boolean;
|
|
25449
|
-
broker_registration_enabled: boolean;
|
|
25450
|
-
};
|
|
25451
|
-
funding: {
|
|
25452
|
-
redeem_enabled: boolean;
|
|
25453
|
-
};
|
|
25454
|
-
pools: {
|
|
25455
|
-
range_order_update_enabled: boolean;
|
|
25456
|
-
limit_order_update_enabled: boolean;
|
|
25457
|
-
};
|
|
25458
23808
|
asset_balances: {
|
|
25459
23809
|
reconciliation_enabled: boolean;
|
|
25460
23810
|
};
|
|
@@ -25468,6 +23818,18 @@ declare const rpcResult: {
|
|
|
25468
23818
|
start_bidding_enabled: boolean;
|
|
25469
23819
|
stop_bidding_enabled: boolean;
|
|
25470
23820
|
};
|
|
23821
|
+
swapping: {
|
|
23822
|
+
swaps_enabled: boolean;
|
|
23823
|
+
withdrawals_enabled: boolean;
|
|
23824
|
+
broker_registration_enabled: boolean;
|
|
23825
|
+
};
|
|
23826
|
+
funding: {
|
|
23827
|
+
redeem_enabled: boolean;
|
|
23828
|
+
};
|
|
23829
|
+
pools: {
|
|
23830
|
+
range_order_update_enabled: boolean;
|
|
23831
|
+
limit_order_update_enabled: boolean;
|
|
23832
|
+
};
|
|
25471
23833
|
emissions: {
|
|
25472
23834
|
emissions_sync_enabled: boolean;
|
|
25473
23835
|
};
|
|
@@ -25838,18 +24200,6 @@ declare const rpcResult: {
|
|
|
25838
24200
|
vault_deposit_witnessing_enabled: boolean;
|
|
25839
24201
|
}>;
|
|
25840
24202
|
}, "strip", z.ZodTypeAny, {
|
|
25841
|
-
swapping: {
|
|
25842
|
-
swaps_enabled: boolean;
|
|
25843
|
-
withdrawals_enabled: boolean;
|
|
25844
|
-
broker_registration_enabled: boolean;
|
|
25845
|
-
};
|
|
25846
|
-
funding: {
|
|
25847
|
-
redeem_enabled: boolean;
|
|
25848
|
-
};
|
|
25849
|
-
pools: {
|
|
25850
|
-
range_order_update_enabled: boolean;
|
|
25851
|
-
limit_order_update_enabled: boolean;
|
|
25852
|
-
};
|
|
25853
24203
|
asset_balances: {
|
|
25854
24204
|
reconciliation_enabled: boolean;
|
|
25855
24205
|
};
|
|
@@ -25863,6 +24213,18 @@ declare const rpcResult: {
|
|
|
25863
24213
|
start_bidding_enabled: boolean;
|
|
25864
24214
|
stop_bidding_enabled: boolean;
|
|
25865
24215
|
};
|
|
24216
|
+
swapping: {
|
|
24217
|
+
swaps_enabled: boolean;
|
|
24218
|
+
withdrawals_enabled: boolean;
|
|
24219
|
+
broker_registration_enabled: boolean;
|
|
24220
|
+
};
|
|
24221
|
+
funding: {
|
|
24222
|
+
redeem_enabled: boolean;
|
|
24223
|
+
};
|
|
24224
|
+
pools: {
|
|
24225
|
+
range_order_update_enabled: boolean;
|
|
24226
|
+
limit_order_update_enabled: boolean;
|
|
24227
|
+
};
|
|
25866
24228
|
emissions: {
|
|
25867
24229
|
emissions_sync_enabled: boolean;
|
|
25868
24230
|
};
|
|
@@ -25951,18 +24313,6 @@ declare const rpcResult: {
|
|
|
25951
24313
|
stop_boosting_enabled: boolean;
|
|
25952
24314
|
};
|
|
25953
24315
|
}, {
|
|
25954
|
-
swapping: {
|
|
25955
|
-
swaps_enabled: boolean;
|
|
25956
|
-
withdrawals_enabled: boolean;
|
|
25957
|
-
broker_registration_enabled: boolean;
|
|
25958
|
-
};
|
|
25959
|
-
funding: {
|
|
25960
|
-
redeem_enabled: boolean;
|
|
25961
|
-
};
|
|
25962
|
-
pools: {
|
|
25963
|
-
range_order_update_enabled: boolean;
|
|
25964
|
-
limit_order_update_enabled: boolean;
|
|
25965
|
-
};
|
|
25966
24316
|
asset_balances: {
|
|
25967
24317
|
reconciliation_enabled: boolean;
|
|
25968
24318
|
};
|
|
@@ -25976,6 +24326,18 @@ declare const rpcResult: {
|
|
|
25976
24326
|
start_bidding_enabled: boolean;
|
|
25977
24327
|
stop_bidding_enabled: boolean;
|
|
25978
24328
|
};
|
|
24329
|
+
swapping: {
|
|
24330
|
+
swaps_enabled: boolean;
|
|
24331
|
+
withdrawals_enabled: boolean;
|
|
24332
|
+
broker_registration_enabled: boolean;
|
|
24333
|
+
};
|
|
24334
|
+
funding: {
|
|
24335
|
+
redeem_enabled: boolean;
|
|
24336
|
+
};
|
|
24337
|
+
pools: {
|
|
24338
|
+
range_order_update_enabled: boolean;
|
|
24339
|
+
limit_order_update_enabled: boolean;
|
|
24340
|
+
};
|
|
25979
24341
|
emissions: {
|
|
25980
24342
|
emissions_sync_enabled: boolean;
|
|
25981
24343
|
};
|
|
@@ -26073,14 +24435,14 @@ declare const rpcResult: {
|
|
|
26073
24435
|
base_asset: z.ZodEnum<["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd"]>;
|
|
26074
24436
|
quote_asset: z.ZodEnum<["Btc", "Eth", "Sol", "Usdc", "Usdt", "Usd"]>;
|
|
26075
24437
|
}, "strip", z.ZodTypeAny, {
|
|
26076
|
-
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
26077
24438
|
price: bigint;
|
|
24439
|
+
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
26078
24440
|
base_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
26079
24441
|
updated_at_oracle_timestamp: number;
|
|
26080
24442
|
updated_at_statechain_block: number;
|
|
26081
24443
|
}, {
|
|
26082
|
-
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
26083
24444
|
price: string | number;
|
|
24445
|
+
quote_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
26084
24446
|
base_asset: "Btc" | "Eth" | "Sol" | "Usdc" | "Usdt" | "Usd";
|
|
26085
24447
|
updated_at_oracle_timestamp: number;
|
|
26086
24448
|
updated_at_statechain_block: number;
|
|
@@ -26267,8 +24629,8 @@ declare const rpcResult: {
|
|
|
26267
24629
|
chain: "Assethub";
|
|
26268
24630
|
asset: "USDT";
|
|
26269
24631
|
};
|
|
26270
|
-
available_amount: bigint;
|
|
26271
24632
|
total_amount: bigint;
|
|
24633
|
+
available_amount: bigint;
|
|
26272
24634
|
utilisation_rate: number;
|
|
26273
24635
|
current_interest_rate: number;
|
|
26274
24636
|
origination_fee: number;
|
|
@@ -26320,8 +24682,8 @@ declare const rpcResult: {
|
|
|
26320
24682
|
chain: "Assethub";
|
|
26321
24683
|
asset: "USDT";
|
|
26322
24684
|
};
|
|
26323
|
-
available_amount: string | number;
|
|
26324
24685
|
total_amount: string | number;
|
|
24686
|
+
available_amount: string | number;
|
|
26325
24687
|
utilisation_rate: number;
|
|
26326
24688
|
current_interest_rate: number;
|
|
26327
24689
|
origination_fee: number;
|
|
@@ -26335,90 +24697,98 @@ declare const rpcResult: {
|
|
|
26335
24697
|
}>, "many">;
|
|
26336
24698
|
readonly cf_lending_config: z.ZodObject<{
|
|
26337
24699
|
ltv_thresholds: z.ZodObject<{
|
|
26338
|
-
minimum: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26339
24700
|
target: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26340
24701
|
topup: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26341
24702
|
soft_liquidation: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26342
24703
|
soft_liquidation_abort: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26343
24704
|
hard_liquidation: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26344
24705
|
hard_liquidation_abort: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
24706
|
+
low_ltv: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26345
24707
|
}, "strip", z.ZodTypeAny, {
|
|
26346
|
-
minimum: bigint;
|
|
26347
24708
|
target: bigint;
|
|
26348
24709
|
topup: bigint;
|
|
26349
24710
|
soft_liquidation: bigint;
|
|
26350
24711
|
soft_liquidation_abort: bigint;
|
|
26351
24712
|
hard_liquidation: bigint;
|
|
26352
24713
|
hard_liquidation_abort: bigint;
|
|
24714
|
+
low_ltv: bigint;
|
|
26353
24715
|
}, {
|
|
26354
|
-
minimum: string | number;
|
|
26355
24716
|
target: string | number;
|
|
26356
24717
|
topup: string | number;
|
|
26357
24718
|
soft_liquidation: string | number;
|
|
26358
24719
|
soft_liquidation_abort: string | number;
|
|
26359
24720
|
hard_liquidation: string | number;
|
|
26360
24721
|
hard_liquidation_abort: string | number;
|
|
24722
|
+
low_ltv: string | number;
|
|
26361
24723
|
}>;
|
|
26362
24724
|
network_fee_contributions: z.ZodObject<{
|
|
26363
|
-
|
|
24725
|
+
extra_interest: z.ZodNumber;
|
|
24726
|
+
interest_on_collateral_max: z.ZodNumber;
|
|
26364
24727
|
from_origination_fee: z.ZodNumber;
|
|
26365
24728
|
from_liquidation_fee: z.ZodNumber;
|
|
26366
24729
|
}, "strip", z.ZodTypeAny, {
|
|
26367
|
-
|
|
24730
|
+
extra_interest: number;
|
|
24731
|
+
interest_on_collateral_max: number;
|
|
26368
24732
|
from_origination_fee: number;
|
|
26369
24733
|
from_liquidation_fee: number;
|
|
26370
24734
|
}, {
|
|
26371
|
-
|
|
24735
|
+
extra_interest: number;
|
|
24736
|
+
interest_on_collateral_max: number;
|
|
26372
24737
|
from_origination_fee: number;
|
|
26373
24738
|
from_liquidation_fee: number;
|
|
26374
24739
|
}>;
|
|
26375
24740
|
fee_swap_interval_blocks: z.ZodNumber;
|
|
26376
24741
|
interest_payment_interval_blocks: z.ZodNumber;
|
|
26377
24742
|
fee_swap_threshold_usd: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
24743
|
+
interest_collection_threshold_usd: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26378
24744
|
liquidation_swap_chunk_size_usd: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>, z.ZodString]>, bigint, string | number>;
|
|
26379
24745
|
soft_liquidation_max_oracle_slippage: z.ZodNumber;
|
|
26380
24746
|
hard_liquidation_max_oracle_slippage: z.ZodNumber;
|
|
26381
24747
|
fee_swap_max_oracle_slippage: z.ZodNumber;
|
|
26382
24748
|
}, "strip", z.ZodTypeAny, {
|
|
26383
24749
|
ltv_thresholds: {
|
|
26384
|
-
minimum: bigint;
|
|
26385
24750
|
target: bigint;
|
|
26386
24751
|
topup: bigint;
|
|
26387
24752
|
soft_liquidation: bigint;
|
|
26388
24753
|
soft_liquidation_abort: bigint;
|
|
26389
24754
|
hard_liquidation: bigint;
|
|
26390
24755
|
hard_liquidation_abort: bigint;
|
|
24756
|
+
low_ltv: bigint;
|
|
26391
24757
|
};
|
|
26392
24758
|
network_fee_contributions: {
|
|
26393
|
-
|
|
24759
|
+
extra_interest: number;
|
|
24760
|
+
interest_on_collateral_max: number;
|
|
26394
24761
|
from_origination_fee: number;
|
|
26395
24762
|
from_liquidation_fee: number;
|
|
26396
24763
|
};
|
|
26397
24764
|
fee_swap_interval_blocks: number;
|
|
26398
24765
|
interest_payment_interval_blocks: number;
|
|
26399
24766
|
fee_swap_threshold_usd: bigint;
|
|
24767
|
+
interest_collection_threshold_usd: bigint;
|
|
26400
24768
|
liquidation_swap_chunk_size_usd: bigint;
|
|
26401
24769
|
soft_liquidation_max_oracle_slippage: number;
|
|
26402
24770
|
hard_liquidation_max_oracle_slippage: number;
|
|
26403
24771
|
fee_swap_max_oracle_slippage: number;
|
|
26404
24772
|
}, {
|
|
26405
24773
|
ltv_thresholds: {
|
|
26406
|
-
minimum: string | number;
|
|
26407
24774
|
target: string | number;
|
|
26408
24775
|
topup: string | number;
|
|
26409
24776
|
soft_liquidation: string | number;
|
|
26410
24777
|
soft_liquidation_abort: string | number;
|
|
26411
24778
|
hard_liquidation: string | number;
|
|
26412
24779
|
hard_liquidation_abort: string | number;
|
|
24780
|
+
low_ltv: string | number;
|
|
26413
24781
|
};
|
|
26414
24782
|
network_fee_contributions: {
|
|
26415
|
-
|
|
24783
|
+
extra_interest: number;
|
|
24784
|
+
interest_on_collateral_max: number;
|
|
26416
24785
|
from_origination_fee: number;
|
|
26417
24786
|
from_liquidation_fee: number;
|
|
26418
24787
|
};
|
|
26419
24788
|
fee_swap_interval_blocks: number;
|
|
26420
24789
|
interest_payment_interval_blocks: number;
|
|
26421
24790
|
fee_swap_threshold_usd: string | number;
|
|
24791
|
+
interest_collection_threshold_usd: string | number;
|
|
26422
24792
|
liquidation_swap_chunk_size_usd: string | number;
|
|
26423
24793
|
soft_liquidation_max_oracle_slippage: number;
|
|
26424
24794
|
hard_liquidation_max_oracle_slippage: number;
|