@chainflip/rpc 1.11.0-beta.11 → 1.11.0-beta.13

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/parsers.d.ts CHANGED
@@ -16657,11 +16657,11 @@ declare const cfBoostPoolsDepth: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodO
16657
16657
  tier: z.ZodNumber;
16658
16658
  available_amount: z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>;
16659
16659
  }, "strip", z.ZodTypeAny, {
16660
- tier: number;
16661
16660
  available_amount: bigint;
16662
- }, {
16663
16661
  tier: number;
16662
+ }, {
16664
16663
  available_amount: string;
16664
+ tier: number;
16665
16665
  }>>, "many">;
16666
16666
  declare const cfPoolDepth: z.ZodNullable<z.ZodObject<{
16667
16667
  asks: z.ZodObject<{
@@ -16945,6 +16945,7 @@ declare const requestSwapParameterEncoding: z.ZodDiscriminatedUnion<"chain", [z.
16945
16945
  }[];
16946
16946
  }>]>;
16947
16947
  declare const accountInfoCommon: {
16948
+ readonly vanity_name: z.ZodOptional<z.ZodString>;
16948
16949
  readonly flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
16949
16950
  readonly asset_balances: z.ZodObject<{
16950
16951
  Bitcoin: z.ZodObject<{
@@ -17270,6 +17271,7 @@ declare const oldUnregistered: z.ZodObject<{
17270
17271
  };
17271
17272
  }>;
17272
17273
  declare const unregistered: z.ZodObject<{
17274
+ vanity_name: z.ZodOptional<z.ZodString>;
17273
17275
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17274
17276
  asset_balances: z.ZodObject<{
17275
17277
  Bitcoin: z.ZodObject<{
@@ -17445,6 +17447,7 @@ declare const unregistered: z.ZodObject<{
17445
17447
  };
17446
17448
  bond: bigint;
17447
17449
  estimated_redeemable_balance: bigint;
17450
+ vanity_name?: string | undefined;
17448
17451
  bound_redeem_address?: `0x${string}` | undefined;
17449
17452
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
17450
17453
  current_delegation_status?: {
@@ -17487,6 +17490,7 @@ declare const unregistered: z.ZodObject<{
17487
17490
  };
17488
17491
  bond: string | number;
17489
17492
  estimated_redeemable_balance: string | number;
17493
+ vanity_name?: string | undefined;
17490
17494
  bound_redeem_address?: string | undefined;
17491
17495
  restricted_balances?: Record<string, string | number> | undefined;
17492
17496
  current_delegation_status?: {
@@ -17840,6 +17844,7 @@ declare const broker: z.ZodObject<{
17840
17844
  short_id: number;
17841
17845
  withdrawal_address: string;
17842
17846
  }>, "many">>>;
17847
+ vanity_name: z.ZodOptional<z.ZodString>;
17843
17848
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
17844
17849
  asset_balances: z.ZodObject<{
17845
17850
  Bitcoin: z.ZodObject<{
@@ -18047,6 +18052,7 @@ declare const broker: z.ZodObject<{
18047
18052
  short_id: number;
18048
18053
  withdrawal_address: `0x${string}`;
18049
18054
  }[];
18055
+ vanity_name?: string | undefined;
18050
18056
  bound_redeem_address?: `0x${string}` | undefined;
18051
18057
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
18052
18058
  current_delegation_status?: {
@@ -18117,6 +18123,7 @@ declare const broker: z.ZodObject<{
18117
18123
  DOT: string | number;
18118
18124
  };
18119
18125
  };
18126
+ vanity_name?: string | undefined;
18120
18127
  bound_redeem_address?: string | undefined;
18121
18128
  restricted_balances?: Record<string, string | number> | undefined;
18122
18129
  current_delegation_status?: {
@@ -18165,6 +18172,7 @@ declare const operator: z.ZodObject<{
18165
18172
  validators: Record<string, string | number>;
18166
18173
  delegation_fee_bps: number;
18167
18174
  }>>;
18175
+ vanity_name: z.ZodOptional<z.ZodString>;
18168
18176
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18169
18177
  asset_balances: z.ZodObject<{
18170
18178
  Bitcoin: z.ZodObject<{
@@ -18348,6 +18356,7 @@ declare const operator: z.ZodObject<{
18348
18356
  };
18349
18357
  allowed: `cF${string}`[];
18350
18358
  blocked: `cF${string}`[];
18359
+ vanity_name?: string | undefined;
18351
18360
  bound_redeem_address?: `0x${string}` | undefined;
18352
18361
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
18353
18362
  current_delegation_status?: {
@@ -18402,6 +18411,7 @@ declare const operator: z.ZodObject<{
18402
18411
  fee_bps: number;
18403
18412
  delegation_acceptance: "Allow" | "Deny";
18404
18413
  };
18414
+ vanity_name?: string | undefined;
18405
18415
  bound_redeem_address?: string | undefined;
18406
18416
  restricted_balances?: Record<string, string | number> | undefined;
18407
18417
  current_delegation_status?: {
@@ -20487,6 +20497,258 @@ declare const liquidityProvider: z.ZodObject<{
20487
20497
  }[];
20488
20498
  };
20489
20499
  }>;
20500
+ lending_positions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
20501
+ chain: z.ZodLiteral<"Bitcoin">;
20502
+ asset: z.ZodLiteral<"BTC">;
20503
+ }, "strip", z.ZodTypeAny, {
20504
+ chain: "Bitcoin";
20505
+ asset: "BTC";
20506
+ }, {
20507
+ chain: "Bitcoin";
20508
+ asset: "BTC";
20509
+ }>, z.ZodObject<{
20510
+ chain: z.ZodLiteral<"Polkadot">;
20511
+ asset: z.ZodLiteral<"DOT">;
20512
+ }, "strip", z.ZodTypeAny, {
20513
+ chain: "Polkadot";
20514
+ asset: "DOT";
20515
+ }, {
20516
+ chain: "Polkadot";
20517
+ asset: "DOT";
20518
+ }>, z.ZodObject<{
20519
+ chain: z.ZodLiteral<"Ethereum">;
20520
+ asset: z.ZodLiteral<"FLIP">;
20521
+ }, "strip", z.ZodTypeAny, {
20522
+ chain: "Ethereum";
20523
+ asset: "FLIP";
20524
+ }, {
20525
+ chain: "Ethereum";
20526
+ asset: "FLIP";
20527
+ }>, z.ZodObject<{
20528
+ chain: z.ZodLiteral<"Ethereum">;
20529
+ asset: z.ZodLiteral<"ETH">;
20530
+ }, "strip", z.ZodTypeAny, {
20531
+ chain: "Ethereum";
20532
+ asset: "ETH";
20533
+ }, {
20534
+ chain: "Ethereum";
20535
+ asset: "ETH";
20536
+ }>, z.ZodObject<{
20537
+ chain: z.ZodLiteral<"Ethereum">;
20538
+ asset: z.ZodLiteral<"USDC">;
20539
+ }, "strip", z.ZodTypeAny, {
20540
+ chain: "Ethereum";
20541
+ asset: "USDC";
20542
+ }, {
20543
+ chain: "Ethereum";
20544
+ asset: "USDC";
20545
+ }>, z.ZodObject<{
20546
+ chain: z.ZodLiteral<"Ethereum">;
20547
+ asset: z.ZodLiteral<"USDT">;
20548
+ }, "strip", z.ZodTypeAny, {
20549
+ chain: "Ethereum";
20550
+ asset: "USDT";
20551
+ }, {
20552
+ chain: "Ethereum";
20553
+ asset: "USDT";
20554
+ }>, z.ZodObject<{
20555
+ chain: z.ZodLiteral<"Arbitrum">;
20556
+ asset: z.ZodLiteral<"ETH">;
20557
+ }, "strip", z.ZodTypeAny, {
20558
+ chain: "Arbitrum";
20559
+ asset: "ETH";
20560
+ }, {
20561
+ chain: "Arbitrum";
20562
+ asset: "ETH";
20563
+ }>, z.ZodObject<{
20564
+ chain: z.ZodLiteral<"Arbitrum">;
20565
+ asset: z.ZodLiteral<"USDC">;
20566
+ }, "strip", z.ZodTypeAny, {
20567
+ chain: "Arbitrum";
20568
+ asset: "USDC";
20569
+ }, {
20570
+ chain: "Arbitrum";
20571
+ asset: "USDC";
20572
+ }>, z.ZodObject<{
20573
+ chain: z.ZodLiteral<"Solana">;
20574
+ asset: z.ZodLiteral<"SOL">;
20575
+ }, "strip", z.ZodTypeAny, {
20576
+ chain: "Solana";
20577
+ asset: "SOL";
20578
+ }, {
20579
+ chain: "Solana";
20580
+ asset: "SOL";
20581
+ }>, z.ZodObject<{
20582
+ chain: z.ZodLiteral<"Solana">;
20583
+ asset: z.ZodLiteral<"USDC">;
20584
+ }, "strip", z.ZodTypeAny, {
20585
+ chain: "Solana";
20586
+ asset: "USDC";
20587
+ }, {
20588
+ chain: "Solana";
20589
+ asset: "USDC";
20590
+ }>, z.ZodObject<{
20591
+ chain: z.ZodLiteral<"Assethub">;
20592
+ asset: z.ZodLiteral<"DOT">;
20593
+ }, "strip", z.ZodTypeAny, {
20594
+ chain: "Assethub";
20595
+ asset: "DOT";
20596
+ }, {
20597
+ chain: "Assethub";
20598
+ asset: "DOT";
20599
+ }>, z.ZodObject<{
20600
+ chain: z.ZodLiteral<"Assethub">;
20601
+ asset: z.ZodLiteral<"USDC">;
20602
+ }, "strip", z.ZodTypeAny, {
20603
+ chain: "Assethub";
20604
+ asset: "USDC";
20605
+ }, {
20606
+ chain: "Assethub";
20607
+ asset: "USDC";
20608
+ }>, z.ZodObject<{
20609
+ chain: z.ZodLiteral<"Assethub">;
20610
+ asset: z.ZodLiteral<"USDT">;
20611
+ }, "strip", z.ZodTypeAny, {
20612
+ chain: "Assethub";
20613
+ asset: "USDT";
20614
+ }, {
20615
+ chain: "Assethub";
20616
+ asset: "USDT";
20617
+ }>]>, z.ZodObject<{
20618
+ total_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
20619
+ available_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
20620
+ }, "strip", z.ZodTypeAny, {
20621
+ total_amount: bigint;
20622
+ available_amount: bigint;
20623
+ }, {
20624
+ total_amount: string | number;
20625
+ available_amount: string | number;
20626
+ }>>, "many">>;
20627
+ collateral_balances: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
20628
+ chain: z.ZodLiteral<"Bitcoin">;
20629
+ asset: z.ZodLiteral<"BTC">;
20630
+ }, "strip", z.ZodTypeAny, {
20631
+ chain: "Bitcoin";
20632
+ asset: "BTC";
20633
+ }, {
20634
+ chain: "Bitcoin";
20635
+ asset: "BTC";
20636
+ }>, z.ZodObject<{
20637
+ chain: z.ZodLiteral<"Polkadot">;
20638
+ asset: z.ZodLiteral<"DOT">;
20639
+ }, "strip", z.ZodTypeAny, {
20640
+ chain: "Polkadot";
20641
+ asset: "DOT";
20642
+ }, {
20643
+ chain: "Polkadot";
20644
+ asset: "DOT";
20645
+ }>, z.ZodObject<{
20646
+ chain: z.ZodLiteral<"Ethereum">;
20647
+ asset: z.ZodLiteral<"FLIP">;
20648
+ }, "strip", z.ZodTypeAny, {
20649
+ chain: "Ethereum";
20650
+ asset: "FLIP";
20651
+ }, {
20652
+ chain: "Ethereum";
20653
+ asset: "FLIP";
20654
+ }>, z.ZodObject<{
20655
+ chain: z.ZodLiteral<"Ethereum">;
20656
+ asset: z.ZodLiteral<"ETH">;
20657
+ }, "strip", z.ZodTypeAny, {
20658
+ chain: "Ethereum";
20659
+ asset: "ETH";
20660
+ }, {
20661
+ chain: "Ethereum";
20662
+ asset: "ETH";
20663
+ }>, z.ZodObject<{
20664
+ chain: z.ZodLiteral<"Ethereum">;
20665
+ asset: z.ZodLiteral<"USDC">;
20666
+ }, "strip", z.ZodTypeAny, {
20667
+ chain: "Ethereum";
20668
+ asset: "USDC";
20669
+ }, {
20670
+ chain: "Ethereum";
20671
+ asset: "USDC";
20672
+ }>, z.ZodObject<{
20673
+ chain: z.ZodLiteral<"Ethereum">;
20674
+ asset: z.ZodLiteral<"USDT">;
20675
+ }, "strip", z.ZodTypeAny, {
20676
+ chain: "Ethereum";
20677
+ asset: "USDT";
20678
+ }, {
20679
+ chain: "Ethereum";
20680
+ asset: "USDT";
20681
+ }>, z.ZodObject<{
20682
+ chain: z.ZodLiteral<"Arbitrum">;
20683
+ asset: z.ZodLiteral<"ETH">;
20684
+ }, "strip", z.ZodTypeAny, {
20685
+ chain: "Arbitrum";
20686
+ asset: "ETH";
20687
+ }, {
20688
+ chain: "Arbitrum";
20689
+ asset: "ETH";
20690
+ }>, z.ZodObject<{
20691
+ chain: z.ZodLiteral<"Arbitrum">;
20692
+ asset: z.ZodLiteral<"USDC">;
20693
+ }, "strip", z.ZodTypeAny, {
20694
+ chain: "Arbitrum";
20695
+ asset: "USDC";
20696
+ }, {
20697
+ chain: "Arbitrum";
20698
+ asset: "USDC";
20699
+ }>, z.ZodObject<{
20700
+ chain: z.ZodLiteral<"Solana">;
20701
+ asset: z.ZodLiteral<"SOL">;
20702
+ }, "strip", z.ZodTypeAny, {
20703
+ chain: "Solana";
20704
+ asset: "SOL";
20705
+ }, {
20706
+ chain: "Solana";
20707
+ asset: "SOL";
20708
+ }>, z.ZodObject<{
20709
+ chain: z.ZodLiteral<"Solana">;
20710
+ asset: z.ZodLiteral<"USDC">;
20711
+ }, "strip", z.ZodTypeAny, {
20712
+ chain: "Solana";
20713
+ asset: "USDC";
20714
+ }, {
20715
+ chain: "Solana";
20716
+ asset: "USDC";
20717
+ }>, z.ZodObject<{
20718
+ chain: z.ZodLiteral<"Assethub">;
20719
+ asset: z.ZodLiteral<"DOT">;
20720
+ }, "strip", z.ZodTypeAny, {
20721
+ chain: "Assethub";
20722
+ asset: "DOT";
20723
+ }, {
20724
+ chain: "Assethub";
20725
+ asset: "DOT";
20726
+ }>, z.ZodObject<{
20727
+ chain: z.ZodLiteral<"Assethub">;
20728
+ asset: z.ZodLiteral<"USDC">;
20729
+ }, "strip", z.ZodTypeAny, {
20730
+ chain: "Assethub";
20731
+ asset: "USDC";
20732
+ }, {
20733
+ chain: "Assethub";
20734
+ asset: "USDC";
20735
+ }>, z.ZodObject<{
20736
+ chain: z.ZodLiteral<"Assethub">;
20737
+ asset: z.ZodLiteral<"USDT">;
20738
+ }, "strip", z.ZodTypeAny, {
20739
+ chain: "Assethub";
20740
+ asset: "USDT";
20741
+ }, {
20742
+ chain: "Assethub";
20743
+ asset: "USDT";
20744
+ }>]>, z.ZodObject<{
20745
+ amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
20746
+ }, "strip", z.ZodTypeAny, {
20747
+ amount: bigint;
20748
+ }, {
20749
+ amount: string | number;
20750
+ }>>, "many">>;
20751
+ vanity_name: z.ZodOptional<z.ZodString>;
20490
20752
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
20491
20753
  asset_balances: z.ZodObject<{
20492
20754
  Bitcoin: z.ZodObject<{
@@ -20802,6 +21064,7 @@ declare const liquidityProvider: z.ZodObject<{
20802
21064
  }[];
20803
21065
  };
20804
21066
  };
21067
+ vanity_name?: string | undefined;
20805
21068
  bound_redeem_address?: `0x${string}` | undefined;
20806
21069
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
20807
21070
  current_delegation_status?: {
@@ -20812,17 +21075,102 @@ declare const liquidityProvider: z.ZodObject<{
20812
21075
  operator: `cF${string}`;
20813
21076
  bid: bigint;
20814
21077
  } | undefined;
20815
- }, {
20816
- role: "liquidity_provider";
20817
- flip_balance: string | number;
20818
- asset_balances: {
20819
- Bitcoin: {
20820
- BTC: string | number;
20821
- };
20822
- Ethereum: {
20823
- ETH: string | number;
20824
- USDC: string | number;
20825
- FLIP: string | number;
21078
+ lending_positions?: (({
21079
+ chain: "Bitcoin";
21080
+ asset: "BTC";
21081
+ } | {
21082
+ chain: "Polkadot";
21083
+ asset: "DOT";
21084
+ } | {
21085
+ chain: "Ethereum";
21086
+ asset: "FLIP";
21087
+ } | {
21088
+ chain: "Ethereum";
21089
+ asset: "ETH";
21090
+ } | {
21091
+ chain: "Ethereum";
21092
+ asset: "USDC";
21093
+ } | {
21094
+ chain: "Ethereum";
21095
+ asset: "USDT";
21096
+ } | {
21097
+ chain: "Arbitrum";
21098
+ asset: "ETH";
21099
+ } | {
21100
+ chain: "Arbitrum";
21101
+ asset: "USDC";
21102
+ } | {
21103
+ chain: "Solana";
21104
+ asset: "SOL";
21105
+ } | {
21106
+ chain: "Solana";
21107
+ asset: "USDC";
21108
+ } | {
21109
+ chain: "Assethub";
21110
+ asset: "DOT";
21111
+ } | {
21112
+ chain: "Assethub";
21113
+ asset: "USDC";
21114
+ } | {
21115
+ chain: "Assethub";
21116
+ asset: "USDT";
21117
+ }) & {
21118
+ total_amount: bigint;
21119
+ available_amount: bigint;
21120
+ })[] | undefined;
21121
+ collateral_balances?: (({
21122
+ chain: "Bitcoin";
21123
+ asset: "BTC";
21124
+ } | {
21125
+ chain: "Polkadot";
21126
+ asset: "DOT";
21127
+ } | {
21128
+ chain: "Ethereum";
21129
+ asset: "FLIP";
21130
+ } | {
21131
+ chain: "Ethereum";
21132
+ asset: "ETH";
21133
+ } | {
21134
+ chain: "Ethereum";
21135
+ asset: "USDC";
21136
+ } | {
21137
+ chain: "Ethereum";
21138
+ asset: "USDT";
21139
+ } | {
21140
+ chain: "Arbitrum";
21141
+ asset: "ETH";
21142
+ } | {
21143
+ chain: "Arbitrum";
21144
+ asset: "USDC";
21145
+ } | {
21146
+ chain: "Solana";
21147
+ asset: "SOL";
21148
+ } | {
21149
+ chain: "Solana";
21150
+ asset: "USDC";
21151
+ } | {
21152
+ chain: "Assethub";
21153
+ asset: "DOT";
21154
+ } | {
21155
+ chain: "Assethub";
21156
+ asset: "USDC";
21157
+ } | {
21158
+ chain: "Assethub";
21159
+ asset: "USDT";
21160
+ }) & {
21161
+ amount: bigint;
21162
+ })[] | undefined;
21163
+ }, {
21164
+ role: "liquidity_provider";
21165
+ flip_balance: string | number;
21166
+ asset_balances: {
21167
+ Bitcoin: {
21168
+ BTC: string | number;
21169
+ };
21170
+ Ethereum: {
21171
+ ETH: string | number;
21172
+ USDC: string | number;
21173
+ FLIP: string | number;
20826
21174
  USDT: string | number;
20827
21175
  };
20828
21176
  Arbitrum: {
@@ -20984,6 +21332,7 @@ declare const liquidityProvider: z.ZodObject<{
20984
21332
  }[];
20985
21333
  };
20986
21334
  };
21335
+ vanity_name?: string | undefined;
20987
21336
  bound_redeem_address?: string | undefined;
20988
21337
  restricted_balances?: Record<string, string | number> | undefined;
20989
21338
  current_delegation_status?: {
@@ -20994,6 +21343,91 @@ declare const liquidityProvider: z.ZodObject<{
20994
21343
  operator: string;
20995
21344
  bid: string | number;
20996
21345
  } | undefined;
21346
+ lending_positions?: (({
21347
+ chain: "Bitcoin";
21348
+ asset: "BTC";
21349
+ } | {
21350
+ chain: "Polkadot";
21351
+ asset: "DOT";
21352
+ } | {
21353
+ chain: "Ethereum";
21354
+ asset: "FLIP";
21355
+ } | {
21356
+ chain: "Ethereum";
21357
+ asset: "ETH";
21358
+ } | {
21359
+ chain: "Ethereum";
21360
+ asset: "USDC";
21361
+ } | {
21362
+ chain: "Ethereum";
21363
+ asset: "USDT";
21364
+ } | {
21365
+ chain: "Arbitrum";
21366
+ asset: "ETH";
21367
+ } | {
21368
+ chain: "Arbitrum";
21369
+ asset: "USDC";
21370
+ } | {
21371
+ chain: "Solana";
21372
+ asset: "SOL";
21373
+ } | {
21374
+ chain: "Solana";
21375
+ asset: "USDC";
21376
+ } | {
21377
+ chain: "Assethub";
21378
+ asset: "DOT";
21379
+ } | {
21380
+ chain: "Assethub";
21381
+ asset: "USDC";
21382
+ } | {
21383
+ chain: "Assethub";
21384
+ asset: "USDT";
21385
+ }) & {
21386
+ total_amount: string | number;
21387
+ available_amount: string | number;
21388
+ })[] | undefined;
21389
+ collateral_balances?: (({
21390
+ chain: "Bitcoin";
21391
+ asset: "BTC";
21392
+ } | {
21393
+ chain: "Polkadot";
21394
+ asset: "DOT";
21395
+ } | {
21396
+ chain: "Ethereum";
21397
+ asset: "FLIP";
21398
+ } | {
21399
+ chain: "Ethereum";
21400
+ asset: "ETH";
21401
+ } | {
21402
+ chain: "Ethereum";
21403
+ asset: "USDC";
21404
+ } | {
21405
+ chain: "Ethereum";
21406
+ asset: "USDT";
21407
+ } | {
21408
+ chain: "Arbitrum";
21409
+ asset: "ETH";
21410
+ } | {
21411
+ chain: "Arbitrum";
21412
+ asset: "USDC";
21413
+ } | {
21414
+ chain: "Solana";
21415
+ asset: "SOL";
21416
+ } | {
21417
+ chain: "Solana";
21418
+ asset: "USDC";
21419
+ } | {
21420
+ chain: "Assethub";
21421
+ asset: "DOT";
21422
+ } | {
21423
+ chain: "Assethub";
21424
+ asset: "USDC";
21425
+ } | {
21426
+ chain: "Assethub";
21427
+ asset: "USDT";
21428
+ }) & {
21429
+ amount: string | number;
21430
+ })[] | undefined;
20997
21431
  }>;
20998
21432
  declare const oldValidator: z.ZodObject<{
20999
21433
  role: z.ZodLiteral<"validator">;
@@ -21058,6 +21492,7 @@ declare const validator: z.ZodObject<{
21058
21492
  is_bidding: z.ZodBoolean;
21059
21493
  apy_bp: z.ZodNullable<z.ZodNumber>;
21060
21494
  operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
21495
+ vanity_name: z.ZodOptional<z.ZodString>;
21061
21496
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
21062
21497
  asset_balances: z.ZodObject<{
21063
21498
  Bitcoin: z.ZodObject<{
@@ -21243,6 +21678,7 @@ declare const validator: z.ZodObject<{
21243
21678
  is_bidding: boolean;
21244
21679
  apy_bp: number | null;
21245
21680
  operator?: `cF${string}` | undefined;
21681
+ vanity_name?: string | undefined;
21246
21682
  bound_redeem_address?: `0x${string}` | undefined;
21247
21683
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
21248
21684
  current_delegation_status?: {
@@ -21295,6 +21731,7 @@ declare const validator: z.ZodObject<{
21295
21731
  is_bidding: boolean;
21296
21732
  apy_bp: number | null;
21297
21733
  operator?: string | undefined;
21734
+ vanity_name?: string | undefined;
21298
21735
  bound_redeem_address?: string | undefined;
21299
21736
  restricted_balances?: Record<string, string | number> | undefined;
21300
21737
  current_delegation_status?: {
@@ -21307,6 +21744,7 @@ declare const validator: z.ZodObject<{
21307
21744
  } | undefined;
21308
21745
  }>;
21309
21746
  declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
21747
+ vanity_name: z.ZodOptional<z.ZodString>;
21310
21748
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
21311
21749
  asset_balances: z.ZodObject<{
21312
21750
  Bitcoin: z.ZodObject<{
@@ -21482,6 +21920,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
21482
21920
  };
21483
21921
  bond: bigint;
21484
21922
  estimated_redeemable_balance: bigint;
21923
+ vanity_name?: string | undefined;
21485
21924
  bound_redeem_address?: `0x${string}` | undefined;
21486
21925
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
21487
21926
  current_delegation_status?: {
@@ -21524,6 +21963,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
21524
21963
  };
21525
21964
  bond: string | number;
21526
21965
  estimated_redeemable_balance: string | number;
21966
+ vanity_name?: string | undefined;
21527
21967
  bound_redeem_address?: string | undefined;
21528
21968
  restricted_balances?: Record<string, string | number> | undefined;
21529
21969
  current_delegation_status?: {
@@ -21666,6 +22106,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
21666
22106
  short_id: number;
21667
22107
  withdrawal_address: string;
21668
22108
  }>, "many">>>;
22109
+ vanity_name: z.ZodOptional<z.ZodString>;
21669
22110
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
21670
22111
  asset_balances: z.ZodObject<{
21671
22112
  Bitcoin: z.ZodObject<{
@@ -21873,6 +22314,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
21873
22314
  short_id: number;
21874
22315
  withdrawal_address: `0x${string}`;
21875
22316
  }[];
22317
+ vanity_name?: string | undefined;
21876
22318
  bound_redeem_address?: `0x${string}` | undefined;
21877
22319
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
21878
22320
  current_delegation_status?: {
@@ -21943,6 +22385,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
21943
22385
  DOT: string | number;
21944
22386
  };
21945
22387
  };
22388
+ vanity_name?: string | undefined;
21946
22389
  bound_redeem_address?: string | undefined;
21947
22390
  restricted_balances?: Record<string, string | number> | undefined;
21948
22391
  current_delegation_status?: {
@@ -21990,6 +22433,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
21990
22433
  validators: Record<string, string | number>;
21991
22434
  delegation_fee_bps: number;
21992
22435
  }>>;
22436
+ vanity_name: z.ZodOptional<z.ZodString>;
21993
22437
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
21994
22438
  asset_balances: z.ZodObject<{
21995
22439
  Bitcoin: z.ZodObject<{
@@ -22173,6 +22617,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
22173
22617
  };
22174
22618
  allowed: `cF${string}`[];
22175
22619
  blocked: `cF${string}`[];
22620
+ vanity_name?: string | undefined;
22176
22621
  bound_redeem_address?: `0x${string}` | undefined;
22177
22622
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
22178
22623
  current_delegation_status?: {
@@ -22227,6 +22672,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
22227
22672
  fee_bps: number;
22228
22673
  delegation_acceptance: "Allow" | "Deny";
22229
22674
  };
22675
+ vanity_name?: string | undefined;
22230
22676
  bound_redeem_address?: string | undefined;
22231
22677
  restricted_balances?: Record<string, string | number> | undefined;
22232
22678
  current_delegation_status?: {
@@ -23048,92 +23494,344 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23048
23494
  }[];
23049
23495
  };
23050
23496
  }>;
23051
- flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23052
- asset_balances: z.ZodObject<{
23053
- Bitcoin: z.ZodObject<{
23054
- BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23055
- }, "strip", z.ZodTypeAny, {
23056
- BTC: bigint;
23057
- }, {
23058
- BTC: string | number;
23059
- }>;
23060
- Ethereum: z.ZodObject<{
23061
- ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23062
- USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23063
- FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23064
- USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23065
- }, "strip", z.ZodTypeAny, {
23066
- ETH: bigint;
23067
- USDC: bigint;
23068
- FLIP: bigint;
23069
- USDT: bigint;
23070
- }, {
23071
- ETH: string | number;
23072
- USDC: string | number;
23073
- FLIP: string | number;
23074
- USDT: string | number;
23075
- }>;
23076
- Polkadot: z.ZodObject<{
23077
- DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23078
- }, "strip", z.ZodTypeAny, {
23079
- DOT: bigint;
23080
- }, {
23081
- DOT: string | number;
23082
- }>;
23083
- Arbitrum: z.ZodObject<{
23084
- ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23085
- USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23086
- }, "strip", z.ZodTypeAny, {
23087
- ETH: bigint;
23088
- USDC: bigint;
23089
- }, {
23090
- ETH: string | number;
23091
- USDC: string | number;
23092
- }>;
23093
- Solana: z.ZodObject<{
23094
- SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23095
- USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23096
- }, "strip", z.ZodTypeAny, {
23097
- USDC: bigint;
23098
- SOL: bigint;
23099
- }, {
23100
- USDC: string | number;
23101
- SOL: string | number;
23102
- }>;
23103
- Assethub: z.ZodObject<{
23104
- DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23105
- USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23106
- USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23107
- }, "strip", z.ZodTypeAny, {
23108
- USDC: bigint;
23109
- USDT: bigint;
23110
- DOT: bigint;
23111
- }, {
23112
- USDC: string | number;
23113
- USDT: string | number;
23114
- DOT: string | number;
23115
- }>;
23497
+ lending_positions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
23498
+ chain: z.ZodLiteral<"Bitcoin">;
23499
+ asset: z.ZodLiteral<"BTC">;
23116
23500
  }, "strip", z.ZodTypeAny, {
23117
- Bitcoin: {
23118
- BTC: bigint;
23119
- };
23120
- Ethereum: {
23121
- ETH: bigint;
23122
- USDC: bigint;
23123
- FLIP: bigint;
23124
- USDT: bigint;
23125
- };
23126
- Arbitrum: {
23127
- ETH: bigint;
23128
- USDC: bigint;
23129
- };
23130
- Solana: {
23131
- USDC: bigint;
23132
- SOL: bigint;
23133
- };
23134
- Polkadot: {
23135
- DOT: bigint;
23136
- };
23501
+ chain: "Bitcoin";
23502
+ asset: "BTC";
23503
+ }, {
23504
+ chain: "Bitcoin";
23505
+ asset: "BTC";
23506
+ }>, z.ZodObject<{
23507
+ chain: z.ZodLiteral<"Polkadot">;
23508
+ asset: z.ZodLiteral<"DOT">;
23509
+ }, "strip", z.ZodTypeAny, {
23510
+ chain: "Polkadot";
23511
+ asset: "DOT";
23512
+ }, {
23513
+ chain: "Polkadot";
23514
+ asset: "DOT";
23515
+ }>, z.ZodObject<{
23516
+ chain: z.ZodLiteral<"Ethereum">;
23517
+ asset: z.ZodLiteral<"FLIP">;
23518
+ }, "strip", z.ZodTypeAny, {
23519
+ chain: "Ethereum";
23520
+ asset: "FLIP";
23521
+ }, {
23522
+ chain: "Ethereum";
23523
+ asset: "FLIP";
23524
+ }>, z.ZodObject<{
23525
+ chain: z.ZodLiteral<"Ethereum">;
23526
+ asset: z.ZodLiteral<"ETH">;
23527
+ }, "strip", z.ZodTypeAny, {
23528
+ chain: "Ethereum";
23529
+ asset: "ETH";
23530
+ }, {
23531
+ chain: "Ethereum";
23532
+ asset: "ETH";
23533
+ }>, z.ZodObject<{
23534
+ chain: z.ZodLiteral<"Ethereum">;
23535
+ asset: z.ZodLiteral<"USDC">;
23536
+ }, "strip", z.ZodTypeAny, {
23537
+ chain: "Ethereum";
23538
+ asset: "USDC";
23539
+ }, {
23540
+ chain: "Ethereum";
23541
+ asset: "USDC";
23542
+ }>, z.ZodObject<{
23543
+ chain: z.ZodLiteral<"Ethereum">;
23544
+ asset: z.ZodLiteral<"USDT">;
23545
+ }, "strip", z.ZodTypeAny, {
23546
+ chain: "Ethereum";
23547
+ asset: "USDT";
23548
+ }, {
23549
+ chain: "Ethereum";
23550
+ asset: "USDT";
23551
+ }>, z.ZodObject<{
23552
+ chain: z.ZodLiteral<"Arbitrum">;
23553
+ asset: z.ZodLiteral<"ETH">;
23554
+ }, "strip", z.ZodTypeAny, {
23555
+ chain: "Arbitrum";
23556
+ asset: "ETH";
23557
+ }, {
23558
+ chain: "Arbitrum";
23559
+ asset: "ETH";
23560
+ }>, z.ZodObject<{
23561
+ chain: z.ZodLiteral<"Arbitrum">;
23562
+ asset: z.ZodLiteral<"USDC">;
23563
+ }, "strip", z.ZodTypeAny, {
23564
+ chain: "Arbitrum";
23565
+ asset: "USDC";
23566
+ }, {
23567
+ chain: "Arbitrum";
23568
+ asset: "USDC";
23569
+ }>, z.ZodObject<{
23570
+ chain: z.ZodLiteral<"Solana">;
23571
+ asset: z.ZodLiteral<"SOL">;
23572
+ }, "strip", z.ZodTypeAny, {
23573
+ chain: "Solana";
23574
+ asset: "SOL";
23575
+ }, {
23576
+ chain: "Solana";
23577
+ asset: "SOL";
23578
+ }>, z.ZodObject<{
23579
+ chain: z.ZodLiteral<"Solana">;
23580
+ asset: z.ZodLiteral<"USDC">;
23581
+ }, "strip", z.ZodTypeAny, {
23582
+ chain: "Solana";
23583
+ asset: "USDC";
23584
+ }, {
23585
+ chain: "Solana";
23586
+ asset: "USDC";
23587
+ }>, z.ZodObject<{
23588
+ chain: z.ZodLiteral<"Assethub">;
23589
+ asset: z.ZodLiteral<"DOT">;
23590
+ }, "strip", z.ZodTypeAny, {
23591
+ chain: "Assethub";
23592
+ asset: "DOT";
23593
+ }, {
23594
+ chain: "Assethub";
23595
+ asset: "DOT";
23596
+ }>, z.ZodObject<{
23597
+ chain: z.ZodLiteral<"Assethub">;
23598
+ asset: z.ZodLiteral<"USDC">;
23599
+ }, "strip", z.ZodTypeAny, {
23600
+ chain: "Assethub";
23601
+ asset: "USDC";
23602
+ }, {
23603
+ chain: "Assethub";
23604
+ asset: "USDC";
23605
+ }>, z.ZodObject<{
23606
+ chain: z.ZodLiteral<"Assethub">;
23607
+ asset: z.ZodLiteral<"USDT">;
23608
+ }, "strip", z.ZodTypeAny, {
23609
+ chain: "Assethub";
23610
+ asset: "USDT";
23611
+ }, {
23612
+ chain: "Assethub";
23613
+ asset: "USDT";
23614
+ }>]>, z.ZodObject<{
23615
+ total_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23616
+ available_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23617
+ }, "strip", z.ZodTypeAny, {
23618
+ total_amount: bigint;
23619
+ available_amount: bigint;
23620
+ }, {
23621
+ total_amount: string | number;
23622
+ available_amount: string | number;
23623
+ }>>, "many">>;
23624
+ collateral_balances: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
23625
+ chain: z.ZodLiteral<"Bitcoin">;
23626
+ asset: z.ZodLiteral<"BTC">;
23627
+ }, "strip", z.ZodTypeAny, {
23628
+ chain: "Bitcoin";
23629
+ asset: "BTC";
23630
+ }, {
23631
+ chain: "Bitcoin";
23632
+ asset: "BTC";
23633
+ }>, z.ZodObject<{
23634
+ chain: z.ZodLiteral<"Polkadot">;
23635
+ asset: z.ZodLiteral<"DOT">;
23636
+ }, "strip", z.ZodTypeAny, {
23637
+ chain: "Polkadot";
23638
+ asset: "DOT";
23639
+ }, {
23640
+ chain: "Polkadot";
23641
+ asset: "DOT";
23642
+ }>, z.ZodObject<{
23643
+ chain: z.ZodLiteral<"Ethereum">;
23644
+ asset: z.ZodLiteral<"FLIP">;
23645
+ }, "strip", z.ZodTypeAny, {
23646
+ chain: "Ethereum";
23647
+ asset: "FLIP";
23648
+ }, {
23649
+ chain: "Ethereum";
23650
+ asset: "FLIP";
23651
+ }>, z.ZodObject<{
23652
+ chain: z.ZodLiteral<"Ethereum">;
23653
+ asset: z.ZodLiteral<"ETH">;
23654
+ }, "strip", z.ZodTypeAny, {
23655
+ chain: "Ethereum";
23656
+ asset: "ETH";
23657
+ }, {
23658
+ chain: "Ethereum";
23659
+ asset: "ETH";
23660
+ }>, z.ZodObject<{
23661
+ chain: z.ZodLiteral<"Ethereum">;
23662
+ asset: z.ZodLiteral<"USDC">;
23663
+ }, "strip", z.ZodTypeAny, {
23664
+ chain: "Ethereum";
23665
+ asset: "USDC";
23666
+ }, {
23667
+ chain: "Ethereum";
23668
+ asset: "USDC";
23669
+ }>, z.ZodObject<{
23670
+ chain: z.ZodLiteral<"Ethereum">;
23671
+ asset: z.ZodLiteral<"USDT">;
23672
+ }, "strip", z.ZodTypeAny, {
23673
+ chain: "Ethereum";
23674
+ asset: "USDT";
23675
+ }, {
23676
+ chain: "Ethereum";
23677
+ asset: "USDT";
23678
+ }>, z.ZodObject<{
23679
+ chain: z.ZodLiteral<"Arbitrum">;
23680
+ asset: z.ZodLiteral<"ETH">;
23681
+ }, "strip", z.ZodTypeAny, {
23682
+ chain: "Arbitrum";
23683
+ asset: "ETH";
23684
+ }, {
23685
+ chain: "Arbitrum";
23686
+ asset: "ETH";
23687
+ }>, z.ZodObject<{
23688
+ chain: z.ZodLiteral<"Arbitrum">;
23689
+ asset: z.ZodLiteral<"USDC">;
23690
+ }, "strip", z.ZodTypeAny, {
23691
+ chain: "Arbitrum";
23692
+ asset: "USDC";
23693
+ }, {
23694
+ chain: "Arbitrum";
23695
+ asset: "USDC";
23696
+ }>, z.ZodObject<{
23697
+ chain: z.ZodLiteral<"Solana">;
23698
+ asset: z.ZodLiteral<"SOL">;
23699
+ }, "strip", z.ZodTypeAny, {
23700
+ chain: "Solana";
23701
+ asset: "SOL";
23702
+ }, {
23703
+ chain: "Solana";
23704
+ asset: "SOL";
23705
+ }>, z.ZodObject<{
23706
+ chain: z.ZodLiteral<"Solana">;
23707
+ asset: z.ZodLiteral<"USDC">;
23708
+ }, "strip", z.ZodTypeAny, {
23709
+ chain: "Solana";
23710
+ asset: "USDC";
23711
+ }, {
23712
+ chain: "Solana";
23713
+ asset: "USDC";
23714
+ }>, z.ZodObject<{
23715
+ chain: z.ZodLiteral<"Assethub">;
23716
+ asset: z.ZodLiteral<"DOT">;
23717
+ }, "strip", z.ZodTypeAny, {
23718
+ chain: "Assethub";
23719
+ asset: "DOT";
23720
+ }, {
23721
+ chain: "Assethub";
23722
+ asset: "DOT";
23723
+ }>, z.ZodObject<{
23724
+ chain: z.ZodLiteral<"Assethub">;
23725
+ asset: z.ZodLiteral<"USDC">;
23726
+ }, "strip", z.ZodTypeAny, {
23727
+ chain: "Assethub";
23728
+ asset: "USDC";
23729
+ }, {
23730
+ chain: "Assethub";
23731
+ asset: "USDC";
23732
+ }>, z.ZodObject<{
23733
+ chain: z.ZodLiteral<"Assethub">;
23734
+ asset: z.ZodLiteral<"USDT">;
23735
+ }, "strip", z.ZodTypeAny, {
23736
+ chain: "Assethub";
23737
+ asset: "USDT";
23738
+ }, {
23739
+ chain: "Assethub";
23740
+ asset: "USDT";
23741
+ }>]>, z.ZodObject<{
23742
+ amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23743
+ }, "strip", z.ZodTypeAny, {
23744
+ amount: bigint;
23745
+ }, {
23746
+ amount: string | number;
23747
+ }>>, "many">>;
23748
+ vanity_name: z.ZodOptional<z.ZodString>;
23749
+ flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23750
+ asset_balances: z.ZodObject<{
23751
+ Bitcoin: z.ZodObject<{
23752
+ BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23753
+ }, "strip", z.ZodTypeAny, {
23754
+ BTC: bigint;
23755
+ }, {
23756
+ BTC: string | number;
23757
+ }>;
23758
+ Ethereum: z.ZodObject<{
23759
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23760
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23761
+ FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23762
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23763
+ }, "strip", z.ZodTypeAny, {
23764
+ ETH: bigint;
23765
+ USDC: bigint;
23766
+ FLIP: bigint;
23767
+ USDT: bigint;
23768
+ }, {
23769
+ ETH: string | number;
23770
+ USDC: string | number;
23771
+ FLIP: string | number;
23772
+ USDT: string | number;
23773
+ }>;
23774
+ Polkadot: z.ZodObject<{
23775
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23776
+ }, "strip", z.ZodTypeAny, {
23777
+ DOT: bigint;
23778
+ }, {
23779
+ DOT: string | number;
23780
+ }>;
23781
+ Arbitrum: z.ZodObject<{
23782
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23783
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23784
+ }, "strip", z.ZodTypeAny, {
23785
+ ETH: bigint;
23786
+ USDC: bigint;
23787
+ }, {
23788
+ ETH: string | number;
23789
+ USDC: string | number;
23790
+ }>;
23791
+ Solana: z.ZodObject<{
23792
+ SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23793
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23794
+ }, "strip", z.ZodTypeAny, {
23795
+ USDC: bigint;
23796
+ SOL: bigint;
23797
+ }, {
23798
+ USDC: string | number;
23799
+ SOL: string | number;
23800
+ }>;
23801
+ Assethub: z.ZodObject<{
23802
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23803
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23804
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23805
+ }, "strip", z.ZodTypeAny, {
23806
+ USDC: bigint;
23807
+ USDT: bigint;
23808
+ DOT: bigint;
23809
+ }, {
23810
+ USDC: string | number;
23811
+ USDT: string | number;
23812
+ DOT: string | number;
23813
+ }>;
23814
+ }, "strip", z.ZodTypeAny, {
23815
+ Bitcoin: {
23816
+ BTC: bigint;
23817
+ };
23818
+ Ethereum: {
23819
+ ETH: bigint;
23820
+ USDC: bigint;
23821
+ FLIP: bigint;
23822
+ USDT: bigint;
23823
+ };
23824
+ Arbitrum: {
23825
+ ETH: bigint;
23826
+ USDC: bigint;
23827
+ };
23828
+ Solana: {
23829
+ USDC: bigint;
23830
+ SOL: bigint;
23831
+ };
23832
+ Polkadot: {
23833
+ DOT: bigint;
23834
+ };
23137
23835
  Assethub: {
23138
23836
  USDC: bigint;
23139
23837
  USDT: bigint;
@@ -23363,6 +24061,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23363
24061
  }[];
23364
24062
  };
23365
24063
  };
24064
+ vanity_name?: string | undefined;
23366
24065
  bound_redeem_address?: `0x${string}` | undefined;
23367
24066
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
23368
24067
  current_delegation_status?: {
@@ -23373,6 +24072,91 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23373
24072
  operator: `cF${string}`;
23374
24073
  bid: bigint;
23375
24074
  } | undefined;
24075
+ lending_positions?: (({
24076
+ chain: "Bitcoin";
24077
+ asset: "BTC";
24078
+ } | {
24079
+ chain: "Polkadot";
24080
+ asset: "DOT";
24081
+ } | {
24082
+ chain: "Ethereum";
24083
+ asset: "FLIP";
24084
+ } | {
24085
+ chain: "Ethereum";
24086
+ asset: "ETH";
24087
+ } | {
24088
+ chain: "Ethereum";
24089
+ asset: "USDC";
24090
+ } | {
24091
+ chain: "Ethereum";
24092
+ asset: "USDT";
24093
+ } | {
24094
+ chain: "Arbitrum";
24095
+ asset: "ETH";
24096
+ } | {
24097
+ chain: "Arbitrum";
24098
+ asset: "USDC";
24099
+ } | {
24100
+ chain: "Solana";
24101
+ asset: "SOL";
24102
+ } | {
24103
+ chain: "Solana";
24104
+ asset: "USDC";
24105
+ } | {
24106
+ chain: "Assethub";
24107
+ asset: "DOT";
24108
+ } | {
24109
+ chain: "Assethub";
24110
+ asset: "USDC";
24111
+ } | {
24112
+ chain: "Assethub";
24113
+ asset: "USDT";
24114
+ }) & {
24115
+ total_amount: bigint;
24116
+ available_amount: bigint;
24117
+ })[] | undefined;
24118
+ collateral_balances?: (({
24119
+ chain: "Bitcoin";
24120
+ asset: "BTC";
24121
+ } | {
24122
+ chain: "Polkadot";
24123
+ asset: "DOT";
24124
+ } | {
24125
+ chain: "Ethereum";
24126
+ asset: "FLIP";
24127
+ } | {
24128
+ chain: "Ethereum";
24129
+ asset: "ETH";
24130
+ } | {
24131
+ chain: "Ethereum";
24132
+ asset: "USDC";
24133
+ } | {
24134
+ chain: "Ethereum";
24135
+ asset: "USDT";
24136
+ } | {
24137
+ chain: "Arbitrum";
24138
+ asset: "ETH";
24139
+ } | {
24140
+ chain: "Arbitrum";
24141
+ asset: "USDC";
24142
+ } | {
24143
+ chain: "Solana";
24144
+ asset: "SOL";
24145
+ } | {
24146
+ chain: "Solana";
24147
+ asset: "USDC";
24148
+ } | {
24149
+ chain: "Assethub";
24150
+ asset: "DOT";
24151
+ } | {
24152
+ chain: "Assethub";
24153
+ asset: "USDC";
24154
+ } | {
24155
+ chain: "Assethub";
24156
+ asset: "USDT";
24157
+ }) & {
24158
+ amount: bigint;
24159
+ })[] | undefined;
23376
24160
  }, {
23377
24161
  role: "liquidity_provider";
23378
24162
  flip_balance: string | number;
@@ -23545,6 +24329,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23545
24329
  }[];
23546
24330
  };
23547
24331
  };
24332
+ vanity_name?: string | undefined;
23548
24333
  bound_redeem_address?: string | undefined;
23549
24334
  restricted_balances?: Record<string, string | number> | undefined;
23550
24335
  current_delegation_status?: {
@@ -23555,6 +24340,91 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23555
24340
  operator: string;
23556
24341
  bid: string | number;
23557
24342
  } | undefined;
24343
+ lending_positions?: (({
24344
+ chain: "Bitcoin";
24345
+ asset: "BTC";
24346
+ } | {
24347
+ chain: "Polkadot";
24348
+ asset: "DOT";
24349
+ } | {
24350
+ chain: "Ethereum";
24351
+ asset: "FLIP";
24352
+ } | {
24353
+ chain: "Ethereum";
24354
+ asset: "ETH";
24355
+ } | {
24356
+ chain: "Ethereum";
24357
+ asset: "USDC";
24358
+ } | {
24359
+ chain: "Ethereum";
24360
+ asset: "USDT";
24361
+ } | {
24362
+ chain: "Arbitrum";
24363
+ asset: "ETH";
24364
+ } | {
24365
+ chain: "Arbitrum";
24366
+ asset: "USDC";
24367
+ } | {
24368
+ chain: "Solana";
24369
+ asset: "SOL";
24370
+ } | {
24371
+ chain: "Solana";
24372
+ asset: "USDC";
24373
+ } | {
24374
+ chain: "Assethub";
24375
+ asset: "DOT";
24376
+ } | {
24377
+ chain: "Assethub";
24378
+ asset: "USDC";
24379
+ } | {
24380
+ chain: "Assethub";
24381
+ asset: "USDT";
24382
+ }) & {
24383
+ total_amount: string | number;
24384
+ available_amount: string | number;
24385
+ })[] | undefined;
24386
+ collateral_balances?: (({
24387
+ chain: "Bitcoin";
24388
+ asset: "BTC";
24389
+ } | {
24390
+ chain: "Polkadot";
24391
+ asset: "DOT";
24392
+ } | {
24393
+ chain: "Ethereum";
24394
+ asset: "FLIP";
24395
+ } | {
24396
+ chain: "Ethereum";
24397
+ asset: "ETH";
24398
+ } | {
24399
+ chain: "Ethereum";
24400
+ asset: "USDC";
24401
+ } | {
24402
+ chain: "Ethereum";
24403
+ asset: "USDT";
24404
+ } | {
24405
+ chain: "Arbitrum";
24406
+ asset: "ETH";
24407
+ } | {
24408
+ chain: "Arbitrum";
24409
+ asset: "USDC";
24410
+ } | {
24411
+ chain: "Solana";
24412
+ asset: "SOL";
24413
+ } | {
24414
+ chain: "Solana";
24415
+ asset: "USDC";
24416
+ } | {
24417
+ chain: "Assethub";
24418
+ asset: "DOT";
24419
+ } | {
24420
+ chain: "Assethub";
24421
+ asset: "USDC";
24422
+ } | {
24423
+ chain: "Assethub";
24424
+ asset: "USDT";
24425
+ }) & {
24426
+ amount: string | number;
24427
+ })[] | undefined;
23558
24428
  }>, z.ZodObject<{
23559
24429
  last_heartbeat: z.ZodNumber;
23560
24430
  reputation_points: z.ZodNumber;
@@ -23566,6 +24436,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23566
24436
  is_bidding: z.ZodBoolean;
23567
24437
  apy_bp: z.ZodNullable<z.ZodNumber>;
23568
24438
  operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
24439
+ vanity_name: z.ZodOptional<z.ZodString>;
23569
24440
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
23570
24441
  asset_balances: z.ZodObject<{
23571
24442
  Bitcoin: z.ZodObject<{
@@ -23751,6 +24622,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23751
24622
  is_bidding: boolean;
23752
24623
  apy_bp: number | null;
23753
24624
  operator?: `cF${string}` | undefined;
24625
+ vanity_name?: string | undefined;
23754
24626
  bound_redeem_address?: `0x${string}` | undefined;
23755
24627
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
23756
24628
  current_delegation_status?: {
@@ -23803,6 +24675,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23803
24675
  is_bidding: boolean;
23804
24676
  apy_bp: number | null;
23805
24677
  operator?: string | undefined;
24678
+ vanity_name?: string | undefined;
23806
24679
  bound_redeem_address?: string | undefined;
23807
24680
  restricted_balances?: Record<string, string | number> | undefined;
23808
24681
  current_delegation_status?: {
@@ -23845,6 +24718,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23845
24718
  };
23846
24719
  bond: bigint;
23847
24720
  estimated_redeemable_balance: bigint;
24721
+ vanity_name?: string | undefined;
23848
24722
  bound_redeem_address?: `0x${string}` | undefined;
23849
24723
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
23850
24724
  current_delegation_status?: {
@@ -23919,6 +24793,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23919
24793
  short_id: number;
23920
24794
  withdrawal_address: `0x${string}`;
23921
24795
  }[];
24796
+ vanity_name?: string | undefined;
23922
24797
  bound_redeem_address?: `0x${string}` | undefined;
23923
24798
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
23924
24799
  current_delegation_status?: {
@@ -23972,6 +24847,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
23972
24847
  is_bidding: boolean;
23973
24848
  apy_bp: number | null;
23974
24849
  operator?: `cF${string}` | undefined;
24850
+ vanity_name?: string | undefined;
23975
24851
  bound_redeem_address?: `0x${string}` | undefined;
23976
24852
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
23977
24853
  current_delegation_status?: {
@@ -24022,6 +24898,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24022
24898
  estimated_redeemable_balance: bigint;
24023
24899
  allowed: `cF${string}`[];
24024
24900
  blocked: `cF${string}`[];
24901
+ vanity_name?: string | undefined;
24025
24902
  bound_redeem_address?: `0x${string}` | undefined;
24026
24903
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
24027
24904
  current_delegation_status?: {
@@ -24237,6 +25114,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24237
25114
  }[];
24238
25115
  };
24239
25116
  };
25117
+ vanity_name?: string | undefined;
24240
25118
  bound_redeem_address?: `0x${string}` | undefined;
24241
25119
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
24242
25120
  current_delegation_status?: {
@@ -24247,6 +25125,91 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24247
25125
  operator: `cF${string}`;
24248
25126
  bid: bigint;
24249
25127
  } | undefined;
25128
+ lending_positions?: (({
25129
+ chain: "Bitcoin";
25130
+ asset: "BTC";
25131
+ } | {
25132
+ chain: "Polkadot";
25133
+ asset: "DOT";
25134
+ } | {
25135
+ chain: "Ethereum";
25136
+ asset: "FLIP";
25137
+ } | {
25138
+ chain: "Ethereum";
25139
+ asset: "ETH";
25140
+ } | {
25141
+ chain: "Ethereum";
25142
+ asset: "USDC";
25143
+ } | {
25144
+ chain: "Ethereum";
25145
+ asset: "USDT";
25146
+ } | {
25147
+ chain: "Arbitrum";
25148
+ asset: "ETH";
25149
+ } | {
25150
+ chain: "Arbitrum";
25151
+ asset: "USDC";
25152
+ } | {
25153
+ chain: "Solana";
25154
+ asset: "SOL";
25155
+ } | {
25156
+ chain: "Solana";
25157
+ asset: "USDC";
25158
+ } | {
25159
+ chain: "Assethub";
25160
+ asset: "DOT";
25161
+ } | {
25162
+ chain: "Assethub";
25163
+ asset: "USDC";
25164
+ } | {
25165
+ chain: "Assethub";
25166
+ asset: "USDT";
25167
+ }) & {
25168
+ total_amount: bigint;
25169
+ available_amount: bigint;
25170
+ })[] | undefined;
25171
+ collateral_balances?: (({
25172
+ chain: "Bitcoin";
25173
+ asset: "BTC";
25174
+ } | {
25175
+ chain: "Polkadot";
25176
+ asset: "DOT";
25177
+ } | {
25178
+ chain: "Ethereum";
25179
+ asset: "FLIP";
25180
+ } | {
25181
+ chain: "Ethereum";
25182
+ asset: "ETH";
25183
+ } | {
25184
+ chain: "Ethereum";
25185
+ asset: "USDC";
25186
+ } | {
25187
+ chain: "Ethereum";
25188
+ asset: "USDT";
25189
+ } | {
25190
+ chain: "Arbitrum";
25191
+ asset: "ETH";
25192
+ } | {
25193
+ chain: "Arbitrum";
25194
+ asset: "USDC";
25195
+ } | {
25196
+ chain: "Solana";
25197
+ asset: "SOL";
25198
+ } | {
25199
+ chain: "Solana";
25200
+ asset: "USDC";
25201
+ } | {
25202
+ chain: "Assethub";
25203
+ asset: "DOT";
25204
+ } | {
25205
+ chain: "Assethub";
25206
+ asset: "USDC";
25207
+ } | {
25208
+ chain: "Assethub";
25209
+ asset: "USDT";
25210
+ }) & {
25211
+ amount: bigint;
25212
+ })[] | undefined;
24250
25213
  }, {
24251
25214
  role: "unregistered";
24252
25215
  flip_balance: string | number;
@@ -24279,6 +25242,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24279
25242
  };
24280
25243
  bond: string | number;
24281
25244
  estimated_redeemable_balance: string | number;
25245
+ vanity_name?: string | undefined;
24282
25246
  bound_redeem_address?: string | undefined;
24283
25247
  restricted_balances?: Record<string, string | number> | undefined;
24284
25248
  current_delegation_status?: {
@@ -24348,6 +25312,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24348
25312
  DOT: string | number;
24349
25313
  };
24350
25314
  };
25315
+ vanity_name?: string | undefined;
24351
25316
  bound_redeem_address?: string | undefined;
24352
25317
  restricted_balances?: Record<string, string | number> | undefined;
24353
25318
  current_delegation_status?: {
@@ -24402,6 +25367,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24402
25367
  fee_bps: number;
24403
25368
  delegation_acceptance: "Allow" | "Deny";
24404
25369
  };
25370
+ vanity_name?: string | undefined;
24405
25371
  bound_redeem_address?: string | undefined;
24406
25372
  restricted_balances?: Record<string, string | number> | undefined;
24407
25373
  current_delegation_status?: {
@@ -24592,6 +25558,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24592
25558
  }[];
24593
25559
  };
24594
25560
  };
25561
+ vanity_name?: string | undefined;
24595
25562
  bound_redeem_address?: string | undefined;
24596
25563
  restricted_balances?: Record<string, string | number> | undefined;
24597
25564
  current_delegation_status?: {
@@ -24602,6 +25569,91 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24602
25569
  operator: string;
24603
25570
  bid: string | number;
24604
25571
  } | undefined;
25572
+ lending_positions?: (({
25573
+ chain: "Bitcoin";
25574
+ asset: "BTC";
25575
+ } | {
25576
+ chain: "Polkadot";
25577
+ asset: "DOT";
25578
+ } | {
25579
+ chain: "Ethereum";
25580
+ asset: "FLIP";
25581
+ } | {
25582
+ chain: "Ethereum";
25583
+ asset: "ETH";
25584
+ } | {
25585
+ chain: "Ethereum";
25586
+ asset: "USDC";
25587
+ } | {
25588
+ chain: "Ethereum";
25589
+ asset: "USDT";
25590
+ } | {
25591
+ chain: "Arbitrum";
25592
+ asset: "ETH";
25593
+ } | {
25594
+ chain: "Arbitrum";
25595
+ asset: "USDC";
25596
+ } | {
25597
+ chain: "Solana";
25598
+ asset: "SOL";
25599
+ } | {
25600
+ chain: "Solana";
25601
+ asset: "USDC";
25602
+ } | {
25603
+ chain: "Assethub";
25604
+ asset: "DOT";
25605
+ } | {
25606
+ chain: "Assethub";
25607
+ asset: "USDC";
25608
+ } | {
25609
+ chain: "Assethub";
25610
+ asset: "USDT";
25611
+ }) & {
25612
+ total_amount: string | number;
25613
+ available_amount: string | number;
25614
+ })[] | undefined;
25615
+ collateral_balances?: (({
25616
+ chain: "Bitcoin";
25617
+ asset: "BTC";
25618
+ } | {
25619
+ chain: "Polkadot";
25620
+ asset: "DOT";
25621
+ } | {
25622
+ chain: "Ethereum";
25623
+ asset: "FLIP";
25624
+ } | {
25625
+ chain: "Ethereum";
25626
+ asset: "ETH";
25627
+ } | {
25628
+ chain: "Ethereum";
25629
+ asset: "USDC";
25630
+ } | {
25631
+ chain: "Ethereum";
25632
+ asset: "USDT";
25633
+ } | {
25634
+ chain: "Arbitrum";
25635
+ asset: "ETH";
25636
+ } | {
25637
+ chain: "Arbitrum";
25638
+ asset: "USDC";
25639
+ } | {
25640
+ chain: "Solana";
25641
+ asset: "SOL";
25642
+ } | {
25643
+ chain: "Solana";
25644
+ asset: "USDC";
25645
+ } | {
25646
+ chain: "Assethub";
25647
+ asset: "DOT";
25648
+ } | {
25649
+ chain: "Assethub";
25650
+ asset: "USDC";
25651
+ } | {
25652
+ chain: "Assethub";
25653
+ asset: "USDT";
25654
+ }) & {
25655
+ amount: string | number;
25656
+ })[] | undefined;
24605
25657
  } | {
24606
25658
  role: "validator";
24607
25659
  flip_balance: string | number;
@@ -24644,6 +25696,7 @@ declare const newCfAccountInfo: z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.
24644
25696
  is_bidding: boolean;
24645
25697
  apy_bp: number | null;
24646
25698
  operator?: string | undefined;
25699
+ vanity_name?: string | undefined;
24647
25700
  bound_redeem_address?: string | undefined;
24648
25701
  restricted_balances?: Record<string, string | number> | undefined;
24649
25702
  current_delegation_status?: {
@@ -26359,6 +27412,7 @@ declare const oldCfAccountInfo: z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
26359
27412
  operator?: string | undefined;
26360
27413
  }>]>;
26361
27414
  declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"role", [z.ZodObject<{
27415
+ vanity_name: z.ZodOptional<z.ZodString>;
26362
27416
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
26363
27417
  asset_balances: z.ZodObject<{
26364
27418
  Bitcoin: z.ZodObject<{
@@ -26534,6 +27588,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
26534
27588
  };
26535
27589
  bond: bigint;
26536
27590
  estimated_redeemable_balance: bigint;
27591
+ vanity_name?: string | undefined;
26537
27592
  bound_redeem_address?: `0x${string}` | undefined;
26538
27593
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
26539
27594
  current_delegation_status?: {
@@ -26576,6 +27631,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
26576
27631
  };
26577
27632
  bond: string | number;
26578
27633
  estimated_redeemable_balance: string | number;
27634
+ vanity_name?: string | undefined;
26579
27635
  bound_redeem_address?: string | undefined;
26580
27636
  restricted_balances?: Record<string, string | number> | undefined;
26581
27637
  current_delegation_status?: {
@@ -26718,6 +27774,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
26718
27774
  short_id: number;
26719
27775
  withdrawal_address: string;
26720
27776
  }>, "many">>>;
27777
+ vanity_name: z.ZodOptional<z.ZodString>;
26721
27778
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
26722
27779
  asset_balances: z.ZodObject<{
26723
27780
  Bitcoin: z.ZodObject<{
@@ -26925,6 +27982,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
26925
27982
  short_id: number;
26926
27983
  withdrawal_address: `0x${string}`;
26927
27984
  }[];
27985
+ vanity_name?: string | undefined;
26928
27986
  bound_redeem_address?: `0x${string}` | undefined;
26929
27987
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
26930
27988
  current_delegation_status?: {
@@ -26995,6 +28053,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
26995
28053
  DOT: string | number;
26996
28054
  };
26997
28055
  };
28056
+ vanity_name?: string | undefined;
26998
28057
  bound_redeem_address?: string | undefined;
26999
28058
  restricted_balances?: Record<string, string | number> | undefined;
27000
28059
  current_delegation_status?: {
@@ -27042,6 +28101,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
27042
28101
  validators: Record<string, string | number>;
27043
28102
  delegation_fee_bps: number;
27044
28103
  }>>;
28104
+ vanity_name: z.ZodOptional<z.ZodString>;
27045
28105
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
27046
28106
  asset_balances: z.ZodObject<{
27047
28107
  Bitcoin: z.ZodObject<{
@@ -27225,6 +28285,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
27225
28285
  };
27226
28286
  allowed: `cF${string}`[];
27227
28287
  blocked: `cF${string}`[];
28288
+ vanity_name?: string | undefined;
27228
28289
  bound_redeem_address?: `0x${string}` | undefined;
27229
28290
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
27230
28291
  current_delegation_status?: {
@@ -27279,6 +28340,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
27279
28340
  fee_bps: number;
27280
28341
  delegation_acceptance: "Allow" | "Deny";
27281
28342
  };
28343
+ vanity_name?: string | undefined;
27282
28344
  bound_redeem_address?: string | undefined;
27283
28345
  restricted_balances?: Record<string, string | number> | undefined;
27284
28346
  current_delegation_status?: {
@@ -27868,238 +28930,490 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
27868
28930
  in_use_balance: bigint;
27869
28931
  is_withdrawing: boolean;
27870
28932
  }[];
27871
- }, {
27872
- USDC: {
28933
+ }, {
28934
+ USDC: {
28935
+ fee_tier: number;
28936
+ total_balance: string;
28937
+ available_balance: string;
28938
+ in_use_balance: string;
28939
+ is_withdrawing: boolean;
28940
+ }[];
28941
+ USDT: {
28942
+ fee_tier: number;
28943
+ total_balance: string;
28944
+ available_balance: string;
28945
+ in_use_balance: string;
28946
+ is_withdrawing: boolean;
28947
+ }[];
28948
+ DOT: {
28949
+ fee_tier: number;
28950
+ total_balance: string;
28951
+ available_balance: string;
28952
+ in_use_balance: string;
28953
+ is_withdrawing: boolean;
28954
+ }[];
28955
+ }>;
28956
+ }, "strip", z.ZodTypeAny, {
28957
+ Bitcoin: {
28958
+ BTC: {
28959
+ fee_tier: number;
28960
+ total_balance: bigint;
28961
+ available_balance: bigint;
28962
+ in_use_balance: bigint;
28963
+ is_withdrawing: boolean;
28964
+ }[];
28965
+ };
28966
+ Ethereum: {
28967
+ ETH: {
28968
+ fee_tier: number;
28969
+ total_balance: bigint;
28970
+ available_balance: bigint;
28971
+ in_use_balance: bigint;
28972
+ is_withdrawing: boolean;
28973
+ }[];
28974
+ USDC: {
28975
+ fee_tier: number;
28976
+ total_balance: bigint;
28977
+ available_balance: bigint;
28978
+ in_use_balance: bigint;
28979
+ is_withdrawing: boolean;
28980
+ }[];
28981
+ FLIP: {
28982
+ fee_tier: number;
28983
+ total_balance: bigint;
28984
+ available_balance: bigint;
28985
+ in_use_balance: bigint;
28986
+ is_withdrawing: boolean;
28987
+ }[];
28988
+ USDT: {
28989
+ fee_tier: number;
28990
+ total_balance: bigint;
28991
+ available_balance: bigint;
28992
+ in_use_balance: bigint;
28993
+ is_withdrawing: boolean;
28994
+ }[];
28995
+ };
28996
+ Arbitrum: {
28997
+ ETH: {
28998
+ fee_tier: number;
28999
+ total_balance: bigint;
29000
+ available_balance: bigint;
29001
+ in_use_balance: bigint;
29002
+ is_withdrawing: boolean;
29003
+ }[];
29004
+ USDC: {
29005
+ fee_tier: number;
29006
+ total_balance: bigint;
29007
+ available_balance: bigint;
29008
+ in_use_balance: bigint;
29009
+ is_withdrawing: boolean;
29010
+ }[];
29011
+ };
29012
+ Solana: {
29013
+ USDC: {
29014
+ fee_tier: number;
29015
+ total_balance: bigint;
29016
+ available_balance: bigint;
29017
+ in_use_balance: bigint;
29018
+ is_withdrawing: boolean;
29019
+ }[];
29020
+ SOL: {
29021
+ fee_tier: number;
29022
+ total_balance: bigint;
29023
+ available_balance: bigint;
29024
+ in_use_balance: bigint;
29025
+ is_withdrawing: boolean;
29026
+ }[];
29027
+ };
29028
+ Polkadot: {
29029
+ DOT: {
29030
+ fee_tier: number;
29031
+ total_balance: bigint;
29032
+ available_balance: bigint;
29033
+ in_use_balance: bigint;
29034
+ is_withdrawing: boolean;
29035
+ }[];
29036
+ };
29037
+ Assethub: {
29038
+ USDC: {
29039
+ fee_tier: number;
29040
+ total_balance: bigint;
29041
+ available_balance: bigint;
29042
+ in_use_balance: bigint;
29043
+ is_withdrawing: boolean;
29044
+ }[];
29045
+ USDT: {
29046
+ fee_tier: number;
29047
+ total_balance: bigint;
29048
+ available_balance: bigint;
29049
+ in_use_balance: bigint;
29050
+ is_withdrawing: boolean;
29051
+ }[];
29052
+ DOT: {
29053
+ fee_tier: number;
29054
+ total_balance: bigint;
29055
+ available_balance: bigint;
29056
+ in_use_balance: bigint;
29057
+ is_withdrawing: boolean;
29058
+ }[];
29059
+ };
29060
+ }, {
29061
+ Bitcoin: {
29062
+ BTC: {
27873
29063
  fee_tier: number;
27874
29064
  total_balance: string;
27875
29065
  available_balance: string;
27876
29066
  in_use_balance: string;
27877
29067
  is_withdrawing: boolean;
27878
29068
  }[];
27879
- USDT: {
29069
+ };
29070
+ Ethereum: {
29071
+ ETH: {
27880
29072
  fee_tier: number;
27881
29073
  total_balance: string;
27882
29074
  available_balance: string;
27883
29075
  in_use_balance: string;
27884
29076
  is_withdrawing: boolean;
27885
29077
  }[];
27886
- DOT: {
29078
+ USDC: {
27887
29079
  fee_tier: number;
27888
29080
  total_balance: string;
27889
29081
  available_balance: string;
27890
29082
  in_use_balance: string;
27891
29083
  is_withdrawing: boolean;
27892
29084
  }[];
27893
- }>;
27894
- }, "strip", z.ZodTypeAny, {
27895
- Bitcoin: {
27896
- BTC: {
27897
- fee_tier: number;
27898
- total_balance: bigint;
27899
- available_balance: bigint;
27900
- in_use_balance: bigint;
27901
- is_withdrawing: boolean;
27902
- }[];
27903
- };
27904
- Ethereum: {
27905
- ETH: {
27906
- fee_tier: number;
27907
- total_balance: bigint;
27908
- available_balance: bigint;
27909
- in_use_balance: bigint;
27910
- is_withdrawing: boolean;
27911
- }[];
27912
- USDC: {
27913
- fee_tier: number;
27914
- total_balance: bigint;
27915
- available_balance: bigint;
27916
- in_use_balance: bigint;
27917
- is_withdrawing: boolean;
27918
- }[];
27919
29085
  FLIP: {
27920
29086
  fee_tier: number;
27921
- total_balance: bigint;
27922
- available_balance: bigint;
27923
- in_use_balance: bigint;
29087
+ total_balance: string;
29088
+ available_balance: string;
29089
+ in_use_balance: string;
27924
29090
  is_withdrawing: boolean;
27925
29091
  }[];
27926
29092
  USDT: {
27927
29093
  fee_tier: number;
27928
- total_balance: bigint;
27929
- available_balance: bigint;
27930
- in_use_balance: bigint;
29094
+ total_balance: string;
29095
+ available_balance: string;
29096
+ in_use_balance: string;
27931
29097
  is_withdrawing: boolean;
27932
29098
  }[];
27933
29099
  };
27934
29100
  Arbitrum: {
27935
29101
  ETH: {
27936
29102
  fee_tier: number;
27937
- total_balance: bigint;
27938
- available_balance: bigint;
27939
- in_use_balance: bigint;
29103
+ total_balance: string;
29104
+ available_balance: string;
29105
+ in_use_balance: string;
27940
29106
  is_withdrawing: boolean;
27941
29107
  }[];
27942
29108
  USDC: {
27943
29109
  fee_tier: number;
27944
- total_balance: bigint;
27945
- available_balance: bigint;
27946
- in_use_balance: bigint;
29110
+ total_balance: string;
29111
+ available_balance: string;
29112
+ in_use_balance: string;
27947
29113
  is_withdrawing: boolean;
27948
29114
  }[];
27949
29115
  };
27950
29116
  Solana: {
27951
29117
  USDC: {
27952
29118
  fee_tier: number;
27953
- total_balance: bigint;
27954
- available_balance: bigint;
27955
- in_use_balance: bigint;
29119
+ total_balance: string;
29120
+ available_balance: string;
29121
+ in_use_balance: string;
27956
29122
  is_withdrawing: boolean;
27957
29123
  }[];
27958
29124
  SOL: {
27959
29125
  fee_tier: number;
27960
- total_balance: bigint;
27961
- available_balance: bigint;
27962
- in_use_balance: bigint;
29126
+ total_balance: string;
29127
+ available_balance: string;
29128
+ in_use_balance: string;
27963
29129
  is_withdrawing: boolean;
27964
29130
  }[];
27965
29131
  };
27966
29132
  Polkadot: {
27967
29133
  DOT: {
27968
29134
  fee_tier: number;
27969
- total_balance: bigint;
27970
- available_balance: bigint;
27971
- in_use_balance: bigint;
29135
+ total_balance: string;
29136
+ available_balance: string;
29137
+ in_use_balance: string;
27972
29138
  is_withdrawing: boolean;
27973
29139
  }[];
27974
29140
  };
27975
29141
  Assethub: {
27976
29142
  USDC: {
27977
29143
  fee_tier: number;
27978
- total_balance: bigint;
27979
- available_balance: bigint;
27980
- in_use_balance: bigint;
29144
+ total_balance: string;
29145
+ available_balance: string;
29146
+ in_use_balance: string;
27981
29147
  is_withdrawing: boolean;
27982
29148
  }[];
27983
29149
  USDT: {
27984
29150
  fee_tier: number;
27985
- total_balance: bigint;
27986
- available_balance: bigint;
27987
- in_use_balance: bigint;
29151
+ total_balance: string;
29152
+ available_balance: string;
29153
+ in_use_balance: string;
27988
29154
  is_withdrawing: boolean;
27989
29155
  }[];
27990
29156
  DOT: {
27991
29157
  fee_tier: number;
27992
- total_balance: bigint;
27993
- available_balance: bigint;
27994
- in_use_balance: bigint;
29158
+ total_balance: string;
29159
+ available_balance: string;
29160
+ in_use_balance: string;
27995
29161
  is_withdrawing: boolean;
27996
29162
  }[];
27997
29163
  };
29164
+ }>;
29165
+ lending_positions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
29166
+ chain: z.ZodLiteral<"Bitcoin">;
29167
+ asset: z.ZodLiteral<"BTC">;
29168
+ }, "strip", z.ZodTypeAny, {
29169
+ chain: "Bitcoin";
29170
+ asset: "BTC";
29171
+ }, {
29172
+ chain: "Bitcoin";
29173
+ asset: "BTC";
29174
+ }>, z.ZodObject<{
29175
+ chain: z.ZodLiteral<"Polkadot">;
29176
+ asset: z.ZodLiteral<"DOT">;
29177
+ }, "strip", z.ZodTypeAny, {
29178
+ chain: "Polkadot";
29179
+ asset: "DOT";
29180
+ }, {
29181
+ chain: "Polkadot";
29182
+ asset: "DOT";
29183
+ }>, z.ZodObject<{
29184
+ chain: z.ZodLiteral<"Ethereum">;
29185
+ asset: z.ZodLiteral<"FLIP">;
29186
+ }, "strip", z.ZodTypeAny, {
29187
+ chain: "Ethereum";
29188
+ asset: "FLIP";
29189
+ }, {
29190
+ chain: "Ethereum";
29191
+ asset: "FLIP";
29192
+ }>, z.ZodObject<{
29193
+ chain: z.ZodLiteral<"Ethereum">;
29194
+ asset: z.ZodLiteral<"ETH">;
29195
+ }, "strip", z.ZodTypeAny, {
29196
+ chain: "Ethereum";
29197
+ asset: "ETH";
29198
+ }, {
29199
+ chain: "Ethereum";
29200
+ asset: "ETH";
29201
+ }>, z.ZodObject<{
29202
+ chain: z.ZodLiteral<"Ethereum">;
29203
+ asset: z.ZodLiteral<"USDC">;
29204
+ }, "strip", z.ZodTypeAny, {
29205
+ chain: "Ethereum";
29206
+ asset: "USDC";
29207
+ }, {
29208
+ chain: "Ethereum";
29209
+ asset: "USDC";
29210
+ }>, z.ZodObject<{
29211
+ chain: z.ZodLiteral<"Ethereum">;
29212
+ asset: z.ZodLiteral<"USDT">;
29213
+ }, "strip", z.ZodTypeAny, {
29214
+ chain: "Ethereum";
29215
+ asset: "USDT";
29216
+ }, {
29217
+ chain: "Ethereum";
29218
+ asset: "USDT";
29219
+ }>, z.ZodObject<{
29220
+ chain: z.ZodLiteral<"Arbitrum">;
29221
+ asset: z.ZodLiteral<"ETH">;
29222
+ }, "strip", z.ZodTypeAny, {
29223
+ chain: "Arbitrum";
29224
+ asset: "ETH";
29225
+ }, {
29226
+ chain: "Arbitrum";
29227
+ asset: "ETH";
29228
+ }>, z.ZodObject<{
29229
+ chain: z.ZodLiteral<"Arbitrum">;
29230
+ asset: z.ZodLiteral<"USDC">;
29231
+ }, "strip", z.ZodTypeAny, {
29232
+ chain: "Arbitrum";
29233
+ asset: "USDC";
29234
+ }, {
29235
+ chain: "Arbitrum";
29236
+ asset: "USDC";
29237
+ }>, z.ZodObject<{
29238
+ chain: z.ZodLiteral<"Solana">;
29239
+ asset: z.ZodLiteral<"SOL">;
29240
+ }, "strip", z.ZodTypeAny, {
29241
+ chain: "Solana";
29242
+ asset: "SOL";
29243
+ }, {
29244
+ chain: "Solana";
29245
+ asset: "SOL";
29246
+ }>, z.ZodObject<{
29247
+ chain: z.ZodLiteral<"Solana">;
29248
+ asset: z.ZodLiteral<"USDC">;
29249
+ }, "strip", z.ZodTypeAny, {
29250
+ chain: "Solana";
29251
+ asset: "USDC";
29252
+ }, {
29253
+ chain: "Solana";
29254
+ asset: "USDC";
29255
+ }>, z.ZodObject<{
29256
+ chain: z.ZodLiteral<"Assethub">;
29257
+ asset: z.ZodLiteral<"DOT">;
29258
+ }, "strip", z.ZodTypeAny, {
29259
+ chain: "Assethub";
29260
+ asset: "DOT";
29261
+ }, {
29262
+ chain: "Assethub";
29263
+ asset: "DOT";
29264
+ }>, z.ZodObject<{
29265
+ chain: z.ZodLiteral<"Assethub">;
29266
+ asset: z.ZodLiteral<"USDC">;
29267
+ }, "strip", z.ZodTypeAny, {
29268
+ chain: "Assethub";
29269
+ asset: "USDC";
29270
+ }, {
29271
+ chain: "Assethub";
29272
+ asset: "USDC";
29273
+ }>, z.ZodObject<{
29274
+ chain: z.ZodLiteral<"Assethub">;
29275
+ asset: z.ZodLiteral<"USDT">;
29276
+ }, "strip", z.ZodTypeAny, {
29277
+ chain: "Assethub";
29278
+ asset: "USDT";
29279
+ }, {
29280
+ chain: "Assethub";
29281
+ asset: "USDT";
29282
+ }>]>, z.ZodObject<{
29283
+ total_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
29284
+ available_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
29285
+ }, "strip", z.ZodTypeAny, {
29286
+ total_amount: bigint;
29287
+ available_amount: bigint;
29288
+ }, {
29289
+ total_amount: string | number;
29290
+ available_amount: string | number;
29291
+ }>>, "many">>;
29292
+ collateral_balances: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
29293
+ chain: z.ZodLiteral<"Bitcoin">;
29294
+ asset: z.ZodLiteral<"BTC">;
29295
+ }, "strip", z.ZodTypeAny, {
29296
+ chain: "Bitcoin";
29297
+ asset: "BTC";
29298
+ }, {
29299
+ chain: "Bitcoin";
29300
+ asset: "BTC";
29301
+ }>, z.ZodObject<{
29302
+ chain: z.ZodLiteral<"Polkadot">;
29303
+ asset: z.ZodLiteral<"DOT">;
29304
+ }, "strip", z.ZodTypeAny, {
29305
+ chain: "Polkadot";
29306
+ asset: "DOT";
29307
+ }, {
29308
+ chain: "Polkadot";
29309
+ asset: "DOT";
29310
+ }>, z.ZodObject<{
29311
+ chain: z.ZodLiteral<"Ethereum">;
29312
+ asset: z.ZodLiteral<"FLIP">;
29313
+ }, "strip", z.ZodTypeAny, {
29314
+ chain: "Ethereum";
29315
+ asset: "FLIP";
29316
+ }, {
29317
+ chain: "Ethereum";
29318
+ asset: "FLIP";
29319
+ }>, z.ZodObject<{
29320
+ chain: z.ZodLiteral<"Ethereum">;
29321
+ asset: z.ZodLiteral<"ETH">;
29322
+ }, "strip", z.ZodTypeAny, {
29323
+ chain: "Ethereum";
29324
+ asset: "ETH";
29325
+ }, {
29326
+ chain: "Ethereum";
29327
+ asset: "ETH";
29328
+ }>, z.ZodObject<{
29329
+ chain: z.ZodLiteral<"Ethereum">;
29330
+ asset: z.ZodLiteral<"USDC">;
29331
+ }, "strip", z.ZodTypeAny, {
29332
+ chain: "Ethereum";
29333
+ asset: "USDC";
27998
29334
  }, {
27999
- Bitcoin: {
28000
- BTC: {
28001
- fee_tier: number;
28002
- total_balance: string;
28003
- available_balance: string;
28004
- in_use_balance: string;
28005
- is_withdrawing: boolean;
28006
- }[];
28007
- };
28008
- Ethereum: {
28009
- ETH: {
28010
- fee_tier: number;
28011
- total_balance: string;
28012
- available_balance: string;
28013
- in_use_balance: string;
28014
- is_withdrawing: boolean;
28015
- }[];
28016
- USDC: {
28017
- fee_tier: number;
28018
- total_balance: string;
28019
- available_balance: string;
28020
- in_use_balance: string;
28021
- is_withdrawing: boolean;
28022
- }[];
28023
- FLIP: {
28024
- fee_tier: number;
28025
- total_balance: string;
28026
- available_balance: string;
28027
- in_use_balance: string;
28028
- is_withdrawing: boolean;
28029
- }[];
28030
- USDT: {
28031
- fee_tier: number;
28032
- total_balance: string;
28033
- available_balance: string;
28034
- in_use_balance: string;
28035
- is_withdrawing: boolean;
28036
- }[];
28037
- };
28038
- Arbitrum: {
28039
- ETH: {
28040
- fee_tier: number;
28041
- total_balance: string;
28042
- available_balance: string;
28043
- in_use_balance: string;
28044
- is_withdrawing: boolean;
28045
- }[];
28046
- USDC: {
28047
- fee_tier: number;
28048
- total_balance: string;
28049
- available_balance: string;
28050
- in_use_balance: string;
28051
- is_withdrawing: boolean;
28052
- }[];
28053
- };
28054
- Solana: {
28055
- USDC: {
28056
- fee_tier: number;
28057
- total_balance: string;
28058
- available_balance: string;
28059
- in_use_balance: string;
28060
- is_withdrawing: boolean;
28061
- }[];
28062
- SOL: {
28063
- fee_tier: number;
28064
- total_balance: string;
28065
- available_balance: string;
28066
- in_use_balance: string;
28067
- is_withdrawing: boolean;
28068
- }[];
28069
- };
28070
- Polkadot: {
28071
- DOT: {
28072
- fee_tier: number;
28073
- total_balance: string;
28074
- available_balance: string;
28075
- in_use_balance: string;
28076
- is_withdrawing: boolean;
28077
- }[];
28078
- };
28079
- Assethub: {
28080
- USDC: {
28081
- fee_tier: number;
28082
- total_balance: string;
28083
- available_balance: string;
28084
- in_use_balance: string;
28085
- is_withdrawing: boolean;
28086
- }[];
28087
- USDT: {
28088
- fee_tier: number;
28089
- total_balance: string;
28090
- available_balance: string;
28091
- in_use_balance: string;
28092
- is_withdrawing: boolean;
28093
- }[];
28094
- DOT: {
28095
- fee_tier: number;
28096
- total_balance: string;
28097
- available_balance: string;
28098
- in_use_balance: string;
28099
- is_withdrawing: boolean;
28100
- }[];
28101
- };
28102
- }>;
29335
+ chain: "Ethereum";
29336
+ asset: "USDC";
29337
+ }>, z.ZodObject<{
29338
+ chain: z.ZodLiteral<"Ethereum">;
29339
+ asset: z.ZodLiteral<"USDT">;
29340
+ }, "strip", z.ZodTypeAny, {
29341
+ chain: "Ethereum";
29342
+ asset: "USDT";
29343
+ }, {
29344
+ chain: "Ethereum";
29345
+ asset: "USDT";
29346
+ }>, z.ZodObject<{
29347
+ chain: z.ZodLiteral<"Arbitrum">;
29348
+ asset: z.ZodLiteral<"ETH">;
29349
+ }, "strip", z.ZodTypeAny, {
29350
+ chain: "Arbitrum";
29351
+ asset: "ETH";
29352
+ }, {
29353
+ chain: "Arbitrum";
29354
+ asset: "ETH";
29355
+ }>, z.ZodObject<{
29356
+ chain: z.ZodLiteral<"Arbitrum">;
29357
+ asset: z.ZodLiteral<"USDC">;
29358
+ }, "strip", z.ZodTypeAny, {
29359
+ chain: "Arbitrum";
29360
+ asset: "USDC";
29361
+ }, {
29362
+ chain: "Arbitrum";
29363
+ asset: "USDC";
29364
+ }>, z.ZodObject<{
29365
+ chain: z.ZodLiteral<"Solana">;
29366
+ asset: z.ZodLiteral<"SOL">;
29367
+ }, "strip", z.ZodTypeAny, {
29368
+ chain: "Solana";
29369
+ asset: "SOL";
29370
+ }, {
29371
+ chain: "Solana";
29372
+ asset: "SOL";
29373
+ }>, z.ZodObject<{
29374
+ chain: z.ZodLiteral<"Solana">;
29375
+ asset: z.ZodLiteral<"USDC">;
29376
+ }, "strip", z.ZodTypeAny, {
29377
+ chain: "Solana";
29378
+ asset: "USDC";
29379
+ }, {
29380
+ chain: "Solana";
29381
+ asset: "USDC";
29382
+ }>, z.ZodObject<{
29383
+ chain: z.ZodLiteral<"Assethub">;
29384
+ asset: z.ZodLiteral<"DOT">;
29385
+ }, "strip", z.ZodTypeAny, {
29386
+ chain: "Assethub";
29387
+ asset: "DOT";
29388
+ }, {
29389
+ chain: "Assethub";
29390
+ asset: "DOT";
29391
+ }>, z.ZodObject<{
29392
+ chain: z.ZodLiteral<"Assethub">;
29393
+ asset: z.ZodLiteral<"USDC">;
29394
+ }, "strip", z.ZodTypeAny, {
29395
+ chain: "Assethub";
29396
+ asset: "USDC";
29397
+ }, {
29398
+ chain: "Assethub";
29399
+ asset: "USDC";
29400
+ }>, z.ZodObject<{
29401
+ chain: z.ZodLiteral<"Assethub">;
29402
+ asset: z.ZodLiteral<"USDT">;
29403
+ }, "strip", z.ZodTypeAny, {
29404
+ chain: "Assethub";
29405
+ asset: "USDT";
29406
+ }, {
29407
+ chain: "Assethub";
29408
+ asset: "USDT";
29409
+ }>]>, z.ZodObject<{
29410
+ amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
29411
+ }, "strip", z.ZodTypeAny, {
29412
+ amount: bigint;
29413
+ }, {
29414
+ amount: string | number;
29415
+ }>>, "many">>;
29416
+ vanity_name: z.ZodOptional<z.ZodString>;
28103
29417
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
28104
29418
  asset_balances: z.ZodObject<{
28105
29419
  Bitcoin: z.ZodObject<{
@@ -28415,6 +29729,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28415
29729
  }[];
28416
29730
  };
28417
29731
  };
29732
+ vanity_name?: string | undefined;
28418
29733
  bound_redeem_address?: `0x${string}` | undefined;
28419
29734
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
28420
29735
  current_delegation_status?: {
@@ -28425,6 +29740,91 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28425
29740
  operator: `cF${string}`;
28426
29741
  bid: bigint;
28427
29742
  } | undefined;
29743
+ lending_positions?: (({
29744
+ chain: "Bitcoin";
29745
+ asset: "BTC";
29746
+ } | {
29747
+ chain: "Polkadot";
29748
+ asset: "DOT";
29749
+ } | {
29750
+ chain: "Ethereum";
29751
+ asset: "FLIP";
29752
+ } | {
29753
+ chain: "Ethereum";
29754
+ asset: "ETH";
29755
+ } | {
29756
+ chain: "Ethereum";
29757
+ asset: "USDC";
29758
+ } | {
29759
+ chain: "Ethereum";
29760
+ asset: "USDT";
29761
+ } | {
29762
+ chain: "Arbitrum";
29763
+ asset: "ETH";
29764
+ } | {
29765
+ chain: "Arbitrum";
29766
+ asset: "USDC";
29767
+ } | {
29768
+ chain: "Solana";
29769
+ asset: "SOL";
29770
+ } | {
29771
+ chain: "Solana";
29772
+ asset: "USDC";
29773
+ } | {
29774
+ chain: "Assethub";
29775
+ asset: "DOT";
29776
+ } | {
29777
+ chain: "Assethub";
29778
+ asset: "USDC";
29779
+ } | {
29780
+ chain: "Assethub";
29781
+ asset: "USDT";
29782
+ }) & {
29783
+ total_amount: bigint;
29784
+ available_amount: bigint;
29785
+ })[] | undefined;
29786
+ collateral_balances?: (({
29787
+ chain: "Bitcoin";
29788
+ asset: "BTC";
29789
+ } | {
29790
+ chain: "Polkadot";
29791
+ asset: "DOT";
29792
+ } | {
29793
+ chain: "Ethereum";
29794
+ asset: "FLIP";
29795
+ } | {
29796
+ chain: "Ethereum";
29797
+ asset: "ETH";
29798
+ } | {
29799
+ chain: "Ethereum";
29800
+ asset: "USDC";
29801
+ } | {
29802
+ chain: "Ethereum";
29803
+ asset: "USDT";
29804
+ } | {
29805
+ chain: "Arbitrum";
29806
+ asset: "ETH";
29807
+ } | {
29808
+ chain: "Arbitrum";
29809
+ asset: "USDC";
29810
+ } | {
29811
+ chain: "Solana";
29812
+ asset: "SOL";
29813
+ } | {
29814
+ chain: "Solana";
29815
+ asset: "USDC";
29816
+ } | {
29817
+ chain: "Assethub";
29818
+ asset: "DOT";
29819
+ } | {
29820
+ chain: "Assethub";
29821
+ asset: "USDC";
29822
+ } | {
29823
+ chain: "Assethub";
29824
+ asset: "USDT";
29825
+ }) & {
29826
+ amount: bigint;
29827
+ })[] | undefined;
28428
29828
  }, {
28429
29829
  role: "liquidity_provider";
28430
29830
  flip_balance: string | number;
@@ -28597,6 +29997,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28597
29997
  }[];
28598
29998
  };
28599
29999
  };
30000
+ vanity_name?: string | undefined;
28600
30001
  bound_redeem_address?: string | undefined;
28601
30002
  restricted_balances?: Record<string, string | number> | undefined;
28602
30003
  current_delegation_status?: {
@@ -28607,6 +30008,91 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28607
30008
  operator: string;
28608
30009
  bid: string | number;
28609
30010
  } | undefined;
30011
+ lending_positions?: (({
30012
+ chain: "Bitcoin";
30013
+ asset: "BTC";
30014
+ } | {
30015
+ chain: "Polkadot";
30016
+ asset: "DOT";
30017
+ } | {
30018
+ chain: "Ethereum";
30019
+ asset: "FLIP";
30020
+ } | {
30021
+ chain: "Ethereum";
30022
+ asset: "ETH";
30023
+ } | {
30024
+ chain: "Ethereum";
30025
+ asset: "USDC";
30026
+ } | {
30027
+ chain: "Ethereum";
30028
+ asset: "USDT";
30029
+ } | {
30030
+ chain: "Arbitrum";
30031
+ asset: "ETH";
30032
+ } | {
30033
+ chain: "Arbitrum";
30034
+ asset: "USDC";
30035
+ } | {
30036
+ chain: "Solana";
30037
+ asset: "SOL";
30038
+ } | {
30039
+ chain: "Solana";
30040
+ asset: "USDC";
30041
+ } | {
30042
+ chain: "Assethub";
30043
+ asset: "DOT";
30044
+ } | {
30045
+ chain: "Assethub";
30046
+ asset: "USDC";
30047
+ } | {
30048
+ chain: "Assethub";
30049
+ asset: "USDT";
30050
+ }) & {
30051
+ total_amount: string | number;
30052
+ available_amount: string | number;
30053
+ })[] | undefined;
30054
+ collateral_balances?: (({
30055
+ chain: "Bitcoin";
30056
+ asset: "BTC";
30057
+ } | {
30058
+ chain: "Polkadot";
30059
+ asset: "DOT";
30060
+ } | {
30061
+ chain: "Ethereum";
30062
+ asset: "FLIP";
30063
+ } | {
30064
+ chain: "Ethereum";
30065
+ asset: "ETH";
30066
+ } | {
30067
+ chain: "Ethereum";
30068
+ asset: "USDC";
30069
+ } | {
30070
+ chain: "Ethereum";
30071
+ asset: "USDT";
30072
+ } | {
30073
+ chain: "Arbitrum";
30074
+ asset: "ETH";
30075
+ } | {
30076
+ chain: "Arbitrum";
30077
+ asset: "USDC";
30078
+ } | {
30079
+ chain: "Solana";
30080
+ asset: "SOL";
30081
+ } | {
30082
+ chain: "Solana";
30083
+ asset: "USDC";
30084
+ } | {
30085
+ chain: "Assethub";
30086
+ asset: "DOT";
30087
+ } | {
30088
+ chain: "Assethub";
30089
+ asset: "USDC";
30090
+ } | {
30091
+ chain: "Assethub";
30092
+ asset: "USDT";
30093
+ }) & {
30094
+ amount: string | number;
30095
+ })[] | undefined;
28610
30096
  }>, z.ZodObject<{
28611
30097
  last_heartbeat: z.ZodNumber;
28612
30098
  reputation_points: z.ZodNumber;
@@ -28618,6 +30104,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28618
30104
  is_bidding: z.ZodBoolean;
28619
30105
  apy_bp: z.ZodNullable<z.ZodNumber>;
28620
30106
  operator: z.ZodOptional<z.ZodEffects<z.ZodString, `cF${string}`, string>>;
30107
+ vanity_name: z.ZodOptional<z.ZodString>;
28621
30108
  flip_balance: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
28622
30109
  asset_balances: z.ZodObject<{
28623
30110
  Bitcoin: z.ZodObject<{
@@ -28803,6 +30290,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28803
30290
  is_bidding: boolean;
28804
30291
  apy_bp: number | null;
28805
30292
  operator?: `cF${string}` | undefined;
30293
+ vanity_name?: string | undefined;
28806
30294
  bound_redeem_address?: `0x${string}` | undefined;
28807
30295
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
28808
30296
  current_delegation_status?: {
@@ -28855,6 +30343,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28855
30343
  is_bidding: boolean;
28856
30344
  apy_bp: number | null;
28857
30345
  operator?: string | undefined;
30346
+ vanity_name?: string | undefined;
28858
30347
  bound_redeem_address?: string | undefined;
28859
30348
  restricted_balances?: Record<string, string | number> | undefined;
28860
30349
  current_delegation_status?: {
@@ -28897,6 +30386,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28897
30386
  };
28898
30387
  bond: bigint;
28899
30388
  estimated_redeemable_balance: bigint;
30389
+ vanity_name?: string | undefined;
28900
30390
  bound_redeem_address?: `0x${string}` | undefined;
28901
30391
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
28902
30392
  current_delegation_status?: {
@@ -28971,6 +30461,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
28971
30461
  short_id: number;
28972
30462
  withdrawal_address: `0x${string}`;
28973
30463
  }[];
30464
+ vanity_name?: string | undefined;
28974
30465
  bound_redeem_address?: `0x${string}` | undefined;
28975
30466
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
28976
30467
  current_delegation_status?: {
@@ -29024,6 +30515,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29024
30515
  is_bidding: boolean;
29025
30516
  apy_bp: number | null;
29026
30517
  operator?: `cF${string}` | undefined;
30518
+ vanity_name?: string | undefined;
29027
30519
  bound_redeem_address?: `0x${string}` | undefined;
29028
30520
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
29029
30521
  current_delegation_status?: {
@@ -29074,6 +30566,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29074
30566
  estimated_redeemable_balance: bigint;
29075
30567
  allowed: `cF${string}`[];
29076
30568
  blocked: `cF${string}`[];
30569
+ vanity_name?: string | undefined;
29077
30570
  bound_redeem_address?: `0x${string}` | undefined;
29078
30571
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
29079
30572
  current_delegation_status?: {
@@ -29289,6 +30782,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29289
30782
  }[];
29290
30783
  };
29291
30784
  };
30785
+ vanity_name?: string | undefined;
29292
30786
  bound_redeem_address?: `0x${string}` | undefined;
29293
30787
  restricted_balances?: Partial<Record<`0x${string}`, bigint>> | undefined;
29294
30788
  current_delegation_status?: {
@@ -29299,6 +30793,91 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29299
30793
  operator: `cF${string}`;
29300
30794
  bid: bigint;
29301
30795
  } | undefined;
30796
+ lending_positions?: (({
30797
+ chain: "Bitcoin";
30798
+ asset: "BTC";
30799
+ } | {
30800
+ chain: "Polkadot";
30801
+ asset: "DOT";
30802
+ } | {
30803
+ chain: "Ethereum";
30804
+ asset: "FLIP";
30805
+ } | {
30806
+ chain: "Ethereum";
30807
+ asset: "ETH";
30808
+ } | {
30809
+ chain: "Ethereum";
30810
+ asset: "USDC";
30811
+ } | {
30812
+ chain: "Ethereum";
30813
+ asset: "USDT";
30814
+ } | {
30815
+ chain: "Arbitrum";
30816
+ asset: "ETH";
30817
+ } | {
30818
+ chain: "Arbitrum";
30819
+ asset: "USDC";
30820
+ } | {
30821
+ chain: "Solana";
30822
+ asset: "SOL";
30823
+ } | {
30824
+ chain: "Solana";
30825
+ asset: "USDC";
30826
+ } | {
30827
+ chain: "Assethub";
30828
+ asset: "DOT";
30829
+ } | {
30830
+ chain: "Assethub";
30831
+ asset: "USDC";
30832
+ } | {
30833
+ chain: "Assethub";
30834
+ asset: "USDT";
30835
+ }) & {
30836
+ total_amount: bigint;
30837
+ available_amount: bigint;
30838
+ })[] | undefined;
30839
+ collateral_balances?: (({
30840
+ chain: "Bitcoin";
30841
+ asset: "BTC";
30842
+ } | {
30843
+ chain: "Polkadot";
30844
+ asset: "DOT";
30845
+ } | {
30846
+ chain: "Ethereum";
30847
+ asset: "FLIP";
30848
+ } | {
30849
+ chain: "Ethereum";
30850
+ asset: "ETH";
30851
+ } | {
30852
+ chain: "Ethereum";
30853
+ asset: "USDC";
30854
+ } | {
30855
+ chain: "Ethereum";
30856
+ asset: "USDT";
30857
+ } | {
30858
+ chain: "Arbitrum";
30859
+ asset: "ETH";
30860
+ } | {
30861
+ chain: "Arbitrum";
30862
+ asset: "USDC";
30863
+ } | {
30864
+ chain: "Solana";
30865
+ asset: "SOL";
30866
+ } | {
30867
+ chain: "Solana";
30868
+ asset: "USDC";
30869
+ } | {
30870
+ chain: "Assethub";
30871
+ asset: "DOT";
30872
+ } | {
30873
+ chain: "Assethub";
30874
+ asset: "USDC";
30875
+ } | {
30876
+ chain: "Assethub";
30877
+ asset: "USDT";
30878
+ }) & {
30879
+ amount: bigint;
30880
+ })[] | undefined;
29302
30881
  }, {
29303
30882
  role: "unregistered";
29304
30883
  flip_balance: string | number;
@@ -29331,6 +30910,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29331
30910
  };
29332
30911
  bond: string | number;
29333
30912
  estimated_redeemable_balance: string | number;
30913
+ vanity_name?: string | undefined;
29334
30914
  bound_redeem_address?: string | undefined;
29335
30915
  restricted_balances?: Record<string, string | number> | undefined;
29336
30916
  current_delegation_status?: {
@@ -29400,6 +30980,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29400
30980
  DOT: string | number;
29401
30981
  };
29402
30982
  };
30983
+ vanity_name?: string | undefined;
29403
30984
  bound_redeem_address?: string | undefined;
29404
30985
  restricted_balances?: Record<string, string | number> | undefined;
29405
30986
  current_delegation_status?: {
@@ -29454,6 +31035,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29454
31035
  fee_bps: number;
29455
31036
  delegation_acceptance: "Allow" | "Deny";
29456
31037
  };
31038
+ vanity_name?: string | undefined;
29457
31039
  bound_redeem_address?: string | undefined;
29458
31040
  restricted_balances?: Record<string, string | number> | undefined;
29459
31041
  current_delegation_status?: {
@@ -29644,6 +31226,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29644
31226
  }[];
29645
31227
  };
29646
31228
  };
31229
+ vanity_name?: string | undefined;
29647
31230
  bound_redeem_address?: string | undefined;
29648
31231
  restricted_balances?: Record<string, string | number> | undefined;
29649
31232
  current_delegation_status?: {
@@ -29654,6 +31237,91 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29654
31237
  operator: string;
29655
31238
  bid: string | number;
29656
31239
  } | undefined;
31240
+ lending_positions?: (({
31241
+ chain: "Bitcoin";
31242
+ asset: "BTC";
31243
+ } | {
31244
+ chain: "Polkadot";
31245
+ asset: "DOT";
31246
+ } | {
31247
+ chain: "Ethereum";
31248
+ asset: "FLIP";
31249
+ } | {
31250
+ chain: "Ethereum";
31251
+ asset: "ETH";
31252
+ } | {
31253
+ chain: "Ethereum";
31254
+ asset: "USDC";
31255
+ } | {
31256
+ chain: "Ethereum";
31257
+ asset: "USDT";
31258
+ } | {
31259
+ chain: "Arbitrum";
31260
+ asset: "ETH";
31261
+ } | {
31262
+ chain: "Arbitrum";
31263
+ asset: "USDC";
31264
+ } | {
31265
+ chain: "Solana";
31266
+ asset: "SOL";
31267
+ } | {
31268
+ chain: "Solana";
31269
+ asset: "USDC";
31270
+ } | {
31271
+ chain: "Assethub";
31272
+ asset: "DOT";
31273
+ } | {
31274
+ chain: "Assethub";
31275
+ asset: "USDC";
31276
+ } | {
31277
+ chain: "Assethub";
31278
+ asset: "USDT";
31279
+ }) & {
31280
+ total_amount: string | number;
31281
+ available_amount: string | number;
31282
+ })[] | undefined;
31283
+ collateral_balances?: (({
31284
+ chain: "Bitcoin";
31285
+ asset: "BTC";
31286
+ } | {
31287
+ chain: "Polkadot";
31288
+ asset: "DOT";
31289
+ } | {
31290
+ chain: "Ethereum";
31291
+ asset: "FLIP";
31292
+ } | {
31293
+ chain: "Ethereum";
31294
+ asset: "ETH";
31295
+ } | {
31296
+ chain: "Ethereum";
31297
+ asset: "USDC";
31298
+ } | {
31299
+ chain: "Ethereum";
31300
+ asset: "USDT";
31301
+ } | {
31302
+ chain: "Arbitrum";
31303
+ asset: "ETH";
31304
+ } | {
31305
+ chain: "Arbitrum";
31306
+ asset: "USDC";
31307
+ } | {
31308
+ chain: "Solana";
31309
+ asset: "SOL";
31310
+ } | {
31311
+ chain: "Solana";
31312
+ asset: "USDC";
31313
+ } | {
31314
+ chain: "Assethub";
31315
+ asset: "DOT";
31316
+ } | {
31317
+ chain: "Assethub";
31318
+ asset: "USDC";
31319
+ } | {
31320
+ chain: "Assethub";
31321
+ asset: "USDT";
31322
+ }) & {
31323
+ amount: string | number;
31324
+ })[] | undefined;
29657
31325
  } | {
29658
31326
  role: "validator";
29659
31327
  flip_balance: string | number;
@@ -29696,6 +31364,7 @@ declare const cfAccountInfo: z.ZodUnion<[z.ZodEffects<z.ZodDiscriminatedUnion<"r
29696
31364
  is_bidding: boolean;
29697
31365
  apy_bp: number | null;
29698
31366
  operator?: string | undefined;
31367
+ vanity_name?: string | undefined;
29699
31368
  bound_redeem_address?: string | undefined;
29700
31369
  restricted_balances?: Record<string, string | number> | undefined;
29701
31370
  current_delegation_status?: {
@@ -37360,7 +39029,25 @@ declare const cfLendingPools: z.ZodArray<z.ZodObject<{
37360
39029
  total_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
37361
39030
  available_amount: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
37362
39031
  utilisation_rate: z.ZodNumber;
37363
- interest_rate: z.ZodNumber;
39032
+ current_interest_rate: z.ZodNumber;
39033
+ origination_fee: z.ZodNumber;
39034
+ liquidation_fee: z.ZodNumber;
39035
+ interest_rate_curve: z.ZodObject<{
39036
+ interest_at_zero_utilisation: z.ZodNumber;
39037
+ junction_utilisation: z.ZodNumber;
39038
+ interest_at_junction_utilisation: z.ZodNumber;
39039
+ interest_at_max_utilisation: z.ZodNumber;
39040
+ }, "strip", z.ZodTypeAny, {
39041
+ interest_at_zero_utilisation: number;
39042
+ junction_utilisation: number;
39043
+ interest_at_junction_utilisation: number;
39044
+ interest_at_max_utilisation: number;
39045
+ }, {
39046
+ interest_at_zero_utilisation: number;
39047
+ junction_utilisation: number;
39048
+ interest_at_junction_utilisation: number;
39049
+ interest_at_max_utilisation: number;
39050
+ }>;
37364
39051
  }, "strip", z.ZodTypeAny, {
37365
39052
  asset: {
37366
39053
  chain: "Bitcoin";
@@ -37402,10 +39089,18 @@ declare const cfLendingPools: z.ZodArray<z.ZodObject<{
37402
39089
  chain: "Assethub";
37403
39090
  asset: "USDT";
37404
39091
  };
37405
- available_amount: bigint;
37406
39092
  total_amount: bigint;
39093
+ available_amount: bigint;
37407
39094
  utilisation_rate: number;
37408
- interest_rate: number;
39095
+ current_interest_rate: number;
39096
+ origination_fee: number;
39097
+ liquidation_fee: number;
39098
+ interest_rate_curve: {
39099
+ interest_at_zero_utilisation: number;
39100
+ junction_utilisation: number;
39101
+ interest_at_junction_utilisation: number;
39102
+ interest_at_max_utilisation: number;
39103
+ };
37409
39104
  }, {
37410
39105
  asset: {
37411
39106
  chain: "Bitcoin";
@@ -37447,10 +39142,18 @@ declare const cfLendingPools: z.ZodArray<z.ZodObject<{
37447
39142
  chain: "Assethub";
37448
39143
  asset: "USDT";
37449
39144
  };
37450
- available_amount: string | number;
37451
39145
  total_amount: string | number;
39146
+ available_amount: string | number;
37452
39147
  utilisation_rate: number;
37453
- interest_rate: number;
39148
+ current_interest_rate: number;
39149
+ origination_fee: number;
39150
+ liquidation_fee: number;
39151
+ interest_rate_curve: {
39152
+ interest_at_zero_utilisation: number;
39153
+ junction_utilisation: number;
39154
+ interest_at_junction_utilisation: number;
39155
+ interest_at_max_utilisation: number;
39156
+ };
37454
39157
  }>, "many">;
37455
39158
 
37456
39159
  export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, accountInfoCommon, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfAuctionState, cfAvailablePools, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFailedCallEvm, cfFlipSuppy, cfFundingEnvironment, cfGetTradingStrategies, cfGetTradingStrategyLimits, cfIngressEgressEnvironment, cfLendingPools, cfOraclePrices, cfPoolDepth, cfPoolOrderbook, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSafeModeStatuses, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, cfTradingStrategy, chainGetBlockHash, ethereumAddress, hexString, liquidityProvider, lpTotalBalances, newCfAccountInfo, numberOrHex, oldBroker, oldCfAccountInfo, oldLiquidityProvider, oldUnregistered, oldValidator, operator, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };