@evergonlabs/tmi-protocol-api-client 0.4.1 → 0.4.2

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/index.d.cts CHANGED
@@ -60,7 +60,7 @@ type Pool = {
60
60
  /**
61
61
  * Id of a Pool
62
62
  */
63
- poolId: string;
63
+ poolId: bigint;
64
64
  /**
65
65
  * Date ISO format
66
66
  */
@@ -78,7 +78,7 @@ type Stake = {
78
78
  /**
79
79
  * If empty or 0 then it's platform-wide
80
80
  */
81
- poolId?: string;
81
+ poolId?: bigint;
82
82
  /**
83
83
  * Address role assigned to
84
84
  */
@@ -86,9 +86,9 @@ type Stake = {
86
86
  /**
87
87
  * Id of a Stake position (NFT Id)
88
88
  */
89
- stakeId: string;
90
- activePackets: string;
91
- rewardsClaimed: string;
89
+ stakeId: bigint;
90
+ activePackets: bigint;
91
+ rewardsClaimed: bigint;
92
92
  /**
93
93
  * Whether stake is active or withdrawn and closed
94
94
  */
@@ -126,7 +126,7 @@ type StakeEvent = {
126
126
  /**
127
127
  * If empty or 0 then it's platform-wide
128
128
  */
129
- poolId?: string;
129
+ poolId?: bigint;
130
130
  /**
131
131
  * Address role assigned to
132
132
  */
@@ -134,7 +134,7 @@ type StakeEvent = {
134
134
  /**
135
135
  * Id of a Stake position (NFT Id)
136
136
  */
137
- stakeId: string;
137
+ stakeId: bigint;
138
138
  /**
139
139
  * Date ISO format
140
140
  */
@@ -201,7 +201,7 @@ type RoleAssignment = {
201
201
  /**
202
202
  * If empty or 0 then it's platform-wide
203
203
  */
204
- poolId?: string;
204
+ poolId?: bigint;
205
205
  /**
206
206
  * Address role assigned to
207
207
  */
@@ -219,11 +219,11 @@ type AmountTwoBorder = {
219
219
  /**
220
220
  * The minimum number (uint256) of input packets required to create and maintain a position within the campaign must be less than or equal to maxAmount.
221
221
  */
222
- minAmount: string;
222
+ minAmount: string | number | bigint;
223
223
  /**
224
224
  * The maximum number (uint256) of input packets that a position can support within the campaign. must be strictly greater than 0 (if no upper limit is required, use safe uint256 value.
225
225
  */
226
- maxAmount: string;
226
+ maxAmount: string | number | bigint;
227
227
  };
228
228
  /**
229
229
  * An array of tuples where:
@@ -246,8 +246,8 @@ type AmountTwoBorder = {
246
246
  *
247
247
  */
248
248
  type AmountMultInterval = Array<[
249
- string,
250
- string
249
+ string | number | bigint,
250
+ string | number | bigint
251
251
  ]>;
252
252
  /**
253
253
  * Address and amount of tokens per Packet to be used as an Input for a Staking Pool
@@ -275,7 +275,7 @@ type Erc20Reward = {
275
275
  *
276
276
  * IMPORTANT: should be parsed with each token's decimal precision (using wei values)
277
277
  */
278
- amountOfTokensPerPacket: string;
278
+ amountOfTokensPerPacket: string | number | bigint;
279
279
  };
280
280
  type Erc721Meta = {
281
281
  /**
@@ -302,7 +302,7 @@ type RewardDistributionComplex = {
302
302
  *
303
303
  * e.g. Every 5 minute rewards are expected to be notified (it is not mandatory though)
304
304
  */
305
- duration: string;
305
+ duration: string | number | bigint;
306
306
  /**
307
307
  * The Wallet address that is configured as Distributor of Rewards
308
308
  *
@@ -319,7 +319,7 @@ type LockTwoBorder = {
319
319
  *
320
320
  * Note: Must be less than or equal to maxAcceptedLockPeriod.
321
321
  */
322
- minAcceptedLockPeriod: string;
322
+ minAcceptedLockPeriod: string | number | bigint;
323
323
  /**
324
324
  * The maximum allowed time duration (in seconds), that staked assets can be
325
325
  * locked when the positions are either created (stake) or increased (restake).
@@ -328,7 +328,7 @@ type LockTwoBorder = {
328
328
  *
329
329
  * Note: Must be greater than 0 (if no upper limit is required, use max int 256).
330
330
  */
331
- maxAcceptedLockPeriod: string;
331
+ maxAcceptedLockPeriod: string | number | bigint;
332
332
  };
333
333
  /**
334
334
  * An array of tuples where:
@@ -343,64 +343,43 @@ type LockTwoBorder = {
343
343
  *
344
344
  */
345
345
  type LockMultInterval = Array<[
346
- string,
347
- string
346
+ string | number | bigint,
347
+ string | number | bigint
348
348
  ]>;
349
- /**
350
- * Details of a transaction that can be sent to the blockchain
351
- */
352
- type TransactionSimple = {
353
- /**
354
- * Contract execution data
355
- */
356
- data: string;
357
- /**
358
- * Address of a contract to interact with
359
- */
360
- to: string;
361
- };
362
- /**
363
- * Details of a transaction that can be sent to the blockchain
364
- */
365
- type DeployMarketTxSchema = TransactionSimple;
366
349
  type DeployMarketRequestSchema = {
367
350
  /**
368
- * Supported chain id
351
+ * Id of targeted chain
369
352
  */
370
353
  chainId: '11155111' | '31337';
371
- marketName: string;
372
354
  paymentAssets: Array<string>;
355
+ adminAddress: string;
373
356
  };
374
- /**
375
- * Details of a transaction that can be sent to the blockchain
376
- */
377
- type CreateFractionsTxSchema = TransactionSimple;
378
357
  type CreateFractionsRequestSchema = {
379
358
  /**
380
359
  * Supported chain id
381
360
  */
382
361
  chainId: '11155111' | '31337';
383
- market: unknown;
362
+ market: string;
384
363
  wrappedTokens: Array<{
385
364
  type: 'ERC20';
386
- address: unknown;
365
+ address: string;
387
366
  values: Array<bigint>;
388
367
  } | {
389
368
  type: 'ERC721';
390
- address: unknown;
369
+ address: string;
391
370
  tokenIds: Array<bigint>;
392
371
  } | {
393
372
  type: 'ERC1155';
394
- address: unknown;
373
+ address: string;
395
374
  tokenIds: Array<bigint>;
396
375
  values: Array<bigint>;
397
376
  }>;
398
377
  funding: {
399
378
  pricePerFraction: bigint;
400
- address: unknown;
379
+ address: string;
401
380
  };
402
381
  fractions: {
403
- token: unknown;
382
+ token: string;
404
383
  symbol: string;
405
384
  name: string;
406
385
  };
@@ -413,10 +392,6 @@ type CreateFractionsRequestSchema = {
413
392
  hard: bigint;
414
393
  };
415
394
  };
416
- /**
417
- * Details of a transaction that can be sent to the blockchain
418
- */
419
- type GrantRoleTxSchema = TransactionSimple;
420
395
  type GrantMarketRoleRequestSchema = {
421
396
  /**
422
397
  * Supported chain id
@@ -424,36 +399,24 @@ type GrantMarketRoleRequestSchema = {
424
399
  chainId: '11155111' | '31337';
425
400
  marketAddress: string;
426
401
  users: Array<string>;
427
- role: 'ADMIN' | 'ISSUER' | 'INVESTOR';
402
+ role: 'ISSUER' | 'INVESTOR';
428
403
  };
429
- /**
430
- * Details of a transaction that can be sent to the blockchain
431
- */
432
- type ApproveSaleResponseSchema = TransactionSimple;
433
404
  type ApproveSaleRequestSchema = {
434
405
  /**
435
406
  * Supported chain id
436
407
  */
437
408
  chainId: '11155111' | '31337';
438
- marketAddress: unknown;
409
+ marketAddress: string;
439
410
  campaignId: bigint;
440
411
  };
441
- /**
442
- * Details of a transaction that can be sent to the blockchain
443
- */
444
- type CompleteSaleResponseSchema = TransactionSimple;
445
412
  type CompleteSaleRequestSchema = {
446
413
  /**
447
414
  * Supported chain id
448
415
  */
449
416
  chainId: '11155111' | '31337';
450
- marketAddress: unknown;
417
+ marketAddress: string;
451
418
  campaignId: bigint;
452
419
  };
453
- /**
454
- * Details of a transaction that can be sent to the blockchain
455
- */
456
- type PurchaseResponseSchema = TransactionSimple;
457
420
  type PurchaseRequestSchema = {
458
421
  /**
459
422
  * Supported chain id
@@ -463,15 +426,7 @@ type PurchaseRequestSchema = {
463
426
  campaignId: bigint;
464
427
  amountToBuy: bigint;
465
428
  };
466
- /**
467
- * Details of a transaction that can be sent to the blockchain
468
- */
469
- type WithdrawResponseSchema = TransactionSimple;
470
429
  type WithdrawRequestSchema = {
471
- /**
472
- * Supported chain id
473
- */
474
- chainId: '11155111' | '31337';
475
430
  market: unknown;
476
431
  campaignId: bigint;
477
432
  };
@@ -479,7 +434,7 @@ type EstimateGasResponse = {
479
434
  /**
480
435
  * Amount of gas (in WEI) that is needed for specified transaction
481
436
  */
482
- value: string;
437
+ value: bigint;
483
438
  };
484
439
  type TokenBalanceSchema = {
485
440
  address: string;
@@ -605,7 +560,7 @@ type GetStakingPoolsGetPoolV0Data = {
605
560
  /**
606
561
  * Id of a Pool
607
562
  */
608
- poolId: string;
563
+ poolId: string | number | bigint;
609
564
  /**
610
565
  * Address of deployed Platform contract
611
566
  */
@@ -651,7 +606,7 @@ type PostStakingStakesSearchStakesV0Data = {
651
606
  /**
652
607
  * Id of a Pool
653
608
  */
654
- poolId?: string;
609
+ poolId?: string | number | bigint;
655
610
  };
656
611
  };
657
612
  path?: never;
@@ -688,7 +643,7 @@ type PostStakingStakesSearchStakeEventsV0Data = {
688
643
  /**
689
644
  * Id of a Pool
690
645
  */
691
- poolId?: string;
646
+ poolId?: string | number | bigint;
692
647
  };
693
648
  };
694
649
  path?: never;
@@ -724,7 +679,7 @@ type GetStakingStakesGetStakeV0Data = {
724
679
  /**
725
680
  * Id of a Stake position (NFT Id)
726
681
  */
727
- stakeId: string;
682
+ stakeId: string | number | bigint;
728
683
  };
729
684
  url: '/staking/stakes/getStake/v0';
730
685
  };
@@ -819,7 +774,7 @@ type PostStakingRolesSearchRolesV0Data = {
819
774
  /**
820
775
  * Id of a Pool
821
776
  */
822
- poolId?: string;
777
+ poolId?: string | number | bigint;
823
778
  };
824
779
  };
825
780
  path?: never;
@@ -856,7 +811,7 @@ type PostStakingRolesSearchRoleEventsV0Data = {
856
811
  /**
857
812
  * Id of a Pool
858
813
  */
859
- poolId?: string;
814
+ poolId?: string | number | bigint;
860
815
  };
861
816
  };
862
817
  path?: never;
@@ -939,11 +894,11 @@ type GetStakingTemplatesReputationV0GetStakeEventResponses = {
939
894
  /**
940
895
  * Id of a Pool
941
896
  */
942
- poolId: string;
897
+ poolId: bigint;
943
898
  /**
944
899
  * Id of a Stake position (NFT Id)
945
900
  */
946
- stakeId: string;
901
+ stakeId: bigint;
947
902
  operator: string;
948
903
  owner: string;
949
904
  };
@@ -979,7 +934,7 @@ type GetStakingTemplatesReputationV0GetCreatePoolEventResponses = {
979
934
  /**
980
935
  * Id of a Pool
981
936
  */
982
- poolId: string;
937
+ poolId: bigint;
983
938
  rewardAssetHandler: string;
984
939
  inputAssetKeeper: string;
985
940
  };
@@ -994,7 +949,7 @@ type PostStakingTemplatesReputationV0GetRewardData = {
994
949
  /**
995
950
  * Id of a Stake position (NFT Id)
996
951
  */
997
- stakeId: string;
952
+ stakeId: string | number | bigint;
998
953
  };
999
954
  path?: never;
1000
955
  query?: never;
@@ -1023,11 +978,11 @@ type PostStakingTemplatesReputationV0PartialUnstakeData = {
1023
978
  /**
1024
979
  * Id of a Stake position (NFT Id)
1025
980
  */
1026
- stakeId: string;
981
+ stakeId: string | number | bigint;
1027
982
  /**
1028
983
  * The number of input packets to withdraw from the position, thereby decreasing it.
1029
984
  */
1030
- amount: string;
985
+ amount: string | number | bigint;
1031
986
  };
1032
987
  path?: never;
1033
988
  query?: never;
@@ -1056,11 +1011,11 @@ type PostStakingTemplatesReputationV0RestakeData = {
1056
1011
  /**
1057
1012
  * Id of a Pool
1058
1013
  */
1059
- poolId: string;
1014
+ poolId: string | number | bigint;
1060
1015
  /**
1061
1016
  * Number of Packets to be stacked. Each underlying asset must be approved to Staking Platform contract instance
1062
1017
  */
1063
- amount: string;
1018
+ amount: string | number | bigint;
1064
1019
  };
1065
1020
  path?: never;
1066
1021
  query?: never;
@@ -1089,11 +1044,11 @@ type PostStakingTemplatesReputationV0StakeData = {
1089
1044
  /**
1090
1045
  * Id of a Pool
1091
1046
  */
1092
- poolId: string;
1047
+ poolId: string | number | bigint;
1093
1048
  /**
1094
1049
  * Number of Packets to be stacked. Each underlying asset must be approved to Staking Platform contract instance
1095
1050
  */
1096
- amount: string;
1051
+ amount: string | number | bigint;
1097
1052
  };
1098
1053
  path?: never;
1099
1054
  query?: never;
@@ -1122,7 +1077,7 @@ type PostStakingTemplatesReputationV0UnstakeData = {
1122
1077
  /**
1123
1078
  * Id of a Stake position (NFT Id)
1124
1079
  */
1125
- stakeId: string;
1080
+ stakeId: string | number | bigint;
1126
1081
  };
1127
1082
  path?: never;
1128
1083
  query?: never;
@@ -1159,7 +1114,7 @@ type PostStakingTemplatesReputationV0CreatePoolData = {
1159
1114
  /**
1160
1115
  * Base campaign rate multiplier. How many Packets allocated to a Staker each second as a Reward
1161
1116
  */
1162
- rate: string;
1117
+ rate: string | number | bigint;
1163
1118
  };
1164
1119
  path?: never;
1165
1120
  query?: never;
@@ -1278,11 +1233,11 @@ type GetStakingTemplatesReputationLockV0GetStakeEventResponses = {
1278
1233
  /**
1279
1234
  * Id of a Pool
1280
1235
  */
1281
- poolId: string;
1236
+ poolId: bigint;
1282
1237
  /**
1283
1238
  * Id of a Stake position (NFT Id)
1284
1239
  */
1285
- stakeId: string;
1240
+ stakeId: bigint;
1286
1241
  operator: string;
1287
1242
  owner: string;
1288
1243
  };
@@ -1318,7 +1273,7 @@ type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses = {
1318
1273
  /**
1319
1274
  * Id of a Pool
1320
1275
  */
1321
- poolId: string;
1276
+ poolId: bigint;
1322
1277
  rewardAssetHandler: string;
1323
1278
  inputAssetKeeper: string;
1324
1279
  };
@@ -1333,7 +1288,7 @@ type PostStakingTemplatesReputationLockV0GetRewardData = {
1333
1288
  /**
1334
1289
  * Id of a Stake position (NFT Id)
1335
1290
  */
1336
- stakeId: string;
1291
+ stakeId: string | number | bigint;
1337
1292
  };
1338
1293
  path?: never;
1339
1294
  query?: never;
@@ -1362,11 +1317,11 @@ type PostStakingTemplatesReputationLockV0PartialUnstakeData = {
1362
1317
  /**
1363
1318
  * Id of a Stake position (NFT Id)
1364
1319
  */
1365
- stakeId: string;
1320
+ stakeId: string | number | bigint;
1366
1321
  /**
1367
1322
  * The number of input packets to withdraw from the position, thereby decreasing it.
1368
1323
  */
1369
- amount: string;
1324
+ amount: string | number | bigint;
1370
1325
  };
1371
1326
  path?: never;
1372
1327
  query?: never;
@@ -1395,15 +1350,15 @@ type PostStakingTemplatesReputationLockV0RestakeData = {
1395
1350
  /**
1396
1351
  * Id of a Pool
1397
1352
  */
1398
- poolId: string;
1353
+ poolId: string | number | bigint;
1399
1354
  /**
1400
1355
  * Number of Packets to be stacked. Each underlying asset must be approved to Staking Platform contract instance
1401
1356
  */
1402
- amount: string;
1357
+ amount: string | number | bigint;
1403
1358
  /**
1404
1359
  * The duration, in seconds, during which the position's staked Packets will be locked.
1405
1360
  */
1406
- lockPeriod: string;
1361
+ lockPeriod: string | number | bigint;
1407
1362
  };
1408
1363
  path?: never;
1409
1364
  query?: never;
@@ -1432,15 +1387,15 @@ type PostStakingTemplatesReputationLockV0StakeData = {
1432
1387
  /**
1433
1388
  * Id of a Pool
1434
1389
  */
1435
- poolId: string;
1390
+ poolId: string | number | bigint;
1436
1391
  /**
1437
1392
  * Number of Packets to be stacked. Each underlying asset must be approved to Staking Platform contract instance
1438
1393
  */
1439
- amount: string;
1394
+ amount: string | number | bigint;
1440
1395
  /**
1441
1396
  * Lock period in Seconds
1442
1397
  */
1443
- lockPeriod: string;
1398
+ lockPeriod: string | number | bigint;
1444
1399
  };
1445
1400
  path?: never;
1446
1401
  query?: never;
@@ -1469,7 +1424,7 @@ type PostStakingTemplatesReputationLockV0UnstakeData = {
1469
1424
  /**
1470
1425
  * Id of a Stake position (NFT Id)
1471
1426
  */
1472
- stakeId: string;
1427
+ stakeId: string | number | bigint;
1473
1428
  };
1474
1429
  path?: never;
1475
1430
  query?: never;
@@ -1507,7 +1462,7 @@ type PostStakingTemplatesReputationLockV0CreatePoolData = {
1507
1462
  /**
1508
1463
  * Base campaign rate multiplier. How many Packets allocated to a Staker each second as a Reward
1509
1464
  */
1510
- rate: string;
1465
+ rate: string | number | bigint;
1511
1466
  lock: LockTwoBorder;
1512
1467
  lockMult: LockMultInterval;
1513
1468
  };
@@ -1628,11 +1583,11 @@ type GetStakingTemplatesRwaV0GetStakeEventResponses = {
1628
1583
  /**
1629
1584
  * Id of a Pool
1630
1585
  */
1631
- poolId: string;
1586
+ poolId: bigint;
1632
1587
  /**
1633
1588
  * Id of a Stake position (NFT Id)
1634
1589
  */
1635
- stakeId: string;
1590
+ stakeId: bigint;
1636
1591
  operator: string;
1637
1592
  owner: string;
1638
1593
  };
@@ -1668,7 +1623,7 @@ type GetStakingTemplatesRwaV0GetCreatePoolEventResponses = {
1668
1623
  /**
1669
1624
  * Id of a Pool
1670
1625
  */
1671
- poolId: string;
1626
+ poolId: bigint;
1672
1627
  rewardAssetHandler: string;
1673
1628
  inputAssetKeeper: string;
1674
1629
  };
@@ -1683,7 +1638,7 @@ type PostStakingTemplatesRwaV0GetRewardData = {
1683
1638
  /**
1684
1639
  * Id of a Stake position (NFT Id)
1685
1640
  */
1686
- stakeId: string;
1641
+ stakeId: string | number | bigint;
1687
1642
  };
1688
1643
  path?: never;
1689
1644
  query?: never;
@@ -1712,11 +1667,11 @@ type PostStakingTemplatesRwaV0PartialUnstakeData = {
1712
1667
  /**
1713
1668
  * Id of a Stake position (NFT Id)
1714
1669
  */
1715
- stakeId: string;
1670
+ stakeId: string | number | bigint;
1716
1671
  /**
1717
1672
  * The number of input packets to withdraw from the position, thereby decreasing it.
1718
1673
  */
1719
- amount: string;
1674
+ amount: string | number | bigint;
1720
1675
  };
1721
1676
  path?: never;
1722
1677
  query?: never;
@@ -1745,11 +1700,11 @@ type PostStakingTemplatesRwaV0RestakeData = {
1745
1700
  /**
1746
1701
  * Id of a Pool
1747
1702
  */
1748
- poolId: string;
1703
+ poolId: string | number | bigint;
1749
1704
  /**
1750
1705
  * Number of Packets to be stacked. Each underlying asset must be approved to Staking Platform contract instance
1751
1706
  */
1752
- amount: string;
1707
+ amount: string | number | bigint;
1753
1708
  };
1754
1709
  path?: never;
1755
1710
  query?: never;
@@ -1778,11 +1733,11 @@ type PostStakingTemplatesRwaV0StakeData = {
1778
1733
  /**
1779
1734
  * Id of a Pool
1780
1735
  */
1781
- poolId: string;
1736
+ poolId: string | number | bigint;
1782
1737
  /**
1783
1738
  * Number of Packets to be stacked. Each underlying asset must be approved to Staking Platform contract instance
1784
1739
  */
1785
- amount: string;
1740
+ amount: string | number | bigint;
1786
1741
  };
1787
1742
  path?: never;
1788
1743
  query?: never;
@@ -1811,7 +1766,7 @@ type PostStakingTemplatesRwaV0UnstakeData = {
1811
1766
  /**
1812
1767
  * Id of a Stake position (NFT Id)
1813
1768
  */
1814
- stakeId: string;
1769
+ stakeId: string | number | bigint;
1815
1770
  };
1816
1771
  path?: never;
1817
1772
  query?: never;
@@ -1846,7 +1801,7 @@ type PostStakingTemplatesRwaV0CreatePoolData = {
1846
1801
  *
1847
1802
  * If 0, then no upper limit is enforced on the specified campaign.
1848
1803
  */
1849
- hardcapAmount: string;
1804
+ hardcapAmount: string | number | bigint;
1850
1805
  distribution: RewardDistributionComplex;
1851
1806
  erc20Input: Erc20Input;
1852
1807
  erc20Reward: Erc20Reward;
@@ -1915,11 +1870,11 @@ type PostStakingTemplatesRwaV0NotifyRewardsData = {
1915
1870
  /**
1916
1871
  * Id of a Pool
1917
1872
  */
1918
- poolId: string;
1873
+ poolId: string | number | bigint;
1919
1874
  /**
1920
1875
  * The number of Input Packets to add to Pool.
1921
1876
  */
1922
- amount: string;
1877
+ amount: string | number | bigint;
1923
1878
  };
1924
1879
  path?: never;
1925
1880
  query?: never;
@@ -1956,7 +1911,7 @@ type PostV0FractionsPlatformsDeployResponses = {
1956
1911
  /**
1957
1912
  * Returns transaction data for deploying a market
1958
1913
  */
1959
- 200: DeployMarketTxSchema;
1914
+ 200: Transaction;
1960
1915
  };
1961
1916
  type PostV0FractionsPlatformsDeployResponse = PostV0FractionsPlatformsDeployResponses[keyof PostV0FractionsPlatformsDeployResponses];
1962
1917
  type PostV0FractionsFractionsFractionsData = {
@@ -1976,7 +1931,7 @@ type PostV0FractionsFractionsFractionsResponses = {
1976
1931
  /**
1977
1932
  * Returns transaction data for creating fractions
1978
1933
  */
1979
- 200: CreateFractionsTxSchema;
1934
+ 200: Transaction;
1980
1935
  };
1981
1936
  type PostV0FractionsFractionsFractionsResponse = PostV0FractionsFractionsFractionsResponses[keyof PostV0FractionsFractionsFractionsResponses];
1982
1937
  type PostV0FractionsRolesGrantData = {
@@ -1996,7 +1951,7 @@ type PostV0FractionsRolesGrantResponses = {
1996
1951
  /**
1997
1952
  * Returns transaction data for deploying a market
1998
1953
  */
1999
- 200: GrantRoleTxSchema;
1954
+ 200: Transaction;
2000
1955
  };
2001
1956
  type PostV0FractionsRolesGrantResponse = PostV0FractionsRolesGrantResponses[keyof PostV0FractionsRolesGrantResponses];
2002
1957
  type PostV0FractionsSalesApproveData = {
@@ -2016,7 +1971,7 @@ type PostV0FractionsSalesApproveResponses = {
2016
1971
  /**
2017
1972
  * Returns transaction data for approving a sale
2018
1973
  */
2019
- 200: ApproveSaleResponseSchema;
1974
+ 200: Transaction;
2020
1975
  };
2021
1976
  type PostV0FractionsSalesApproveResponse = PostV0FractionsSalesApproveResponses[keyof PostV0FractionsSalesApproveResponses];
2022
1977
  type PostV0FractionsSalesCompleteData = {
@@ -2036,7 +1991,7 @@ type PostV0FractionsSalesCompleteResponses = {
2036
1991
  /**
2037
1992
  * Returns transaction data for completing a sale
2038
1993
  */
2039
- 200: CompleteSaleResponseSchema;
1994
+ 200: Transaction;
2040
1995
  };
2041
1996
  type PostV0FractionsSalesCompleteResponse = PostV0FractionsSalesCompleteResponses[keyof PostV0FractionsSalesCompleteResponses];
2042
1997
  type PostV0FractionsSalesPurchaseData = {
@@ -2056,7 +2011,7 @@ type PostV0FractionsSalesPurchaseResponses = {
2056
2011
  /**
2057
2012
  * Returns transaction data for making a purchase
2058
2013
  */
2059
- 200: PurchaseResponseSchema;
2014
+ 200: Transaction;
2060
2015
  };
2061
2016
  type PostV0FractionsSalesPurchaseResponse = PostV0FractionsSalesPurchaseResponses[keyof PostV0FractionsSalesPurchaseResponses];
2062
2017
  type PostV0FractionsSalesWithdrawData = {
@@ -2076,7 +2031,7 @@ type PostV0FractionsSalesWithdrawResponses = {
2076
2031
  /**
2077
2032
  * Returns transaction data for withdrawing fractions from a sale
2078
2033
  */
2079
- 200: WithdrawResponseSchema;
2034
+ 200: Transaction;
2080
2035
  };
2081
2036
  type PostV0FractionsSalesWithdrawResponse = PostV0FractionsSalesWithdrawResponses[keyof PostV0FractionsSalesWithdrawResponses];
2082
2037
  type PostGeneralEstimateGasData = {
@@ -2136,7 +2091,7 @@ type GetGeneralBalanceResponses = {
2136
2091
  /**
2137
2092
  * Amount of tokens in WEI
2138
2093
  */
2139
- balance: string;
2094
+ balance: bigint;
2140
2095
  };
2141
2096
  };
2142
2097
  type GetGeneralBalanceResponse = GetGeneralBalanceResponses[keyof GetGeneralBalanceResponses];
@@ -2209,6 +2164,11 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
2209
2164
  * custom client.
2210
2165
  */
2211
2166
  client?: Client;
2167
+ /**
2168
+ * You can pass arbitrary values through the `meta` object. This can be
2169
+ * used to access values that aren't defined as part of the SDK function.
2170
+ */
2171
+ meta?: Record<string, unknown>;
2212
2172
  };
2213
2173
 
2214
2174
  type IEnv = IApiEnv;
@@ -2238,7 +2198,7 @@ declare const api: {
2238
2198
  getBalances: <ThrowOnError extends boolean = false>(options?: Options<PostGeneralBalancesData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TokenBalanceSchema[], ZodError, ThrowOnError>;
2239
2199
  getBalance: <ThrowOnError extends boolean = false>(options: Options<GetGeneralBalanceData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2240
2200
  address: string;
2241
- balance: string;
2201
+ balance: bigint;
2242
2202
  }, ZodError, ThrowOnError>;
2243
2203
  estimateGas: <ThrowOnError extends boolean = false>(options?: Options<PostGeneralEstimateGasData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<EstimateGasResponse, ZodError, ThrowOnError>;
2244
2204
  };
@@ -2256,7 +2216,7 @@ declare const api: {
2256
2216
  stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0StakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2257
2217
  unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationV0UnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2258
2218
  getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationV0GetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2259
- poolId: string;
2219
+ poolId: bigint;
2260
2220
  rewardAssetHandler: string;
2261
2221
  inputAssetKeeper: string;
2262
2222
  }, ZodError, ThrowOnError>;
@@ -2265,8 +2225,8 @@ declare const api: {
2265
2225
  admin: string;
2266
2226
  }, ZodError, ThrowOnError>;
2267
2227
  getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationV0GetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2268
- poolId: string;
2269
- stakeId: string;
2228
+ poolId: bigint;
2229
+ stakeId: bigint;
2270
2230
  operator: string;
2271
2231
  owner: string;
2272
2232
  }, ZodError, ThrowOnError>;
@@ -2280,7 +2240,7 @@ declare const api: {
2280
2240
  stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0StakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2281
2241
  unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesReputationLockV0UnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2282
2242
  getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationLockV0GetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2283
- poolId: string;
2243
+ poolId: bigint;
2284
2244
  rewardAssetHandler: string;
2285
2245
  inputAssetKeeper: string;
2286
2246
  }, ZodError, ThrowOnError>;
@@ -2289,8 +2249,8 @@ declare const api: {
2289
2249
  admin: string;
2290
2250
  }, ZodError, ThrowOnError>;
2291
2251
  getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesReputationLockV0GetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2292
- poolId: string;
2293
- stakeId: string;
2252
+ poolId: bigint;
2253
+ stakeId: bigint;
2294
2254
  operator: string;
2295
2255
  owner: string;
2296
2256
  }, ZodError, ThrowOnError>;
@@ -2305,7 +2265,7 @@ declare const api: {
2305
2265
  stake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0StakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2306
2266
  unstake: <ThrowOnError extends boolean = false>(options?: Options<PostStakingTemplatesRwaV0UnstakeData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2307
2267
  getCreatePoolEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesRwaV0GetCreatePoolEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2308
- poolId: string;
2268
+ poolId: bigint;
2309
2269
  rewardAssetHandler: string;
2310
2270
  inputAssetKeeper: string;
2311
2271
  }, ZodError, ThrowOnError>;
@@ -2314,8 +2274,8 @@ declare const api: {
2314
2274
  admin: string;
2315
2275
  }, ZodError, ThrowOnError>;
2316
2276
  getStakeEvent: <ThrowOnError extends boolean = false>(options: Options<GetStakingTemplatesRwaV0GetStakeEventData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<{
2317
- poolId: string;
2318
- stakeId: string;
2277
+ poolId: bigint;
2278
+ stakeId: bigint;
2319
2279
  operator: string;
2320
2280
  owner: string;
2321
2281
  }, ZodError, ThrowOnError>;
@@ -2343,13 +2303,13 @@ declare const api: {
2343
2303
  };
2344
2304
  };
2345
2305
  fractions: {
2346
- deployMarket: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsPlatformsDeployData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TransactionSimple, ZodError, ThrowOnError>;
2347
- grantRole: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsRolesGrantData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TransactionSimple, ZodError, ThrowOnError>;
2348
- createFractions: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsFractionsFractionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TransactionSimple, ZodError, ThrowOnError>;
2349
- approveSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesApproveData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TransactionSimple, ZodError, ThrowOnError>;
2350
- comleteSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesCompleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TransactionSimple, ZodError, ThrowOnError>;
2351
- purchaseSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesPurchaseData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TransactionSimple, ZodError, ThrowOnError>;
2352
- withdrawSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesWithdrawData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<TransactionSimple, ZodError, ThrowOnError>;
2306
+ deployMarket: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsPlatformsDeployData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2307
+ grantRole: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsRolesGrantData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2308
+ createFractions: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsFractionsFractionsData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2309
+ approveSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesApproveData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2310
+ comleteSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesCompleteData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2311
+ purchaseSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesPurchaseData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2312
+ withdrawSale: <ThrowOnError extends boolean = false>(options?: Options<PostV0FractionsSalesWithdrawData, ThrowOnError>) => _hey_api_client_fetch.RequestResult<Transaction, ZodError, ThrowOnError>;
2353
2313
  };
2354
2314
  };
2355
2315
  type ApiClient = ReturnType<(typeof api)["createClient"]>;
@@ -2363,4 +2323,4 @@ type ApiResponse<T> = {
2363
2323
  };
2364
2324
  declare function handleApiResponse<T>(apiResponse: ApiResponse<T>): T;
2365
2325
 
2366
- export { type AmountMultInterval, type AmountTwoBorder, type ApiClient, type ApiResponse, type ApproveSaleRequestSchema, type ApproveSaleResponseSchema, type BalancesResponseSchema, type ClientOptions, type CompleteSaleRequestSchema, type CompleteSaleResponseSchema, type CreateFractionsRequestSchema, type CreateFractionsTxSchema, type DeployMarketRequestSchema, type DeployMarketTxSchema, type Erc20Input, type Erc20Reward, type Erc721Meta, type EstimateGasResponse, type GetGeneralBalanceData, type GetGeneralBalanceError, type GetGeneralBalanceErrors, type GetGeneralBalanceResponse, type GetGeneralBalanceResponses, type GetStakingPlatformsGetV0Data, type GetStakingPlatformsGetV0Error, type GetStakingPlatformsGetV0Errors, type GetStakingPlatformsGetV0Response, type GetStakingPlatformsGetV0Responses, type GetStakingPoolsGetPoolV0Data, type GetStakingPoolsGetPoolV0Error, type GetStakingPoolsGetPoolV0Errors, type GetStakingPoolsGetPoolV0Response, type GetStakingPoolsGetPoolV0Responses, type GetStakingRolesGetRolesV0Data, type GetStakingRolesGetRolesV0Error, type GetStakingRolesGetRolesV0Errors, type GetStakingRolesGetRolesV0Response, type GetStakingRolesGetRolesV0Responses, type GetStakingStakesGetStakeV0Data, type GetStakingStakesGetStakeV0Error, type GetStakingStakesGetStakeV0Errors, type GetStakingStakesGetStakeV0Response, type GetStakingStakesGetStakeV0Responses, type GetStakingTemplatesReputationLockV0GetCreatePoolEventData, type GetStakingTemplatesReputationLockV0GetCreatePoolEventError, type GetStakingTemplatesReputationLockV0GetCreatePoolEventErrors, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventError, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventErrors, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationLockV0GetStakeEventData, type GetStakingTemplatesReputationLockV0GetStakeEventError, type GetStakingTemplatesReputationLockV0GetStakeEventErrors, type GetStakingTemplatesReputationLockV0GetStakeEventResponse, type GetStakingTemplatesReputationLockV0GetStakeEventResponses, type GetStakingTemplatesReputationV0GetCreatePoolEventData, type GetStakingTemplatesReputationV0GetCreatePoolEventError, type GetStakingTemplatesReputationV0GetCreatePoolEventErrors, type GetStakingTemplatesReputationV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationV0GetPlatformDeployEventData, type GetStakingTemplatesReputationV0GetPlatformDeployEventError, type GetStakingTemplatesReputationV0GetPlatformDeployEventErrors, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationV0GetStakeEventData, type GetStakingTemplatesReputationV0GetStakeEventError, type GetStakingTemplatesReputationV0GetStakeEventErrors, type GetStakingTemplatesReputationV0GetStakeEventResponse, type GetStakingTemplatesReputationV0GetStakeEventResponses, type GetStakingTemplatesRwaV0GetCreatePoolEventData, type GetStakingTemplatesRwaV0GetCreatePoolEventError, type GetStakingTemplatesRwaV0GetCreatePoolEventErrors, type GetStakingTemplatesRwaV0GetCreatePoolEventResponse, type GetStakingTemplatesRwaV0GetCreatePoolEventResponses, type GetStakingTemplatesRwaV0GetPlatformDeployEventData, type GetStakingTemplatesRwaV0GetPlatformDeployEventError, type GetStakingTemplatesRwaV0GetPlatformDeployEventErrors, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponse, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses, type GetStakingTemplatesRwaV0GetStakeEventData, type GetStakingTemplatesRwaV0GetStakeEventError, type GetStakingTemplatesRwaV0GetStakeEventErrors, type GetStakingTemplatesRwaV0GetStakeEventResponse, type GetStakingTemplatesRwaV0GetStakeEventResponses, type GrantMarketRoleRequestSchema, type GrantRoleTxSchema, type IApiConfig, type IEnv, type IEnvName, type LockMultInterval, type LockTwoBorder, type PageRequest, type Platform, type Pool, type PostGeneralBalancesData, type PostGeneralBalancesError, type PostGeneralBalancesErrors, type PostGeneralBalancesResponse, type PostGeneralBalancesResponses, type PostGeneralEstimateGasData, type PostGeneralEstimateGasError, type PostGeneralEstimateGasErrors, type PostGeneralEstimateGasResponse, type PostGeneralEstimateGasResponses, type PostGeneralSearchBalancesData, type PostGeneralSearchBalancesError, type PostGeneralSearchBalancesErrors, type PostGeneralSearchBalancesResponse, type PostGeneralSearchBalancesResponses, type PostStakingPlatformsSearchV0Data, type PostStakingPlatformsSearchV0Error, type PostStakingPlatformsSearchV0Errors, type PostStakingPlatformsSearchV0Response, type PostStakingPlatformsSearchV0Responses, type PostStakingPoolsSearchPoolsV0Data, type PostStakingPoolsSearchPoolsV0Error, type PostStakingPoolsSearchPoolsV0Errors, type PostStakingPoolsSearchPoolsV0Response, type PostStakingPoolsSearchPoolsV0Responses, type PostStakingRolesGrantRoleV0Data, type PostStakingRolesGrantRoleV0Error, type PostStakingRolesGrantRoleV0Errors, type PostStakingRolesGrantRoleV0Response, type PostStakingRolesGrantRoleV0Responses, type PostStakingRolesSearchRoleEventsV0Data, type PostStakingRolesSearchRoleEventsV0Error, type PostStakingRolesSearchRoleEventsV0Errors, type PostStakingRolesSearchRoleEventsV0Response, type PostStakingRolesSearchRoleEventsV0Responses, type PostStakingRolesSearchRolesV0Data, type PostStakingRolesSearchRolesV0Error, type PostStakingRolesSearchRolesV0Errors, type PostStakingRolesSearchRolesV0Response, type PostStakingRolesSearchRolesV0Responses, type PostStakingStakesSearchStakeEventsV0Data, type PostStakingStakesSearchStakeEventsV0Error, type PostStakingStakesSearchStakeEventsV0Errors, type PostStakingStakesSearchStakeEventsV0Response, type PostStakingStakesSearchStakeEventsV0Responses, type PostStakingStakesSearchStakesV0Data, type PostStakingStakesSearchStakesV0Error, type PostStakingStakesSearchStakesV0Errors, type PostStakingStakesSearchStakesV0Response, type PostStakingStakesSearchStakesV0Responses, type PostStakingTemplatesReputationLockV0CreatePlatformData, type PostStakingTemplatesReputationLockV0CreatePlatformError, type PostStakingTemplatesReputationLockV0CreatePlatformErrors, type PostStakingTemplatesReputationLockV0CreatePlatformResponse, type PostStakingTemplatesReputationLockV0CreatePlatformResponses, type PostStakingTemplatesReputationLockV0CreatePoolData, type PostStakingTemplatesReputationLockV0CreatePoolError, type PostStakingTemplatesReputationLockV0CreatePoolErrors, type PostStakingTemplatesReputationLockV0CreatePoolResponse, type PostStakingTemplatesReputationLockV0CreatePoolResponses, type PostStakingTemplatesReputationLockV0GetRewardData, type PostStakingTemplatesReputationLockV0GetRewardError, type PostStakingTemplatesReputationLockV0GetRewardErrors, type PostStakingTemplatesReputationLockV0GetRewardResponse, type PostStakingTemplatesReputationLockV0GetRewardResponses, type PostStakingTemplatesReputationLockV0PartialUnstakeData, type PostStakingTemplatesReputationLockV0PartialUnstakeError, type PostStakingTemplatesReputationLockV0PartialUnstakeErrors, type PostStakingTemplatesReputationLockV0PartialUnstakeResponse, type PostStakingTemplatesReputationLockV0PartialUnstakeResponses, type PostStakingTemplatesReputationLockV0RestakeData, type PostStakingTemplatesReputationLockV0RestakeError, type PostStakingTemplatesReputationLockV0RestakeErrors, type PostStakingTemplatesReputationLockV0RestakeResponse, type PostStakingTemplatesReputationLockV0RestakeResponses, type PostStakingTemplatesReputationLockV0StakeData, type PostStakingTemplatesReputationLockV0StakeError, type PostStakingTemplatesReputationLockV0StakeErrors, type PostStakingTemplatesReputationLockV0StakeResponse, type PostStakingTemplatesReputationLockV0StakeResponses, type PostStakingTemplatesReputationLockV0UnstakeData, type PostStakingTemplatesReputationLockV0UnstakeError, type PostStakingTemplatesReputationLockV0UnstakeErrors, type PostStakingTemplatesReputationLockV0UnstakeResponse, type PostStakingTemplatesReputationLockV0UnstakeResponses, type PostStakingTemplatesReputationV0CreatePlatformData, type PostStakingTemplatesReputationV0CreatePlatformError, type PostStakingTemplatesReputationV0CreatePlatformErrors, type PostStakingTemplatesReputationV0CreatePlatformResponse, type PostStakingTemplatesReputationV0CreatePlatformResponses, type PostStakingTemplatesReputationV0CreatePoolData, type PostStakingTemplatesReputationV0CreatePoolError, type PostStakingTemplatesReputationV0CreatePoolErrors, type PostStakingTemplatesReputationV0CreatePoolResponse, type PostStakingTemplatesReputationV0CreatePoolResponses, type PostStakingTemplatesReputationV0GetRewardData, type PostStakingTemplatesReputationV0GetRewardError, type PostStakingTemplatesReputationV0GetRewardErrors, type PostStakingTemplatesReputationV0GetRewardResponse, type PostStakingTemplatesReputationV0GetRewardResponses, type PostStakingTemplatesReputationV0PartialUnstakeData, type PostStakingTemplatesReputationV0PartialUnstakeError, type PostStakingTemplatesReputationV0PartialUnstakeErrors, type PostStakingTemplatesReputationV0PartialUnstakeResponse, type PostStakingTemplatesReputationV0PartialUnstakeResponses, type PostStakingTemplatesReputationV0RestakeData, type PostStakingTemplatesReputationV0RestakeError, type PostStakingTemplatesReputationV0RestakeErrors, type PostStakingTemplatesReputationV0RestakeResponse, type PostStakingTemplatesReputationV0RestakeResponses, type PostStakingTemplatesReputationV0StakeData, type PostStakingTemplatesReputationV0StakeError, type PostStakingTemplatesReputationV0StakeErrors, type PostStakingTemplatesReputationV0StakeResponse, type PostStakingTemplatesReputationV0StakeResponses, type PostStakingTemplatesReputationV0UnstakeData, type PostStakingTemplatesReputationV0UnstakeError, type PostStakingTemplatesReputationV0UnstakeErrors, type PostStakingTemplatesReputationV0UnstakeResponse, type PostStakingTemplatesReputationV0UnstakeResponses, type PostStakingTemplatesRwaV0CreatePlatformData, type PostStakingTemplatesRwaV0CreatePlatformError, type PostStakingTemplatesRwaV0CreatePlatformErrors, type PostStakingTemplatesRwaV0CreatePlatformResponse, type PostStakingTemplatesRwaV0CreatePlatformResponses, type PostStakingTemplatesRwaV0CreatePoolData, type PostStakingTemplatesRwaV0CreatePoolError, type PostStakingTemplatesRwaV0CreatePoolErrors, type PostStakingTemplatesRwaV0CreatePoolResponse, type PostStakingTemplatesRwaV0CreatePoolResponses, type PostStakingTemplatesRwaV0GetRewardData, type PostStakingTemplatesRwaV0GetRewardError, type PostStakingTemplatesRwaV0GetRewardErrors, type PostStakingTemplatesRwaV0GetRewardResponse, type PostStakingTemplatesRwaV0GetRewardResponses, type PostStakingTemplatesRwaV0NotifyRewardsData, type PostStakingTemplatesRwaV0NotifyRewardsError, type PostStakingTemplatesRwaV0NotifyRewardsErrors, type PostStakingTemplatesRwaV0NotifyRewardsResponse, type PostStakingTemplatesRwaV0NotifyRewardsResponses, type PostStakingTemplatesRwaV0PartialUnstakeData, type PostStakingTemplatesRwaV0PartialUnstakeError, type PostStakingTemplatesRwaV0PartialUnstakeErrors, type PostStakingTemplatesRwaV0PartialUnstakeResponse, type PostStakingTemplatesRwaV0PartialUnstakeResponses, type PostStakingTemplatesRwaV0RestakeData, type PostStakingTemplatesRwaV0RestakeError, type PostStakingTemplatesRwaV0RestakeErrors, type PostStakingTemplatesRwaV0RestakeResponse, type PostStakingTemplatesRwaV0RestakeResponses, type PostStakingTemplatesRwaV0StakeData, type PostStakingTemplatesRwaV0StakeError, type PostStakingTemplatesRwaV0StakeErrors, type PostStakingTemplatesRwaV0StakeResponse, type PostStakingTemplatesRwaV0StakeResponses, type PostStakingTemplatesRwaV0UnstakeData, type PostStakingTemplatesRwaV0UnstakeError, type PostStakingTemplatesRwaV0UnstakeErrors, type PostStakingTemplatesRwaV0UnstakeResponse, type PostStakingTemplatesRwaV0UnstakeResponses, type PostV0FractionsFractionsFractionsData, type PostV0FractionsFractionsFractionsError, type PostV0FractionsFractionsFractionsErrors, type PostV0FractionsFractionsFractionsResponse, type PostV0FractionsFractionsFractionsResponses, type PostV0FractionsPlatformsDeployData, type PostV0FractionsPlatformsDeployError, type PostV0FractionsPlatformsDeployErrors, type PostV0FractionsPlatformsDeployResponse, type PostV0FractionsPlatformsDeployResponses, type PostV0FractionsRolesGrantData, type PostV0FractionsRolesGrantError, type PostV0FractionsRolesGrantErrors, type PostV0FractionsRolesGrantResponse, type PostV0FractionsRolesGrantResponses, type PostV0FractionsSalesApproveData, type PostV0FractionsSalesApproveError, type PostV0FractionsSalesApproveErrors, type PostV0FractionsSalesApproveResponse, type PostV0FractionsSalesApproveResponses, type PostV0FractionsSalesCompleteData, type PostV0FractionsSalesCompleteError, type PostV0FractionsSalesCompleteErrors, type PostV0FractionsSalesCompleteResponse, type PostV0FractionsSalesCompleteResponses, type PostV0FractionsSalesPurchaseData, type PostV0FractionsSalesPurchaseError, type PostV0FractionsSalesPurchaseErrors, type PostV0FractionsSalesPurchaseResponse, type PostV0FractionsSalesPurchaseResponses, type PostV0FractionsSalesWithdrawData, type PostV0FractionsSalesWithdrawError, type PostV0FractionsSalesWithdrawErrors, type PostV0FractionsSalesWithdrawResponse, type PostV0FractionsSalesWithdrawResponses, type PurchaseRequestSchema, type PurchaseResponseSchema, type RewardDistributionComplex, type Role, type RoleAssignment, type Stake, type StakeEvent, type TokenBalanceSchema, type Transaction, type TransactionSimple, type WithdrawRequestSchema, type WithdrawResponseSchema, type ZodError, api, envs, getEnv, handleApiResponse };
2326
+ export { type AmountMultInterval, type AmountTwoBorder, type ApiClient, type ApiResponse, type ApproveSaleRequestSchema, type BalancesResponseSchema, type ClientOptions, type CompleteSaleRequestSchema, type CreateFractionsRequestSchema, type DeployMarketRequestSchema, type Erc20Input, type Erc20Reward, type Erc721Meta, type EstimateGasResponse, type GetGeneralBalanceData, type GetGeneralBalanceError, type GetGeneralBalanceErrors, type GetGeneralBalanceResponse, type GetGeneralBalanceResponses, type GetStakingPlatformsGetV0Data, type GetStakingPlatformsGetV0Error, type GetStakingPlatformsGetV0Errors, type GetStakingPlatformsGetV0Response, type GetStakingPlatformsGetV0Responses, type GetStakingPoolsGetPoolV0Data, type GetStakingPoolsGetPoolV0Error, type GetStakingPoolsGetPoolV0Errors, type GetStakingPoolsGetPoolV0Response, type GetStakingPoolsGetPoolV0Responses, type GetStakingRolesGetRolesV0Data, type GetStakingRolesGetRolesV0Error, type GetStakingRolesGetRolesV0Errors, type GetStakingRolesGetRolesV0Response, type GetStakingRolesGetRolesV0Responses, type GetStakingStakesGetStakeV0Data, type GetStakingStakesGetStakeV0Error, type GetStakingStakesGetStakeV0Errors, type GetStakingStakesGetStakeV0Response, type GetStakingStakesGetStakeV0Responses, type GetStakingTemplatesReputationLockV0GetCreatePoolEventData, type GetStakingTemplatesReputationLockV0GetCreatePoolEventError, type GetStakingTemplatesReputationLockV0GetCreatePoolEventErrors, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationLockV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventData, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventError, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventErrors, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationLockV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationLockV0GetStakeEventData, type GetStakingTemplatesReputationLockV0GetStakeEventError, type GetStakingTemplatesReputationLockV0GetStakeEventErrors, type GetStakingTemplatesReputationLockV0GetStakeEventResponse, type GetStakingTemplatesReputationLockV0GetStakeEventResponses, type GetStakingTemplatesReputationV0GetCreatePoolEventData, type GetStakingTemplatesReputationV0GetCreatePoolEventError, type GetStakingTemplatesReputationV0GetCreatePoolEventErrors, type GetStakingTemplatesReputationV0GetCreatePoolEventResponse, type GetStakingTemplatesReputationV0GetCreatePoolEventResponses, type GetStakingTemplatesReputationV0GetPlatformDeployEventData, type GetStakingTemplatesReputationV0GetPlatformDeployEventError, type GetStakingTemplatesReputationV0GetPlatformDeployEventErrors, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponse, type GetStakingTemplatesReputationV0GetPlatformDeployEventResponses, type GetStakingTemplatesReputationV0GetStakeEventData, type GetStakingTemplatesReputationV0GetStakeEventError, type GetStakingTemplatesReputationV0GetStakeEventErrors, type GetStakingTemplatesReputationV0GetStakeEventResponse, type GetStakingTemplatesReputationV0GetStakeEventResponses, type GetStakingTemplatesRwaV0GetCreatePoolEventData, type GetStakingTemplatesRwaV0GetCreatePoolEventError, type GetStakingTemplatesRwaV0GetCreatePoolEventErrors, type GetStakingTemplatesRwaV0GetCreatePoolEventResponse, type GetStakingTemplatesRwaV0GetCreatePoolEventResponses, type GetStakingTemplatesRwaV0GetPlatformDeployEventData, type GetStakingTemplatesRwaV0GetPlatformDeployEventError, type GetStakingTemplatesRwaV0GetPlatformDeployEventErrors, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponse, type GetStakingTemplatesRwaV0GetPlatformDeployEventResponses, type GetStakingTemplatesRwaV0GetStakeEventData, type GetStakingTemplatesRwaV0GetStakeEventError, type GetStakingTemplatesRwaV0GetStakeEventErrors, type GetStakingTemplatesRwaV0GetStakeEventResponse, type GetStakingTemplatesRwaV0GetStakeEventResponses, type GrantMarketRoleRequestSchema, type IApiConfig, type IEnv, type IEnvName, type LockMultInterval, type LockTwoBorder, type PageRequest, type Platform, type Pool, type PostGeneralBalancesData, type PostGeneralBalancesError, type PostGeneralBalancesErrors, type PostGeneralBalancesResponse, type PostGeneralBalancesResponses, type PostGeneralEstimateGasData, type PostGeneralEstimateGasError, type PostGeneralEstimateGasErrors, type PostGeneralEstimateGasResponse, type PostGeneralEstimateGasResponses, type PostGeneralSearchBalancesData, type PostGeneralSearchBalancesError, type PostGeneralSearchBalancesErrors, type PostGeneralSearchBalancesResponse, type PostGeneralSearchBalancesResponses, type PostStakingPlatformsSearchV0Data, type PostStakingPlatformsSearchV0Error, type PostStakingPlatformsSearchV0Errors, type PostStakingPlatformsSearchV0Response, type PostStakingPlatformsSearchV0Responses, type PostStakingPoolsSearchPoolsV0Data, type PostStakingPoolsSearchPoolsV0Error, type PostStakingPoolsSearchPoolsV0Errors, type PostStakingPoolsSearchPoolsV0Response, type PostStakingPoolsSearchPoolsV0Responses, type PostStakingRolesGrantRoleV0Data, type PostStakingRolesGrantRoleV0Error, type PostStakingRolesGrantRoleV0Errors, type PostStakingRolesGrantRoleV0Response, type PostStakingRolesGrantRoleV0Responses, type PostStakingRolesSearchRoleEventsV0Data, type PostStakingRolesSearchRoleEventsV0Error, type PostStakingRolesSearchRoleEventsV0Errors, type PostStakingRolesSearchRoleEventsV0Response, type PostStakingRolesSearchRoleEventsV0Responses, type PostStakingRolesSearchRolesV0Data, type PostStakingRolesSearchRolesV0Error, type PostStakingRolesSearchRolesV0Errors, type PostStakingRolesSearchRolesV0Response, type PostStakingRolesSearchRolesV0Responses, type PostStakingStakesSearchStakeEventsV0Data, type PostStakingStakesSearchStakeEventsV0Error, type PostStakingStakesSearchStakeEventsV0Errors, type PostStakingStakesSearchStakeEventsV0Response, type PostStakingStakesSearchStakeEventsV0Responses, type PostStakingStakesSearchStakesV0Data, type PostStakingStakesSearchStakesV0Error, type PostStakingStakesSearchStakesV0Errors, type PostStakingStakesSearchStakesV0Response, type PostStakingStakesSearchStakesV0Responses, type PostStakingTemplatesReputationLockV0CreatePlatformData, type PostStakingTemplatesReputationLockV0CreatePlatformError, type PostStakingTemplatesReputationLockV0CreatePlatformErrors, type PostStakingTemplatesReputationLockV0CreatePlatformResponse, type PostStakingTemplatesReputationLockV0CreatePlatformResponses, type PostStakingTemplatesReputationLockV0CreatePoolData, type PostStakingTemplatesReputationLockV0CreatePoolError, type PostStakingTemplatesReputationLockV0CreatePoolErrors, type PostStakingTemplatesReputationLockV0CreatePoolResponse, type PostStakingTemplatesReputationLockV0CreatePoolResponses, type PostStakingTemplatesReputationLockV0GetRewardData, type PostStakingTemplatesReputationLockV0GetRewardError, type PostStakingTemplatesReputationLockV0GetRewardErrors, type PostStakingTemplatesReputationLockV0GetRewardResponse, type PostStakingTemplatesReputationLockV0GetRewardResponses, type PostStakingTemplatesReputationLockV0PartialUnstakeData, type PostStakingTemplatesReputationLockV0PartialUnstakeError, type PostStakingTemplatesReputationLockV0PartialUnstakeErrors, type PostStakingTemplatesReputationLockV0PartialUnstakeResponse, type PostStakingTemplatesReputationLockV0PartialUnstakeResponses, type PostStakingTemplatesReputationLockV0RestakeData, type PostStakingTemplatesReputationLockV0RestakeError, type PostStakingTemplatesReputationLockV0RestakeErrors, type PostStakingTemplatesReputationLockV0RestakeResponse, type PostStakingTemplatesReputationLockV0RestakeResponses, type PostStakingTemplatesReputationLockV0StakeData, type PostStakingTemplatesReputationLockV0StakeError, type PostStakingTemplatesReputationLockV0StakeErrors, type PostStakingTemplatesReputationLockV0StakeResponse, type PostStakingTemplatesReputationLockV0StakeResponses, type PostStakingTemplatesReputationLockV0UnstakeData, type PostStakingTemplatesReputationLockV0UnstakeError, type PostStakingTemplatesReputationLockV0UnstakeErrors, type PostStakingTemplatesReputationLockV0UnstakeResponse, type PostStakingTemplatesReputationLockV0UnstakeResponses, type PostStakingTemplatesReputationV0CreatePlatformData, type PostStakingTemplatesReputationV0CreatePlatformError, type PostStakingTemplatesReputationV0CreatePlatformErrors, type PostStakingTemplatesReputationV0CreatePlatformResponse, type PostStakingTemplatesReputationV0CreatePlatformResponses, type PostStakingTemplatesReputationV0CreatePoolData, type PostStakingTemplatesReputationV0CreatePoolError, type PostStakingTemplatesReputationV0CreatePoolErrors, type PostStakingTemplatesReputationV0CreatePoolResponse, type PostStakingTemplatesReputationV0CreatePoolResponses, type PostStakingTemplatesReputationV0GetRewardData, type PostStakingTemplatesReputationV0GetRewardError, type PostStakingTemplatesReputationV0GetRewardErrors, type PostStakingTemplatesReputationV0GetRewardResponse, type PostStakingTemplatesReputationV0GetRewardResponses, type PostStakingTemplatesReputationV0PartialUnstakeData, type PostStakingTemplatesReputationV0PartialUnstakeError, type PostStakingTemplatesReputationV0PartialUnstakeErrors, type PostStakingTemplatesReputationV0PartialUnstakeResponse, type PostStakingTemplatesReputationV0PartialUnstakeResponses, type PostStakingTemplatesReputationV0RestakeData, type PostStakingTemplatesReputationV0RestakeError, type PostStakingTemplatesReputationV0RestakeErrors, type PostStakingTemplatesReputationV0RestakeResponse, type PostStakingTemplatesReputationV0RestakeResponses, type PostStakingTemplatesReputationV0StakeData, type PostStakingTemplatesReputationV0StakeError, type PostStakingTemplatesReputationV0StakeErrors, type PostStakingTemplatesReputationV0StakeResponse, type PostStakingTemplatesReputationV0StakeResponses, type PostStakingTemplatesReputationV0UnstakeData, type PostStakingTemplatesReputationV0UnstakeError, type PostStakingTemplatesReputationV0UnstakeErrors, type PostStakingTemplatesReputationV0UnstakeResponse, type PostStakingTemplatesReputationV0UnstakeResponses, type PostStakingTemplatesRwaV0CreatePlatformData, type PostStakingTemplatesRwaV0CreatePlatformError, type PostStakingTemplatesRwaV0CreatePlatformErrors, type PostStakingTemplatesRwaV0CreatePlatformResponse, type PostStakingTemplatesRwaV0CreatePlatformResponses, type PostStakingTemplatesRwaV0CreatePoolData, type PostStakingTemplatesRwaV0CreatePoolError, type PostStakingTemplatesRwaV0CreatePoolErrors, type PostStakingTemplatesRwaV0CreatePoolResponse, type PostStakingTemplatesRwaV0CreatePoolResponses, type PostStakingTemplatesRwaV0GetRewardData, type PostStakingTemplatesRwaV0GetRewardError, type PostStakingTemplatesRwaV0GetRewardErrors, type PostStakingTemplatesRwaV0GetRewardResponse, type PostStakingTemplatesRwaV0GetRewardResponses, type PostStakingTemplatesRwaV0NotifyRewardsData, type PostStakingTemplatesRwaV0NotifyRewardsError, type PostStakingTemplatesRwaV0NotifyRewardsErrors, type PostStakingTemplatesRwaV0NotifyRewardsResponse, type PostStakingTemplatesRwaV0NotifyRewardsResponses, type PostStakingTemplatesRwaV0PartialUnstakeData, type PostStakingTemplatesRwaV0PartialUnstakeError, type PostStakingTemplatesRwaV0PartialUnstakeErrors, type PostStakingTemplatesRwaV0PartialUnstakeResponse, type PostStakingTemplatesRwaV0PartialUnstakeResponses, type PostStakingTemplatesRwaV0RestakeData, type PostStakingTemplatesRwaV0RestakeError, type PostStakingTemplatesRwaV0RestakeErrors, type PostStakingTemplatesRwaV0RestakeResponse, type PostStakingTemplatesRwaV0RestakeResponses, type PostStakingTemplatesRwaV0StakeData, type PostStakingTemplatesRwaV0StakeError, type PostStakingTemplatesRwaV0StakeErrors, type PostStakingTemplatesRwaV0StakeResponse, type PostStakingTemplatesRwaV0StakeResponses, type PostStakingTemplatesRwaV0UnstakeData, type PostStakingTemplatesRwaV0UnstakeError, type PostStakingTemplatesRwaV0UnstakeErrors, type PostStakingTemplatesRwaV0UnstakeResponse, type PostStakingTemplatesRwaV0UnstakeResponses, type PostV0FractionsFractionsFractionsData, type PostV0FractionsFractionsFractionsError, type PostV0FractionsFractionsFractionsErrors, type PostV0FractionsFractionsFractionsResponse, type PostV0FractionsFractionsFractionsResponses, type PostV0FractionsPlatformsDeployData, type PostV0FractionsPlatformsDeployError, type PostV0FractionsPlatformsDeployErrors, type PostV0FractionsPlatformsDeployResponse, type PostV0FractionsPlatformsDeployResponses, type PostV0FractionsRolesGrantData, type PostV0FractionsRolesGrantError, type PostV0FractionsRolesGrantErrors, type PostV0FractionsRolesGrantResponse, type PostV0FractionsRolesGrantResponses, type PostV0FractionsSalesApproveData, type PostV0FractionsSalesApproveError, type PostV0FractionsSalesApproveErrors, type PostV0FractionsSalesApproveResponse, type PostV0FractionsSalesApproveResponses, type PostV0FractionsSalesCompleteData, type PostV0FractionsSalesCompleteError, type PostV0FractionsSalesCompleteErrors, type PostV0FractionsSalesCompleteResponse, type PostV0FractionsSalesCompleteResponses, type PostV0FractionsSalesPurchaseData, type PostV0FractionsSalesPurchaseError, type PostV0FractionsSalesPurchaseErrors, type PostV0FractionsSalesPurchaseResponse, type PostV0FractionsSalesPurchaseResponses, type PostV0FractionsSalesWithdrawData, type PostV0FractionsSalesWithdrawError, type PostV0FractionsSalesWithdrawErrors, type PostV0FractionsSalesWithdrawResponse, type PostV0FractionsSalesWithdrawResponses, type PurchaseRequestSchema, type RewardDistributionComplex, type Role, type RoleAssignment, type Stake, type StakeEvent, type TokenBalanceSchema, type Transaction, type WithdrawRequestSchema, type ZodError, api, envs, getEnv, handleApiResponse };