@dodoex/dodo-contract-request 1.25.0-alpha.1 → 1.26.0

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.
Files changed (138) hide show
  1. package/CHANGELOG.md +26 -66
  2. package/contract-config/berachain.json +2 -4
  3. package/contract-config/monad.json +65 -0
  4. package/contract-config/sepolia.json +1 -3
  5. package/dist/index.cjs +1 -1
  6. package/dist/index.js +1 -1
  7. package/dist/types/config/index.d.ts +2 -6
  8. package/dist/types/config/{birdlayer.d.ts → monad.d.ts} +1 -1
  9. package/dist/types/config/sepolia.d.ts +0 -2
  10. package/dist/types/contract/AlgebraPool.d.ts +15 -15
  11. package/dist/types/contract/BuyoutModel.d.ts +6 -6
  12. package/dist/types/contract/CP.d.ts +10 -10
  13. package/dist/types/contract/CloneFactory.d.ts +1 -1
  14. package/dist/types/contract/CrowdPoolingFactory.d.ts +12 -12
  15. package/dist/types/contract/CustomERC20.d.ts +9 -9
  16. package/dist/types/contract/CustomMintableERC20.d.ts +11 -11
  17. package/dist/types/contract/D3Proxy.d.ts +9 -9
  18. package/dist/types/contract/D3Vault.d.ts +36 -36
  19. package/dist/types/contract/DODOApprove.d.ts +8 -8
  20. package/dist/types/contract/DODOApproveProxy.d.ts +9 -9
  21. package/dist/types/contract/DODOCalleeHelper.d.ts +4 -4
  22. package/dist/types/contract/DODOCirculationHelper.d.ts +5 -5
  23. package/dist/types/contract/DODOCpProxy.d.ts +2 -2
  24. package/dist/types/contract/DODOCpProxyWithoutGlobalQuota.d.ts +2 -2
  25. package/dist/types/contract/DODODppProxy.d.ts +2 -2
  26. package/dist/types/contract/DODODspProxy.d.ts +3 -3
  27. package/dist/types/contract/DODODspProxyWithoutGSP.d.ts +2 -2
  28. package/dist/types/contract/DODOFeeRouteProxy1.d.ts +13 -13
  29. package/dist/types/contract/DODOFeeRouteProxy2.d.ts +13 -13
  30. package/dist/types/contract/DODOIncentive.d.ts +9 -9
  31. package/dist/types/contract/DODOMineV2Factory.d.ts +8 -8
  32. package/dist/types/contract/DODOMineV3Proxy.d.ts +7 -7
  33. package/dist/types/contract/DODOMineV3ProxyWithoutPlatform.d.ts +7 -7
  34. package/dist/types/contract/DODOMineV3Registry.d.ts +7 -7
  35. package/dist/types/contract/DODONFT.d.ts +11 -11
  36. package/dist/types/contract/DODONFT1155.d.ts +8 -8
  37. package/dist/types/contract/DODONFTApprove.d.ts +11 -11
  38. package/dist/types/contract/DODONFTPoolProxy.d.ts +14 -14
  39. package/dist/types/contract/DODONFTProxy.d.ts +12 -12
  40. package/dist/types/contract/DODONFTRegistry.d.ts +7 -7
  41. package/dist/types/contract/DODOStarterProxy.d.ts +1 -1
  42. package/dist/types/contract/DODOV1.d.ts +35 -35
  43. package/dist/types/contract/DODOV1Adapter.d.ts +2 -2
  44. package/dist/types/contract/DODOV1Proxy.d.ts +7 -7
  45. package/dist/types/contract/DODOV2Adapter.d.ts +2 -2
  46. package/dist/types/contract/DODOV2Proxy02.d.ts +19 -19
  47. package/dist/types/contract/DPPAdvanced.d.ts +10 -10
  48. package/dist/types/contract/DPPAdvancedAdmin.d.ts +9 -9
  49. package/dist/types/contract/DPPFactory.d.ts +13 -13
  50. package/dist/types/contract/DSP.d.ts +11 -11
  51. package/dist/types/contract/DSPFactory.d.ts +7 -7
  52. package/dist/types/contract/DVM.d.ts +11 -11
  53. package/dist/types/contract/DVMFactory.d.ts +7 -7
  54. package/dist/types/contract/ERC20.d.ts +5 -5
  55. package/dist/types/contract/ERC20MineV2.d.ts +13 -13
  56. package/dist/types/contract/ERC20MineV3.d.ts +13 -13
  57. package/dist/types/contract/ERC20V3Factory.d.ts +11 -11
  58. package/dist/types/contract/FeeRateDIP3Impl.d.ts +32 -41
  59. package/dist/types/contract/FeeRateModel.d.ts +4 -4
  60. package/dist/types/contract/GSP.d.ts +19 -19
  61. package/dist/types/contract/GSPFactory.d.ts +8 -8
  62. package/dist/types/contract/InitializableERC20.d.ts +4 -4
  63. package/dist/types/contract/LimitOrder.d.ts +11 -11
  64. package/dist/types/contract/LimitOrderBot.d.ts +9 -9
  65. package/dist/types/contract/LockedTokenVault.d.ts +9 -9
  66. package/dist/types/contract/MerkleDistributor.d.ts +1 -1
  67. package/dist/types/contract/Multicall.d.ts +1 -1
  68. package/dist/types/contract/MulticallWithValid.d.ts +1 -1
  69. package/dist/types/contract/NonfungiblePositionManager.d.ts +21 -21
  70. package/dist/types/contract/NonfungiblePositionManagerAlgebra.d.ts +24 -24
  71. package/dist/types/contract/PermissionManager.d.ts +9 -9
  72. package/dist/types/contract/UniswapV2Factory.d.ts +4 -4
  73. package/dist/types/contract/UniswapV2FactoryFixedFee.d.ts +3 -3
  74. package/dist/types/contract/UniswapV2Pair.d.ts +12 -12
  75. package/dist/types/contract/UniswapV2Router02.d.ts +17 -17
  76. package/dist/types/contract/UniswapV2Router02FixedFee.d.ts +17 -17
  77. package/dist/types/contract/UniswapV3Factory.d.ts +3 -3
  78. package/dist/types/contract/dodoTeam.d.ts +16 -16
  79. package/dist/types/contract/vDODOToken.d.ts +16 -16
  80. package/dist/types/contractRequests.d.ts +1 -1
  81. package/dist/types/index.d.ts +0 -4
  82. package/package.json +1 -1
  83. package/src/config/index.ts +5 -13
  84. package/src/config/monad.ts +4 -0
  85. package/src/config/sepolia.ts +1 -1
  86. package/src/contract/CrowdPoolingFactory.ts +1 -1
  87. package/src/contract/DODOApprove.ts +1 -1
  88. package/src/contract/DODOApproveProxy.ts +1 -1
  89. package/src/contract/DODOCalleeHelper.ts +1 -1
  90. package/src/contract/DODOCpProxy.ts +1 -1
  91. package/src/contract/DODODppProxy.ts +1 -1
  92. package/src/contract/DODODspProxy.ts +1 -1
  93. package/src/contract/DODODspProxyWithoutGSP.ts +1 -1
  94. package/src/contract/DODOFeeRouteProxy1.ts +1 -1
  95. package/src/contract/DODOFeeRouteProxy2.ts +1 -1
  96. package/src/contract/DODOMineV2Factory.ts +1 -1
  97. package/src/contract/DODOMineV3Proxy.ts +1 -1
  98. package/src/contract/DODOMineV3Registry.ts +1 -1
  99. package/src/contract/DODOSellHelper.ts +1 -1
  100. package/src/contract/DODOSwapCalcHelper.ts +1 -1
  101. package/src/contract/DODOV1PmmHelper.ts +1 -1
  102. package/src/contract/DODOV2Adapter.ts +1 -1
  103. package/src/contract/DODOV2Proxy02.ts +1 -1
  104. package/src/contract/DODOV2RouteHelper.ts +1 -1
  105. package/src/contract/DPPFactory.ts +1 -1
  106. package/src/contract/DSPFactory.ts +1 -1
  107. package/src/contract/DVMFactory.ts +1 -1
  108. package/src/contract/ERC20Helper.ts +1 -1
  109. package/src/contract/ERC20V3Factory.ts +1 -1
  110. package/src/contract/FeeRateDIP3Impl.ts +75 -61
  111. package/src/contract/GSPFactory.ts +1 -1
  112. package/src/contract/Multicall.ts +1 -1
  113. package/src/contract/MulticallWithValid.ts +1 -1
  114. package/src/contract/NonfungiblePositionManager.ts +1 -1
  115. package/src/contract/UniswapV2Factory.ts +1 -1
  116. package/src/contract/UniswapV2Router02.ts +1 -1
  117. package/src/contract/UniswapV3Factory.ts +1 -1
  118. package/src/index.ts +0 -4
  119. package/.cache/contract-info/DFTManager.json +0 -2832
  120. package/.cache/contract-info/ICHIVault.json +0 -787
  121. package/.cache/contract-info/RWAManager.json +0 -1
  122. package/.cache/contract-info/RWAToken.json +0 -1
  123. package/contract-config/birdlayer.json +0 -66
  124. package/contract-config/zetachain-testnet.json +0 -68
  125. package/contract-config/zetachain.json +0 -61
  126. package/dist/types/config/zetachain-testnet.d.ts +0 -32
  127. package/dist/types/config/zetachain.d.ts +0 -30
  128. package/dist/types/contract/DFTManager.d.ts +0 -994
  129. package/dist/types/contract/ICHIVault.d.ts +0 -516
  130. package/dist/types/contract/RWAManager.d.ts +0 -264
  131. package/dist/types/contract/RWAToken.d.ts +0 -179
  132. package/src/config/birdlayer.ts +0 -4
  133. package/src/config/zetachain-testnet.ts +0 -4
  134. package/src/config/zetachain.ts +0 -4
  135. package/src/contract/DFTManager.ts +0 -1222
  136. package/src/contract/ICHIVault.ts +0 -863
  137. package/src/contract/RWAManager.ts +0 -479
  138. package/src/contract/RWAToken.ts +0 -330
@@ -10,7 +10,6 @@ export { default as avalanche } from './avalanche';
10
10
  export { default as base } from './base';
11
11
  export { default as berachainTestnet } from './berachain-testnet';
12
12
  export { default as berachain } from './berachain';
13
- export { default as birdlayer } from './birdlayer';
14
13
  export { default as bitlayer } from './bitlayer';
15
14
  export { default as bob } from './bob';
16
15
  export { default as bsc } from './bsc';
@@ -25,6 +24,7 @@ export { default as linea } from './linea';
25
24
  export { default as manta } from './manta';
26
25
  export { default as mantle } from './mantle';
27
26
  export { default as monadTestnet } from './monad-testnet';
27
+ export { default as monad } from './monad';
28
28
  export { default as morph } from './morph';
29
29
  export { default as neox } from './neox';
30
30
  export { default as nero } from './nero';
@@ -47,8 +47,6 @@ export { default as unichain } from './unichain';
47
47
  export { default as worldchain } from './worldchain';
48
48
  export { default as xLayer } from './x-layer';
49
49
  export { default as zeroMainnet } from './zero-mainnet';
50
- export { default as zetachainTestnet } from './zetachain-testnet';
51
- export { default as zetachain } from './zetachain';
52
50
  export { default as zircuitMainnet } from './zircuit-mainnet';
53
51
  export declare const multiCallAddressList: {
54
52
  "1": string;
@@ -56,6 +54,7 @@ export declare const multiCallAddressList: {
56
54
  "56": string;
57
55
  "130": string;
58
56
  "137": string;
57
+ "143": string;
59
58
  "146": string;
60
59
  "177": string;
61
60
  "196": string;
@@ -69,8 +68,6 @@ export declare const multiCallAddressList: {
69
68
  "2741": string;
70
69
  "2818": string;
71
70
  "5000": string;
72
- "7000": string;
73
- "7001": string;
74
71
  "8453": string;
75
72
  "10143": string;
76
73
  "10169": string;
@@ -79,7 +76,6 @@ export declare const multiCallAddressList: {
79
76
  "43114": string;
80
77
  "47763": string;
81
78
  "48900": string;
82
- "53456": string;
83
79
  "57073": string;
84
80
  "59144": string;
85
81
  "60808": string;
@@ -19,7 +19,7 @@ declare const CONTRACT_CONFIG: {
19
19
  DODOApproveProxy: string;
20
20
  DODOV2Adapter: string;
21
21
  DODOV2Proxy02: string;
22
- DODODspProxyWithoutGSP: string;
22
+ DODODspProxy: string;
23
23
  DODOCpProxy: string;
24
24
  DODODppProxy: string;
25
25
  DODOMineV3Proxy: string;
@@ -15,8 +15,6 @@ declare const CONTRACT_CONFIG: {
15
15
  DODOMineV3Registry: string;
16
16
  UniswapV2Factory: string;
17
17
  UniswapV2FactoryFixedFee: string;
18
- RWAToken: string;
19
- RWAManager: string;
20
18
  UniswapV3Factory: string;
21
19
  NonfungiblePositionManager: string;
22
20
  DODOApprove: string;
@@ -407,7 +407,7 @@ export declare function getFetchAlgebraPoolTotalFeeGrowth1TokenQueryOptions(chai
407
407
  * @param {string} data - bytes
408
408
  * @returns {string} encode data
409
409
  */
410
- export declare function encodeAlgebraPoolBurn(bottomTick: string | number, topTick: string | number, amount: string | number, data: string): any;
410
+ export declare function encodeAlgebraPoolBurn(bottomTick: string | number, topTick: string | number, amount: string | number, data: string): string;
411
411
  /**
412
412
  * encode collect
413
413
  * @param {string} recipient - address
@@ -417,7 +417,7 @@ export declare function encodeAlgebraPoolBurn(bottomTick: string | number, topTi
417
417
  * @param {string | number} amount1Requested - uint128
418
418
  * @returns {string} encode data
419
419
  */
420
- export declare function encodeAlgebraPoolCollect(recipient: string, bottomTick: string | number, topTick: string | number, amount0Requested: string | number, amount1Requested: string | number): any;
420
+ export declare function encodeAlgebraPoolCollect(recipient: string, bottomTick: string | number, topTick: string | number, amount0Requested: string | number, amount1Requested: string | number): string;
421
421
  /**
422
422
  * encode flash
423
423
  * @param {string} recipient - address
@@ -426,13 +426,13 @@ export declare function encodeAlgebraPoolCollect(recipient: string, bottomTick:
426
426
  * @param {string} data - bytes
427
427
  * @returns {string} encode data
428
428
  */
429
- export declare function encodeAlgebraPoolFlash(recipient: string, amount0: string | number, amount1: string | number, data: string): any;
429
+ export declare function encodeAlgebraPoolFlash(recipient: string, amount0: string | number, amount1: string | number, data: string): string;
430
430
  /**
431
431
  * encode initialize
432
432
  * @param {string | number} initialPrice - uint160
433
433
  * @returns {string} encode data
434
434
  */
435
- export declare function encodeAlgebraPoolInitialize(initialPrice: string | number): any;
435
+ export declare function encodeAlgebraPoolInitialize(initialPrice: string | number): string;
436
436
  /**
437
437
  * encode mint
438
438
  * @param {string} leftoversRecipient - address
@@ -443,49 +443,49 @@ export declare function encodeAlgebraPoolInitialize(initialPrice: string | numbe
443
443
  * @param {string} data - bytes
444
444
  * @returns {string} encode data
445
445
  */
446
- export declare function encodeAlgebraPoolMint(leftoversRecipient: string, recipient: string, bottomTick: string | number, topTick: string | number, liquidityDesired: string | number, data: string): any;
446
+ export declare function encodeAlgebraPoolMint(leftoversRecipient: string, recipient: string, bottomTick: string | number, topTick: string | number, liquidityDesired: string | number, data: string): string;
447
447
  /**
448
448
  * encode setCommunityFee
449
449
  * @param {string | number} newCommunityFee - uint16
450
450
  * @returns {string} encode data
451
451
  */
452
- export declare function encodeAlgebraPoolSetCommunityFee(newCommunityFee: string | number): any;
452
+ export declare function encodeAlgebraPoolSetCommunityFee(newCommunityFee: string | number): string;
453
453
  /**
454
454
  * encode setCommunityVault
455
455
  * @param {string} newCommunityVault - address
456
456
  * @returns {string} encode data
457
457
  */
458
- export declare function encodeAlgebraPoolSetCommunityVault(newCommunityVault: string): any;
458
+ export declare function encodeAlgebraPoolSetCommunityVault(newCommunityVault: string): string;
459
459
  /**
460
460
  * encode setFee
461
461
  * @param {string | number} newFee - uint16
462
462
  * @returns {string} encode data
463
463
  */
464
- export declare function encodeAlgebraPoolSetFee(newFee: string | number): any;
464
+ export declare function encodeAlgebraPoolSetFee(newFee: string | number): string;
465
465
  /**
466
466
  * encode setPlugin
467
467
  * @param {string} newPluginAddress - address
468
468
  * @returns {string} encode data
469
469
  */
470
- export declare function encodeAlgebraPoolSetPlugin(newPluginAddress: string): any;
470
+ export declare function encodeAlgebraPoolSetPlugin(newPluginAddress: string): string;
471
471
  /**
472
472
  * encode setPluginConfig
473
473
  * @param {string | number} newConfig - uint8
474
474
  * @returns {string} encode data
475
475
  */
476
- export declare function encodeAlgebraPoolSetPluginConfig(newConfig: string | number): any;
476
+ export declare function encodeAlgebraPoolSetPluginConfig(newConfig: string | number): string;
477
477
  /**
478
478
  * encode setTickSpacing
479
479
  * @param {string | number} newTickSpacing - int24
480
480
  * @returns {string} encode data
481
481
  */
482
- export declare function encodeAlgebraPoolSetTickSpacing(newTickSpacing: string | number): any;
482
+ export declare function encodeAlgebraPoolSetTickSpacing(newTickSpacing: string | number): string;
483
483
  /**
484
484
  * encode skim
485
485
 
486
486
  * @returns {string} encode data
487
487
  */
488
- export declare function encodeAlgebraPoolSkim(): any;
488
+ export declare function encodeAlgebraPoolSkim(): string;
489
489
  /**
490
490
  * encode swap
491
491
  * @param {string} recipient - address
@@ -495,7 +495,7 @@ export declare function encodeAlgebraPoolSkim(): any;
495
495
  * @param {string} data - bytes
496
496
  * @returns {string} encode data
497
497
  */
498
- export declare function encodeAlgebraPoolSwap(recipient: string, zeroToOne: boolean, amountRequired: string | number, limitSqrtPrice: string | number, data: string): any;
498
+ export declare function encodeAlgebraPoolSwap(recipient: string, zeroToOne: boolean, amountRequired: string | number, limitSqrtPrice: string | number, data: string): string;
499
499
  /**
500
500
  * encode swapWithPaymentInAdvance
501
501
  * @param {string} leftoversRecipient - address
@@ -506,10 +506,10 @@ export declare function encodeAlgebraPoolSwap(recipient: string, zeroToOne: bool
506
506
  * @param {string} data - bytes
507
507
  * @returns {string} encode data
508
508
  */
509
- export declare function encodeAlgebraPoolSwapWithPaymentInAdvance(leftoversRecipient: string, recipient: string, zeroToOne: boolean, amountToSell: string | number, limitSqrtPrice: string | number, data: string): any;
509
+ export declare function encodeAlgebraPoolSwapWithPaymentInAdvance(leftoversRecipient: string, recipient: string, zeroToOne: boolean, amountToSell: string | number, limitSqrtPrice: string | number, data: string): string;
510
510
  /**
511
511
  * encode sync
512
512
 
513
513
  * @returns {string} encode data
514
514
  */
515
- export declare function encodeAlgebraPoolSync(): any;
515
+ export declare function encodeAlgebraPoolSync(): string;
@@ -75,19 +75,19 @@ export declare function getFetchBuyoutModelGetBuyoutStatusQueryOptions(chainId:
75
75
  * @param {string} buyoutAddr - address
76
76
  * @returns {string} encode data
77
77
  */
78
- export declare function encodeBuyoutModelAddFragInfo(fragAddr: string, minFrag: string | number, maxFrag: string | number, buyoutAddr: string): any;
78
+ export declare function encodeBuyoutModelAddFragInfo(fragAddr: string, minFrag: string | number, maxFrag: string | number, buyoutAddr: string): string;
79
79
  /**
80
80
  * encode claimOwnership
81
81
 
82
82
  * @returns {string} encode data
83
83
  */
84
- export declare function encodeBuyoutModelClaimOwnership(): any;
84
+ export declare function encodeBuyoutModelClaimOwnership(): string;
85
85
  /**
86
86
  * encode initOwner
87
87
  * @param {string} newOwner - address
88
88
  * @returns {string} encode data
89
89
  */
90
- export declare function encodeBuyoutModelInitOwner(newOwner: string): any;
90
+ export declare function encodeBuyoutModelInitOwner(newOwner: string): string;
91
91
  /**
92
92
  * encode setFragInfo
93
93
  * @param {string} fragAddr - address
@@ -96,7 +96,7 @@ export declare function encodeBuyoutModelInitOwner(newOwner: string): any;
96
96
  * @param {string} buyoutAddr - address
97
97
  * @returns {string} encode data
98
98
  */
99
- export declare function encodeBuyoutModelSetFragInfo(fragAddr: string, minFrag: string | number, maxFrag: string | number, buyoutAddr: string): any;
99
+ export declare function encodeBuyoutModelSetFragInfo(fragAddr: string, minFrag: string | number, maxFrag: string | number, buyoutAddr: string): string;
100
100
  /**
101
101
  * encode setGlobalParam
102
102
  * @param {string | number} minFrag - uint256
@@ -104,10 +104,10 @@ export declare function encodeBuyoutModelSetFragInfo(fragAddr: string, minFrag:
104
104
  * @param {string | number} buyoutFee - uint256
105
105
  * @returns {string} encode data
106
106
  */
107
- export declare function encodeBuyoutModelSetGlobalParam(minFrag: string | number, maxFrag: string | number, buyoutFee: string | number): any;
107
+ export declare function encodeBuyoutModelSetGlobalParam(minFrag: string | number, maxFrag: string | number, buyoutFee: string | number): string;
108
108
  /**
109
109
  * encode transferOwnership
110
110
  * @param {string} newOwner - address
111
111
  * @returns {string} encode data
112
112
  */
113
- export declare function encodeBuyoutModelTransferOwnership(newOwner: string): any;
113
+ export declare function encodeBuyoutModelTransferOwnership(newOwner: string): string;
@@ -430,14 +430,14 @@ export declare function getFetchCPGetSharesQueryOptions(chainId: number | undefi
430
430
  * @param {string} to - address
431
431
  * @returns {string} encode data
432
432
  */
433
- export declare function encodeCPBid(to: string): any;
433
+ export declare function encodeCPBid(to: string): string;
434
434
  /**
435
435
  * encode bidderClaim
436
436
  * @param {string} to - address
437
437
  * @param {string} data - bytes
438
438
  * @returns {string} encode data
439
439
  */
440
- export declare function encodeCPBidderClaim(to: string, data: string): any;
440
+ export declare function encodeCPBidderClaim(to: string, data: string): string;
441
441
  /**
442
442
  * encode cancel
443
443
  * @param {string} to - address
@@ -445,25 +445,25 @@ export declare function encodeCPBidderClaim(to: string, data: string): any;
445
445
  * @param {string} data - bytes
446
446
  * @returns {string} encode data
447
447
  */
448
- export declare function encodeCPCancel(to: string, amount: string | number, data: string): any;
448
+ export declare function encodeCPCancel(to: string, amount: string | number, data: string): string;
449
449
  /**
450
450
  * encode claimLPToken
451
451
 
452
452
  * @returns {string} encode data
453
453
  */
454
- export declare function encodeCPClaimLPToken(): any;
454
+ export declare function encodeCPClaimLPToken(): string;
455
455
  /**
456
456
  * encode claimOwnership
457
457
 
458
458
  * @returns {string} encode data
459
459
  */
460
- export declare function encodeCPClaimOwnership(): any;
460
+ export declare function encodeCPClaimOwnership(): string;
461
461
  /**
462
462
  * encode emergencySettle
463
463
 
464
464
  * @returns {string} encode data
465
465
  */
466
- export declare function encodeCPEmergencySettle(): any;
466
+ export declare function encodeCPEmergencySettle(): string;
467
467
  /**
468
468
  * encode init
469
469
  * @param {Array<string>} addressList - address[]
@@ -472,22 +472,22 @@ export declare function encodeCPEmergencySettle(): any;
472
472
  * @param {boolean} isOpenTWAP - bool
473
473
  * @returns {string} encode data
474
474
  */
475
- export declare function encodeCPInit(addressList: Array<string>, timeLine: Array<string | number>, valueList: Array<string | number>, isOpenTWAP: boolean): any;
475
+ export declare function encodeCPInit(addressList: Array<string>, timeLine: Array<string | number>, valueList: Array<string | number>, isOpenTWAP: boolean): string;
476
476
  /**
477
477
  * encode initOwner
478
478
  * @param {string} newOwner - address
479
479
  * @returns {string} encode data
480
480
  */
481
- export declare function encodeCPInitOwner(newOwner: string): any;
481
+ export declare function encodeCPInitOwner(newOwner: string): string;
482
482
  /**
483
483
  * encode settle
484
484
 
485
485
  * @returns {string} encode data
486
486
  */
487
- export declare function encodeCPSettle(): any;
487
+ export declare function encodeCPSettle(): string;
488
488
  /**
489
489
  * encode transferOwnership
490
490
  * @param {string} newOwner - address
491
491
  * @returns {string} encode data
492
492
  */
493
- export declare function encodeCPTransferOwnership(newOwner: string): any;
493
+ export declare function encodeCPTransferOwnership(newOwner: string): string;
@@ -3,4 +3,4 @@
3
3
  * @param {string} prototype - address
4
4
  * @returns {string} encode data
5
5
  */
6
- export declare function encodeCloneFactoryClone(prototype: string): any;
6
+ export declare function encodeCloneFactoryClone(prototype: string): string;
@@ -230,13 +230,13 @@ export declare function getFetchCrowdPoolingFactoryGetCrowdPoolingByUserQueryOpt
230
230
 
231
231
  * @returns {string} encode data
232
232
  */
233
- export declare function encodeCrowdPoolingFactoryClaimOwnership(): any;
233
+ export declare function encodeCrowdPoolingFactoryClaimOwnership(): string;
234
234
  /**
235
235
  * encode createCrowdPooling
236
236
 
237
237
  * @returns {string} encode data
238
238
  */
239
- export declare function encodeCrowdPoolingFactoryCreateCrowdPooling(): any;
239
+ export declare function encodeCrowdPoolingFactoryCreateCrowdPooling(): string;
240
240
  /**
241
241
  * encode initCrowdPooling
242
242
  * @param {string} cpAddress - address
@@ -248,58 +248,58 @@ export declare function encodeCrowdPoolingFactoryCreateCrowdPooling(): any;
248
248
  * @param {boolean} isOpenTWAP - bool
249
249
  * @returns {string} encode data
250
250
  */
251
- export declare function encodeCrowdPoolingFactoryInitCrowdPooling(cpAddress: string, creator: string, baseToken: string, quoteToken: string, timeLine: Array<string | number>, valueList: Array<string | number>, isOpenTWAP: boolean): any;
251
+ export declare function encodeCrowdPoolingFactoryInitCrowdPooling(cpAddress: string, creator: string, baseToken: string, quoteToken: string, timeLine: Array<string | number>, valueList: Array<string | number>, isOpenTWAP: boolean): string;
252
252
  /**
253
253
  * encode initOwner
254
254
  * @param {string} newOwner - address
255
255
  * @returns {string} encode data
256
256
  */
257
- export declare function encodeCrowdPoolingFactoryInitOwner(newOwner: string): any;
257
+ export declare function encodeCrowdPoolingFactoryInitOwner(newOwner: string): string;
258
258
  /**
259
259
  * encode setCalmDuration
260
260
  * @param {string | number} _newCalmDuration - uint256
261
261
  * @returns {string} encode data
262
262
  */
263
- export declare function encodeCrowdPoolingFactorySetCalmDuration(_newCalmDuration: string | number): any;
263
+ export declare function encodeCrowdPoolingFactorySetCalmDuration(_newCalmDuration: string | number): string;
264
264
  /**
265
265
  * encode setCapRatio
266
266
  * @param {string | number} _newCapRatio - uint256
267
267
  * @returns {string} encode data
268
268
  */
269
- export declare function encodeCrowdPoolingFactorySetCapRatio(_newCapRatio: string | number): any;
269
+ export declare function encodeCrowdPoolingFactorySetCapRatio(_newCapRatio: string | number): string;
270
270
  /**
271
271
  * encode setCliffRate
272
272
  * @param {string | number} _newCliffRate - uint256
273
273
  * @returns {string} encode data
274
274
  */
275
- export declare function encodeCrowdPoolingFactorySetCliffRate(_newCliffRate: string | number): any;
275
+ export declare function encodeCrowdPoolingFactorySetCliffRate(_newCliffRate: string | number): string;
276
276
  /**
277
277
  * encode setFreezeDuration
278
278
  * @param {string | number} _newFreeDuration - uint256
279
279
  * @returns {string} encode data
280
280
  */
281
- export declare function encodeCrowdPoolingFactorySetFreezeDuration(_newFreeDuration: string | number): any;
281
+ export declare function encodeCrowdPoolingFactorySetFreezeDuration(_newFreeDuration: string | number): string;
282
282
  /**
283
283
  * encode setK
284
284
  * @param {string | number} _newK - uint256
285
285
  * @returns {string} encode data
286
286
  */
287
- export declare function encodeCrowdPoolingFactorySetK(_newK: string | number): any;
287
+ export declare function encodeCrowdPoolingFactorySetK(_newK: string | number): string;
288
288
  /**
289
289
  * encode setVestDuration
290
290
  * @param {string | number} _newVestDuration - uint256
291
291
  * @returns {string} encode data
292
292
  */
293
- export declare function encodeCrowdPoolingFactorySetVestDuration(_newVestDuration: string | number): any;
293
+ export declare function encodeCrowdPoolingFactorySetVestDuration(_newVestDuration: string | number): string;
294
294
  /**
295
295
  * encode transferOwnership
296
296
  * @param {string} newOwner - address
297
297
  * @returns {string} encode data
298
298
  */
299
- export declare function encodeCrowdPoolingFactoryTransferOwnership(newOwner: string): any;
299
+ export declare function encodeCrowdPoolingFactoryTransferOwnership(newOwner: string): string;
300
300
  /**
301
301
  * encode updateCPTemplate
302
302
  * @param {string} _newCPTemplate - address
303
303
  * @returns {string} encode data
304
304
  */
305
- export declare function encodeCrowdPoolingFactoryUpdateCPTemplate(_newCPTemplate: string): any;
305
+ export declare function encodeCrowdPoolingFactoryUpdateCPTemplate(_newCPTemplate: string): string;
@@ -138,26 +138,26 @@ export declare function getFetchCustomERC20TradeFeeRatioQueryOptions(chainId: nu
138
138
  * @param {string} zeroAddress - address
139
139
  * @returns {string} encode data
140
140
  */
141
- export declare function encodeCustomERC20AbandonOwnership(zeroAddress: string): any;
141
+ export declare function encodeCustomERC20AbandonOwnership(zeroAddress: string): string;
142
142
  /**
143
143
  * encode approve
144
144
  * @param {string} spender - address
145
145
  * @param {string | number} amount - uint256
146
146
  * @returns {string} encode data
147
147
  */
148
- export declare function encodeCustomERC20Approve(spender: string, amount: string | number): any;
148
+ export declare function encodeCustomERC20Approve(spender: string, amount: string | number): string;
149
149
  /**
150
150
  * encode changeTeamAccount
151
151
  * @param {string} newTeam - address
152
152
  * @returns {string} encode data
153
153
  */
154
- export declare function encodeCustomERC20ChangeTeamAccount(newTeam: string): any;
154
+ export declare function encodeCustomERC20ChangeTeamAccount(newTeam: string): string;
155
155
  /**
156
156
  * encode claimOwnership
157
157
 
158
158
  * @returns {string} encode data
159
159
  */
160
- export declare function encodeCustomERC20ClaimOwnership(): any;
160
+ export declare function encodeCustomERC20ClaimOwnership(): string;
161
161
  /**
162
162
  * encode init
163
163
  * @param {string} _creator - address
@@ -170,20 +170,20 @@ export declare function encodeCustomERC20ClaimOwnership(): any;
170
170
  * @param {string} _team - address
171
171
  * @returns {string} encode data
172
172
  */
173
- export declare function encodeCustomERC20Init(_creator: string, _totalSupply: string | number, _name: string, _symbol: string, _decimals: string | number, _tradeBurnRatio: string | number, _tradeFeeRatio: string | number, _team: string): any;
173
+ export declare function encodeCustomERC20Init(_creator: string, _totalSupply: string | number, _name: string, _symbol: string, _decimals: string | number, _tradeBurnRatio: string | number, _tradeFeeRatio: string | number, _team: string): string;
174
174
  /**
175
175
  * encode initOwner
176
176
  * @param {string} newOwner - address
177
177
  * @returns {string} encode data
178
178
  */
179
- export declare function encodeCustomERC20InitOwner(newOwner: string): any;
179
+ export declare function encodeCustomERC20InitOwner(newOwner: string): string;
180
180
  /**
181
181
  * encode transfer
182
182
  * @param {string} to - address
183
183
  * @param {string | number} amount - uint256
184
184
  * @returns {string} encode data
185
185
  */
186
- export declare function encodeCustomERC20Transfer(to: string, amount: string | number): any;
186
+ export declare function encodeCustomERC20Transfer(to: string, amount: string | number): string;
187
187
  /**
188
188
  * encode transferFrom
189
189
  * @param {string} from - address
@@ -191,10 +191,10 @@ export declare function encodeCustomERC20Transfer(to: string, amount: string | n
191
191
  * @param {string | number} amount - uint256
192
192
  * @returns {string} encode data
193
193
  */
194
- export declare function encodeCustomERC20TransferFrom(from: string, to: string, amount: string | number): any;
194
+ export declare function encodeCustomERC20TransferFrom(from: string, to: string, amount: string | number): string;
195
195
  /**
196
196
  * encode transferOwnership
197
197
  * @param {string} newOwner - address
198
198
  * @returns {string} encode data
199
199
  */
200
- export declare function encodeCustomERC20TransferOwnership(newOwner: string): any;
200
+ export declare function encodeCustomERC20TransferOwnership(newOwner: string): string;
@@ -138,32 +138,32 @@ export declare function getFetchCustomMintableERC20TradeFeeRatioQueryOptions(cha
138
138
  * @param {string} zeroAddress - address
139
139
  * @returns {string} encode data
140
140
  */
141
- export declare function encodeCustomMintableERC20AbandonOwnership(zeroAddress: string): any;
141
+ export declare function encodeCustomMintableERC20AbandonOwnership(zeroAddress: string): string;
142
142
  /**
143
143
  * encode approve
144
144
  * @param {string} spender - address
145
145
  * @param {string | number} amount - uint256
146
146
  * @returns {string} encode data
147
147
  */
148
- export declare function encodeCustomMintableERC20Approve(spender: string, amount: string | number): any;
148
+ export declare function encodeCustomMintableERC20Approve(spender: string, amount: string | number): string;
149
149
  /**
150
150
  * encode burn
151
151
  * @param {string | number} value - uint256
152
152
  * @returns {string} encode data
153
153
  */
154
- export declare function encodeCustomMintableERC20Burn(value: string | number): any;
154
+ export declare function encodeCustomMintableERC20Burn(value: string | number): string;
155
155
  /**
156
156
  * encode changeTeamAccount
157
157
  * @param {string} newTeam - address
158
158
  * @returns {string} encode data
159
159
  */
160
- export declare function encodeCustomMintableERC20ChangeTeamAccount(newTeam: string): any;
160
+ export declare function encodeCustomMintableERC20ChangeTeamAccount(newTeam: string): string;
161
161
  /**
162
162
  * encode claimOwnership
163
163
 
164
164
  * @returns {string} encode data
165
165
  */
166
- export declare function encodeCustomMintableERC20ClaimOwnership(): any;
166
+ export declare function encodeCustomMintableERC20ClaimOwnership(): string;
167
167
  /**
168
168
  * encode init
169
169
  * @param {string} _creator - address
@@ -176,27 +176,27 @@ export declare function encodeCustomMintableERC20ClaimOwnership(): any;
176
176
  * @param {string} _team - address
177
177
  * @returns {string} encode data
178
178
  */
179
- export declare function encodeCustomMintableERC20Init(_creator: string, _initSupply: string | number, _name: string, _symbol: string, _decimals: string | number, _tradeBurnRatio: string | number, _tradeFeeRatio: string | number, _team: string): any;
179
+ export declare function encodeCustomMintableERC20Init(_creator: string, _initSupply: string | number, _name: string, _symbol: string, _decimals: string | number, _tradeBurnRatio: string | number, _tradeFeeRatio: string | number, _team: string): string;
180
180
  /**
181
181
  * encode initOwner
182
182
  * @param {string} newOwner - address
183
183
  * @returns {string} encode data
184
184
  */
185
- export declare function encodeCustomMintableERC20InitOwner(newOwner: string): any;
185
+ export declare function encodeCustomMintableERC20InitOwner(newOwner: string): string;
186
186
  /**
187
187
  * encode mint
188
188
  * @param {string} user - address
189
189
  * @param {string | number} value - uint256
190
190
  * @returns {string} encode data
191
191
  */
192
- export declare function encodeCustomMintableERC20Mint(user: string, value: string | number): any;
192
+ export declare function encodeCustomMintableERC20Mint(user: string, value: string | number): string;
193
193
  /**
194
194
  * encode transfer
195
195
  * @param {string} to - address
196
196
  * @param {string | number} amount - uint256
197
197
  * @returns {string} encode data
198
198
  */
199
- export declare function encodeCustomMintableERC20Transfer(to: string, amount: string | number): any;
199
+ export declare function encodeCustomMintableERC20Transfer(to: string, amount: string | number): string;
200
200
  /**
201
201
  * encode transferFrom
202
202
  * @param {string} from - address
@@ -204,10 +204,10 @@ export declare function encodeCustomMintableERC20Transfer(to: string, amount: st
204
204
  * @param {string | number} amount - uint256
205
205
  * @returns {string} encode data
206
206
  */
207
- export declare function encodeCustomMintableERC20TransferFrom(from: string, to: string, amount: string | number): any;
207
+ export declare function encodeCustomMintableERC20TransferFrom(from: string, to: string, amount: string | number): string;
208
208
  /**
209
209
  * encode transferOwnership
210
210
  * @param {string} newOwner - address
211
211
  * @returns {string} encode data
212
212
  */
213
- export declare function encodeCustomMintableERC20TransferOwnership(newOwner: string): any;
213
+ export declare function encodeCustomMintableERC20TransferOwnership(newOwner: string): string;
@@ -55,7 +55,7 @@ export declare function getFetchD3Proxy_WETH_QueryOptions(chainId: number | unde
55
55
  * @param {string | number} deadLine - uint256
56
56
  * @returns {string} encode data
57
57
  */
58
- export declare function encodeD3ProxyBuyTokens(pool: string, to: string, fromToken: string, toToken: string, quoteAmount: string | number, maxPayAmount: string | number, data: string, deadLine: string | number): any;
58
+ export declare function encodeD3ProxyBuyTokens(pool: string, to: string, fromToken: string, toToken: string, quoteAmount: string | number, maxPayAmount: string | number, data: string, deadLine: string | number): string;
59
59
  /**
60
60
  * encode d3MMSwapCallBack
61
61
  * @param {string} token - address
@@ -63,7 +63,7 @@ export declare function encodeD3ProxyBuyTokens(pool: string, to: string, fromTok
63
63
  * @param {string} _data - bytes
64
64
  * @returns {string} encode data
65
65
  */
66
- export declare function encodeD3ProxyD3MMSwapCallBack(token: string, value: string | number, _data: string): any;
66
+ export declare function encodeD3ProxyD3MMSwapCallBack(token: string, value: string | number, _data: string): string;
67
67
  /**
68
68
  * encode makerDeposit
69
69
  * @param {string} pool - address
@@ -71,19 +71,19 @@ export declare function encodeD3ProxyD3MMSwapCallBack(token: string, value: stri
71
71
  * @param {string | number} amount - uint256
72
72
  * @returns {string} encode data
73
73
  */
74
- export declare function encodeD3ProxyMakerDeposit(pool: string, token: string, amount: string | number): any;
74
+ export declare function encodeD3ProxyMakerDeposit(pool: string, token: string, amount: string | number): string;
75
75
  /**
76
76
  * encode multicall
77
77
  * @param {Array<string>} data - bytes[]
78
78
  * @returns {string} encode data
79
79
  */
80
- export declare function encodeD3ProxyMulticall(data: Array<string>): any;
80
+ export declare function encodeD3ProxyMulticall(data: Array<string>): string;
81
81
  /**
82
82
  * encode refundETH
83
83
 
84
84
  * @returns {string} encode data
85
85
  */
86
- export declare function encodeD3ProxyRefundETH(): any;
86
+ export declare function encodeD3ProxyRefundETH(): string;
87
87
  /**
88
88
  * encode sellTokens
89
89
  * @param {string} pool - address
@@ -96,7 +96,7 @@ export declare function encodeD3ProxyRefundETH(): any;
96
96
  * @param {string | number} deadLine - uint256
97
97
  * @returns {string} encode data
98
98
  */
99
- export declare function encodeD3ProxySellTokens(pool: string, to: string, fromToken: string, toToken: string, fromAmount: string | number, minReceiveAmount: string | number, data: string, deadLine: string | number): any;
99
+ export declare function encodeD3ProxySellTokens(pool: string, to: string, fromToken: string, toToken: string, fromAmount: string | number, minReceiveAmount: string | number, data: string, deadLine: string | number): string;
100
100
  /**
101
101
  * encode userDeposit
102
102
  * @param {string} user - address
@@ -105,7 +105,7 @@ export declare function encodeD3ProxySellTokens(pool: string, to: string, fromTo
105
105
  * @param {string | number} minDtokenAmount - uint256
106
106
  * @returns {string} encode data
107
107
  */
108
- export declare function encodeD3ProxyUserDeposit(user: string, token: string, amount: string | number, minDtokenAmount: string | number): any;
108
+ export declare function encodeD3ProxyUserDeposit(user: string, token: string, amount: string | number, minDtokenAmount: string | number): string;
109
109
  /**
110
110
  * encode userWithdraw
111
111
  * @param {string} to - address
@@ -114,11 +114,11 @@ export declare function encodeD3ProxyUserDeposit(user: string, token: string, am
114
114
  * @param {string | number} minReceiveAmount - uint256
115
115
  * @returns {string} encode data
116
116
  */
117
- export declare function encodeD3ProxyUserWithdraw(to: string, token: string, dTokenAmount: string | number, minReceiveAmount: string | number): any;
117
+ export declare function encodeD3ProxyUserWithdraw(to: string, token: string, dTokenAmount: string | number, minReceiveAmount: string | number): string;
118
118
  /**
119
119
  * encode withdrawWETH
120
120
  * @param {string} to - address
121
121
  * @param {string | number} minAmount - uint256
122
122
  * @returns {string} encode data
123
123
  */
124
- export declare function encodeD3ProxyWithdrawWETH(to: string, minAmount: string | number): any;
124
+ export declare function encodeD3ProxyWithdrawWETH(to: string, minAmount: string | number): string;