@hinkal/common 0.0.103 → 0.0.106
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/API/API.js +58 -0
- package/API/HinkalPointsCalls.js +38 -0
- package/API/callBeefyGraphAPI.js +37 -0
- package/API/callCurveAPI.js +156 -0
- package/API/callMonitor.js +30 -0
- package/API/callOdosAPI.js +44 -0
- package/API/callOneInchAPI.js +37 -0
- package/API/callRelayer.js +32 -0
- package/API/checkRisk.js +30 -0
- package/API/dataServerCalls.js +32 -0
- package/API/fetchCommitmentsCache.js +31 -0
- package/API/fetchNullifiers.js +30 -0
- package/API/getAxelarGasEstimate.js +37 -0
- package/API/getCoingeckoPrice.js +27 -0
- package/API/getConnextReceiveFee.js +30 -0
- package/API/getGasEstimates.js +38 -0
- package/API/getRelayerURL.js +32 -0
- package/API/getServerURL.js +67 -0
- package/API/getTokenPrice.js +41 -0
- package/API/kycCalls.js +32 -0
- package/API/passwordCalls.js +36 -0
- package/API/referralProgramCalls.js +58 -0
- package/API/relayCalls.js +30 -0
- package/API/restoreSnapshots.js +32 -0
- package/API/rewardsPointsCalls.js +40 -0
- package/API/userVerifyTransactions.js +45 -0
- package/README.md +134 -12
- package/assets/{snarkjsWorkerLogic-CatB8Hso.js → snarkjsWorkerLogic-Fv0M38Mc.js} +2 -2
- package/assets/{utxoWorkerLogic-DDqTe7hT.js → utxoWorkerLogic-CtFLQiAX.js} +2 -2
- package/assets/{zkProofWorkerLauncher-C-pvCm0b.js → zkProofWorkerLauncher-J3Ts5_Ba.js} +1 -1
- package/assets/{zkProofWorkerLogic-CLpRqNRx.js → zkProofWorkerLogic-CPNuu61R.js} +18 -19
- package/constants/assets.constants.js +16 -0
- package/constants/axelar.constants.js +55 -0
- package/constants/backend.constants.js +18 -0
- package/constants/beefy.registry.js +24 -0
- package/constants/chains.constants.js +204 -0
- package/constants/coingecko.constants.js +53 -0
- package/constants/contracts.constants.js +276 -0
- package/constants/crvCvx.registry.js +636 -0
- package/constants/crvDynamic.registry.js +24 -0
- package/constants/deploy-data/deploy-data-arbMainnet.json.js +7415 -0
- package/constants/deploy-data/deploy-data-avalanche.json.js +7411 -0
- package/constants/deploy-data/deploy-data-axelar1.json.js +4329 -0
- package/constants/deploy-data/deploy-data-axelar2.json.js +4329 -0
- package/constants/deploy-data/deploy-data-base.json.js +8425 -0
- package/constants/deploy-data/deploy-data-blast.json.js +9600 -0
- package/constants/deploy-data/deploy-data-bnbMainnet.json.js +6877 -0
- package/constants/deploy-data/deploy-data-ethMainnet.json.js +11427 -0
- package/constants/deploy-data/deploy-data-localhost.json.js +13283 -0
- package/constants/deploy-data/deploy-data-optimism.json.js +7417 -0
- package/constants/deploy-data/deploy-data-polygon.json.js +7439 -0
- package/constants/fees.constants.js +57 -0
- package/constants/kyc.constants.js +118 -0
- package/constants/lido.constants.js +13 -0
- package/constants/pendle.registry.js +253 -0
- package/constants/protocol.constants.js +26 -0
- package/constants/reorg-depths.constants.js +15 -0
- package/constants/rewards.constants.js +27 -0
- package/constants/server.constants.js +157 -0
- package/constants/token-data/ERC20Registry.js +85 -0
- package/constants/token-data/arbMainnetRegistry.json.js +946 -0
- package/constants/token-data/arbMainnetRegistryFixed.json.js +856 -0
- package/constants/token-data/avalancheRegistry.json.js +591 -0
- package/constants/token-data/avalancheRegistryFixed.json.js +591 -0
- package/constants/token-data/baseRegistry.json.js +490 -0
- package/constants/token-data/baseRegistryFixed.json.js +463 -0
- package/constants/token-data/blastRegistry.json.js +137 -0
- package/constants/token-data/blastRegistryFixed.json.js +137 -0
- package/constants/token-data/bnbMainnetRegistry.json.js +973 -0
- package/constants/token-data/bnbMainnetRegistryFixed.json.js +973 -0
- package/constants/token-data/coingeckoRegistry.json.js +115623 -0
- package/constants/token-data/ethMainnetRegistry.json.js +2700 -0
- package/constants/token-data/ethMainnetRegistryFixed.json.js +2251 -0
- package/constants/token-data/index.js +6 -0
- package/constants/token-data/localhostRegistry.json.js +2768 -0
- package/constants/token-data/optimismRegistry.json.js +1455 -0
- package/constants/token-data/optimismRegistryFixed.json.js +1392 -0
- package/constants/token-data/polygonRegistry.json.js +1327 -0
- package/constants/token-data/polygonRegistryFixed.json.js +1255 -0
- package/constants/token-data/popularTokens.constants.js +14 -0
- package/constants/token-data/tokenPricing.consts.js +8 -0
- package/constants/vite.constants.js +29 -0
- package/crypto/babyJub.js +15 -0
- package/crypto/poseidon.js +26 -0
- package/crypto/preProcessing.js +9 -0
- package/data-structures/Hinkal/Hinkal.js +299 -0
- package/data-structures/Hinkal/hinkalActionBeefy.js +101 -0
- package/data-structures/Hinkal/hinkalActionConvex.js +83 -0
- package/data-structures/Hinkal/hinkalActionCurve.js +112 -0
- package/data-structures/Hinkal/hinkalActionLidoEth.js +91 -0
- package/data-structures/Hinkal/hinkalActionPendle.js +140 -0
- package/data-structures/Hinkal/hinkalActionPendleLP.js +96 -0
- package/data-structures/Hinkal/hinkalActionStake.js +138 -0
- package/data-structures/Hinkal/hinkalActionVolatile.js +112 -0
- package/data-structures/Hinkal/hinkalDeposit.js +95 -0
- package/data-structures/Hinkal/hinkalGetZkMeProvider.js +47 -0
- package/data-structures/Hinkal/hinkalPrivateWallet.js +66 -0
- package/data-structures/Hinkal/hinkalSwap.js +98 -0
- package/data-structures/Hinkal/hinkalTransfer.js +5 -0
- package/data-structures/Hinkal/hinkalWithdraw.js +91 -0
- package/data-structures/Hinkal/resetMerkleTrees.js +49 -0
- package/data-structures/MultiThreadedUtxoUtils/MultiThreadedUtxoUtils.js +83 -0
- package/data-structures/ValueCache/ValueCache.js +25 -0
- package/data-structures/crypto-keys/decodeUTXO.js +40 -0
- package/data-structures/crypto-keys/encryptDecryptUtxo.js +41 -0
- package/data-structures/crypto-keys/keyUtils.js +10 -0
- package/data-structures/crypto-keys/keys.js +90 -0
- package/data-structures/custom-token-registry/CustomTokenRegistry.js +33 -0
- package/data-structures/event-service/AbstractAccessTokenSnapshotService.js +131 -0
- package/data-structures/event-service/AbstractCommitmentsSnapshotService.js +132 -0
- package/data-structures/event-service/AbstractEventService.js +118 -0
- package/data-structures/event-service/AbstractNullifierSnapshotService.js +59 -0
- package/data-structures/event-service/AbstractSnapshotService.js +35 -0
- package/data-structures/merkle-tree/MerkleTree.js +177 -0
- package/data-structures/merkle-tree/MerkleTreeIncompleteError.js +8 -0
- package/data-structures/snapshot/ClientAccessTokenSnapshotService.js +48 -0
- package/data-structures/snapshot/ClientCommitmentsSnapshotService.js +47 -0
- package/data-structures/snapshot/ClientNullifierSnapshotService.js +44 -0
- package/data-structures/token-price-fetcher/TokenChecker.js +29 -0
- package/data-structures/token-price-fetcher/TokenPriceFetcher.js +218 -0
- package/data-structures/transactions-manager/TransactionsManager.js +194 -0
- package/data-structures/transactions-manager/history/getBeefyData.js +68 -0
- package/data-structures/transactions-manager/history/getConvexData.js +57 -0
- package/data-structures/transactions-manager/history/getCurveData.js +97 -0
- package/data-structures/transactions-manager/history/getDepositData.js +36 -0
- package/data-structures/transactions-manager/history/getLidoData.js +44 -0
- package/data-structures/transactions-manager/history/getPendleData.js +59 -0
- package/data-structures/transactions-manager/history/getSwapData.js +43 -0
- package/data-structures/transactions-manager/history/getTxDetails.js +74 -0
- package/data-structures/transactions-manager/history/getVolatileData.js +75 -0
- package/data-structures/transactions-manager/history/history.types.js +62 -0
- package/data-structures/transactions-manager/history/history.utils.js +8 -0
- package/data-structures/utxo/Utxo.js +134 -0
- package/data-structures/volatile-helper/VolatileHelper.js +181 -0
- package/error-handling/customErrors/ErrorWithAmount.js +9 -0
- package/error-handling/customErrors/FeeOverTransactionValueError.js +9 -0
- package/error-handling/customErrors/customErrors.helpers.js +21 -0
- package/error-handling/error-codes.constants.js +184 -0
- package/error-handling/get-error.message.js +53 -0
- package/error-handling/handleErrorRestore.js +35 -0
- package/error-handling/logError.js +7 -0
- package/error-handling/types.js +4 -0
- package/externalABIs/BUSD.js +519 -0
- package/externalABIs/BabPassport.json.js +24 -0
- package/externalABIs/BeefyRouterAbi.json.js +1022 -0
- package/externalABIs/BeefyStrategyAbi.json.js +1423 -0
- package/externalABIs/BeefyVaultAbi.json.js +570 -0
- package/externalABIs/BeefyZapAbi.json.js +208 -0
- package/externalABIs/BeefyZapOneInchAbi.json.js +340 -0
- package/externalABIs/ConvexBoosterAbi.json.js +674 -0
- package/externalABIs/ConvexBoosterAbiMainnet.json.js +1002 -0
- package/externalABIs/ConvexRewardPoolAbi.json.js +883 -0
- package/externalABIs/CurveReadingWrapperAbi.json.js +1422 -0
- package/externalABIs/CurveWrappedMainPool.json.js +1136 -0
- package/externalABIs/CurveZap.json.js +262 -0
- package/externalABIs/CvxCrvUtilities.json.js +264 -0
- package/externalABIs/DAI.js +334 -0
- package/externalABIs/ERC20.json.js +291 -0
- package/externalABIs/GalxePassport.json.js +41 -0
- package/externalABIs/IQuoterV2.json.js +205 -0
- package/externalABIs/ISwapRouter.json.js +568 -0
- package/externalABIs/IUniswapV3Factory.json.js +201 -0
- package/externalABIs/IUniswapV3Pool.json.js +999 -0
- package/externalABIs/LidoStEthAbi.json.js +1603 -0
- package/externalABIs/LidoStMaticAbi.json.js +1764 -0
- package/externalABIs/LidoStakeManagerAbi.json.js +2082 -0
- package/externalABIs/LidoWithdrawalQueueERC721Abi.json.js +2030 -0
- package/externalABIs/LidoWstEthAbi.json.js +480 -0
- package/externalABIs/OptimismGasPriceOracle.json.js +206 -0
- package/externalABIs/PendleRouterAbi.json.js +173 -0
- package/externalABIs/PoLidoNftAbi.json.js +701 -0
- package/externalABIs/SanctionsList.js +89 -0
- package/externalABIs/USDC.js +721 -0
- package/externalABIs/USDR.js +346 -0
- package/externalABIs/USDR3CRV.js +542 -0
- package/externalABIs/USDT.js +393 -0
- package/externalABIs/UniswapV2PoolAbi.json.js +80 -0
- package/externalABIs/WETH.js +156 -0
- package/externalABIs/amToken.js +350 -0
- package/externalABIs/transactionsProver.json.js +39 -0
- package/functions/kyc/authentoHelper.js +42 -0
- package/functions/kyc/passportHelper.js +39 -0
- package/functions/kyc/zkMeHelper.js +56 -0
- package/functions/pre-transaction/getFlatFees.js +203 -0
- package/functions/pre-transaction/interaction-to-action.js +57 -0
- package/functions/pre-transaction/outputUtxoProcessing.js +45 -0
- package/functions/pre-transaction/process-gas-estimates.js +57 -0
- package/functions/pre-transaction/processAmountChanges.js +229 -0
- package/functions/private-wallet/emporium.helpers.js +19 -0
- package/functions/private-wallet/opProducer.js +24 -0
- package/functions/protocols/convex.protocols.js +41 -0
- package/functions/protocols/curve.protocols.js +45 -0
- package/functions/protocols/pendle.helpers.js +108 -0
- package/functions/snarkjs/common.snarkjs.js +96 -0
- package/functions/snarkjs/constant.js +211 -0
- package/functions/snarkjs/constructEmporiumProof.js +105 -0
- package/functions/snarkjs/constructGeneralZkProof.js +129 -0
- package/functions/snarkjs/generateCircomData.js +60 -0
- package/functions/snarkjs/generateZkProof.js +18 -0
- package/functions/snarkjs/getZKFiles.js +30 -0
- package/functions/staking/index.js +40 -0
- package/functions/utils/amounts.utils.js +70 -0
- package/functions/utils/axelar.utils.js +38 -0
- package/functions/utils/cacheFunctions.js +67 -0
- package/functions/utils/caseInsensitive.utils.js +6 -0
- package/functions/utils/convertIntegrationProviderToExternalActionId.js +16 -0
- package/functions/utils/create-provider.js +5 -0
- package/functions/utils/enum.utils.js +14 -0
- package/functions/utils/erc20tokenFunctions.js +20 -0
- package/functions/utils/evmNetworkFunctions.js +29 -0
- package/functions/utils/external-action.utils.js +61 -0
- package/functions/utils/getDataFromTransaction.js +105 -0
- package/functions/utils/memoize.utils.js +14 -0
- package/functions/utils/nickname.utils.js +7 -0
- package/functions/utils/process.utils.js +4 -0
- package/functions/utils/reloadPage.js +4 -0
- package/functions/utils/requireEnv.js +7 -0
- package/functions/utils/resolve-sync.utils.js +22 -0
- package/functions/utils/serialize.utils.js +4 -0
- package/functions/utils/string.utils.js +14 -0
- package/functions/utils/time.utils.js +8 -0
- package/functions/utils/userAgent.js +15 -0
- package/functions/utils/volatile-patcher.utils.js +40 -0
- package/functions/web3/etherFunctions.js +41 -0
- package/functions/web3/events/balanceChangedHandler.js +10 -0
- package/functions/web3/events/getInputUtxoAndBalance.js +72 -0
- package/functions/web3/events/getShieldedBalance.js +107 -0
- package/functions/web3/events/web3RetrieveEvents.js +9 -0
- package/functions/web3/functionCalls/accessTokenCalls.js +48 -0
- package/functions/web3/functionCalls/approveToken.js +153 -0
- package/functions/web3/functionCalls/estimateGasRelayer.js +18 -0
- package/functions/web3/functionCalls/transactCallDirect.js +60 -0
- package/functions/web3/functionCalls/transactCallRelayer.js +42 -0
- package/functions/web3/odosAPI.js +65 -0
- package/functions/web3/oneInchAPI.js +61 -0
- package/functions/web3/runContractFunction.js +95 -0
- package/functions/web3/uniswapAPI.js +97 -0
- package/index.js +644 -0
- package/package.json +5 -4
- package/types/beefy.types.js +21 -0
- package/types/circom-data.types.js +22 -0
- package/types/curve.types.js +25 -0
- package/types/ethereum-network.types.js +4 -0
- package/types/external-action.types.js +4 -0
- package/types/hinkal.stake.types.js +4 -0
- package/types/hinkal.types.js +15 -0
- package/types/kyc.types.js +13 -0
- package/types/pendle.types.js +15 -0
- package/types/rewards.types.js +27 -0
- package/types/slippage.types.js +15 -0
- package/types/time.types.js +58 -0
- package/types/token.types.js +4 -0
- package/types/transactions.types.js +36 -0
- package/webworker/performTaskWithWorker.js +62 -0
- package/webworker/snarkjsWorker/snarkjsWorker.types.js +4 -0
- package/webworker/snarkjsWorker/snarkjsWorkerLogic.js +32 -0
- package/webworker/utxoWorker/utxoWorker.types.js +4 -0
- package/webworker/utxoWorker/utxoWorkerLogic.js +70 -0
- package/webworker/viteWorkerURL.constant.d.ts +3 -3
- package/webworker/worker.registry.js +4 -0
- package/webworker/workerFactory.d.ts +0 -1
- package/webworker/workerFactory.js +42 -0
- package/{workerProxy-BDj498Ht.mjs → webworker/workerProxy.js} +1 -1
- package/webworker/zkProofWorker/zkProofWorker.types.js +4 -0
- package/webworker/zkProofWorker/zkProofWorkerLogic.js +66 -0
- package/assets/viteWorkerURL.constant-DrIQXA2B.js +0 -11
- package/index-COLpGMpe.mjs +0 -398153
- package/index.mjs +0 -457
- package/snarkjsWorkerLogic-BpNWzeoy.mjs +0 -12086
- package/utxoWorkerLogic-DyerYrK3.mjs +0 -64
- package/viteWorkerURL.constant-DnU4hEv_.mjs +0 -9
- package/zkProofWorkerLogic-DN4QUc_a.mjs +0 -60
|
@@ -0,0 +1,1136 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
{
|
|
3
|
+
name: "TokenExchange",
|
|
4
|
+
inputs: [
|
|
5
|
+
{
|
|
6
|
+
name: "buyer",
|
|
7
|
+
type: "address",
|
|
8
|
+
indexed: !0
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
name: "sold_id",
|
|
12
|
+
type: "int128",
|
|
13
|
+
indexed: !1
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
name: "tokens_sold",
|
|
17
|
+
type: "uint256",
|
|
18
|
+
indexed: !1
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: "bought_id",
|
|
22
|
+
type: "int128",
|
|
23
|
+
indexed: !1
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
name: "tokens_bought",
|
|
27
|
+
type: "uint256",
|
|
28
|
+
indexed: !1
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
anonymous: !1,
|
|
32
|
+
type: "event"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: "TokenExchangeUnderlying",
|
|
36
|
+
inputs: [
|
|
37
|
+
{
|
|
38
|
+
name: "buyer",
|
|
39
|
+
type: "address",
|
|
40
|
+
indexed: !0
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: "sold_id",
|
|
44
|
+
type: "int128",
|
|
45
|
+
indexed: !1
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: "tokens_sold",
|
|
49
|
+
type: "uint256",
|
|
50
|
+
indexed: !1
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: "bought_id",
|
|
54
|
+
type: "int128",
|
|
55
|
+
indexed: !1
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: "tokens_bought",
|
|
59
|
+
type: "uint256",
|
|
60
|
+
indexed: !1
|
|
61
|
+
}
|
|
62
|
+
],
|
|
63
|
+
anonymous: !1,
|
|
64
|
+
type: "event"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: "AddLiquidity",
|
|
68
|
+
inputs: [
|
|
69
|
+
{
|
|
70
|
+
name: "provider",
|
|
71
|
+
type: "address",
|
|
72
|
+
indexed: !0
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: "token_amounts",
|
|
76
|
+
type: "uint256[3]",
|
|
77
|
+
indexed: !1
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
name: "fees",
|
|
81
|
+
type: "uint256[3]",
|
|
82
|
+
indexed: !1
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
name: "invariant",
|
|
86
|
+
type: "uint256",
|
|
87
|
+
indexed: !1
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
name: "token_supply",
|
|
91
|
+
type: "uint256",
|
|
92
|
+
indexed: !1
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
anonymous: !1,
|
|
96
|
+
type: "event"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
name: "RemoveLiquidity",
|
|
100
|
+
inputs: [
|
|
101
|
+
{
|
|
102
|
+
name: "provider",
|
|
103
|
+
type: "address",
|
|
104
|
+
indexed: !0
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: "token_amounts",
|
|
108
|
+
type: "uint256[3]",
|
|
109
|
+
indexed: !1
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: "fees",
|
|
113
|
+
type: "uint256[3]",
|
|
114
|
+
indexed: !1
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
name: "token_supply",
|
|
118
|
+
type: "uint256",
|
|
119
|
+
indexed: !1
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
anonymous: !1,
|
|
123
|
+
type: "event"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
name: "RemoveLiquidityOne",
|
|
127
|
+
inputs: [
|
|
128
|
+
{
|
|
129
|
+
name: "provider",
|
|
130
|
+
type: "address",
|
|
131
|
+
indexed: !0
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: "token_amount",
|
|
135
|
+
type: "uint256",
|
|
136
|
+
indexed: !1
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
name: "coin_amount",
|
|
140
|
+
type: "uint256",
|
|
141
|
+
indexed: !1
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
anonymous: !1,
|
|
145
|
+
type: "event"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
name: "RemoveLiquidityImbalance",
|
|
149
|
+
inputs: [
|
|
150
|
+
{
|
|
151
|
+
name: "provider",
|
|
152
|
+
type: "address",
|
|
153
|
+
indexed: !0
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
name: "token_amounts",
|
|
157
|
+
type: "uint256[3]",
|
|
158
|
+
indexed: !1
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
name: "fees",
|
|
162
|
+
type: "uint256[3]",
|
|
163
|
+
indexed: !1
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
name: "invariant",
|
|
167
|
+
type: "uint256",
|
|
168
|
+
indexed: !1
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
name: "token_supply",
|
|
172
|
+
type: "uint256",
|
|
173
|
+
indexed: !1
|
|
174
|
+
}
|
|
175
|
+
],
|
|
176
|
+
anonymous: !1,
|
|
177
|
+
type: "event"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
name: "CommitNewAdmin",
|
|
181
|
+
inputs: [
|
|
182
|
+
{
|
|
183
|
+
name: "deadline",
|
|
184
|
+
type: "uint256",
|
|
185
|
+
indexed: !0
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
name: "admin",
|
|
189
|
+
type: "address",
|
|
190
|
+
indexed: !0
|
|
191
|
+
}
|
|
192
|
+
],
|
|
193
|
+
anonymous: !1,
|
|
194
|
+
type: "event"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
name: "NewAdmin",
|
|
198
|
+
inputs: [
|
|
199
|
+
{
|
|
200
|
+
name: "admin",
|
|
201
|
+
type: "address",
|
|
202
|
+
indexed: !0
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
anonymous: !1,
|
|
206
|
+
type: "event"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
name: "CommitNewFee",
|
|
210
|
+
inputs: [
|
|
211
|
+
{
|
|
212
|
+
name: "deadline",
|
|
213
|
+
type: "uint256",
|
|
214
|
+
indexed: !0
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
name: "fee",
|
|
218
|
+
type: "uint256",
|
|
219
|
+
indexed: !1
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
name: "admin_fee",
|
|
223
|
+
type: "uint256",
|
|
224
|
+
indexed: !1
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
name: "offpeg_fee_multiplier",
|
|
228
|
+
type: "uint256",
|
|
229
|
+
indexed: !1
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
anonymous: !1,
|
|
233
|
+
type: "event"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
name: "NewFee",
|
|
237
|
+
inputs: [
|
|
238
|
+
{
|
|
239
|
+
name: "fee",
|
|
240
|
+
type: "uint256",
|
|
241
|
+
indexed: !1
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
name: "admin_fee",
|
|
245
|
+
type: "uint256",
|
|
246
|
+
indexed: !1
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
name: "offpeg_fee_multiplier",
|
|
250
|
+
type: "uint256",
|
|
251
|
+
indexed: !1
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
anonymous: !1,
|
|
255
|
+
type: "event"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
name: "RampA",
|
|
259
|
+
inputs: [
|
|
260
|
+
{
|
|
261
|
+
name: "old_A",
|
|
262
|
+
type: "uint256",
|
|
263
|
+
indexed: !1
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
name: "new_A",
|
|
267
|
+
type: "uint256",
|
|
268
|
+
indexed: !1
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
name: "initial_time",
|
|
272
|
+
type: "uint256",
|
|
273
|
+
indexed: !1
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
name: "future_time",
|
|
277
|
+
type: "uint256",
|
|
278
|
+
indexed: !1
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
anonymous: !1,
|
|
282
|
+
type: "event"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
name: "StopRampA",
|
|
286
|
+
inputs: [
|
|
287
|
+
{
|
|
288
|
+
name: "A",
|
|
289
|
+
type: "uint256",
|
|
290
|
+
indexed: !1
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
name: "t",
|
|
294
|
+
type: "uint256",
|
|
295
|
+
indexed: !1
|
|
296
|
+
}
|
|
297
|
+
],
|
|
298
|
+
anonymous: !1,
|
|
299
|
+
type: "event"
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
stateMutability: "nonpayable",
|
|
303
|
+
type: "constructor",
|
|
304
|
+
inputs: [
|
|
305
|
+
{
|
|
306
|
+
name: "_coins",
|
|
307
|
+
type: "address[3]"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
name: "_underlying_coins",
|
|
311
|
+
type: "address[3]"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
name: "_pool_token",
|
|
315
|
+
type: "address"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
name: "_A",
|
|
319
|
+
type: "uint256"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
name: "_fee",
|
|
323
|
+
type: "uint256"
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
name: "_admin_fee",
|
|
327
|
+
type: "uint256"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
name: "_offpeg_fee_multiplier",
|
|
331
|
+
type: "uint256"
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
outputs: []
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
stateMutability: "view",
|
|
338
|
+
type: "function",
|
|
339
|
+
name: "A",
|
|
340
|
+
inputs: [],
|
|
341
|
+
outputs: [
|
|
342
|
+
{
|
|
343
|
+
name: "",
|
|
344
|
+
type: "uint256"
|
|
345
|
+
}
|
|
346
|
+
]
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
stateMutability: "view",
|
|
350
|
+
type: "function",
|
|
351
|
+
name: "A_precise",
|
|
352
|
+
inputs: [],
|
|
353
|
+
outputs: [
|
|
354
|
+
{
|
|
355
|
+
name: "",
|
|
356
|
+
type: "uint256"
|
|
357
|
+
}
|
|
358
|
+
]
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
stateMutability: "view",
|
|
362
|
+
type: "function",
|
|
363
|
+
name: "dynamic_fee",
|
|
364
|
+
inputs: [
|
|
365
|
+
{
|
|
366
|
+
name: "i",
|
|
367
|
+
type: "int128"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
name: "j",
|
|
371
|
+
type: "int128"
|
|
372
|
+
}
|
|
373
|
+
],
|
|
374
|
+
outputs: [
|
|
375
|
+
{
|
|
376
|
+
name: "",
|
|
377
|
+
type: "uint256"
|
|
378
|
+
}
|
|
379
|
+
]
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
stateMutability: "view",
|
|
383
|
+
type: "function",
|
|
384
|
+
name: "balances",
|
|
385
|
+
inputs: [
|
|
386
|
+
{
|
|
387
|
+
name: "i",
|
|
388
|
+
type: "uint256"
|
|
389
|
+
}
|
|
390
|
+
],
|
|
391
|
+
outputs: [
|
|
392
|
+
{
|
|
393
|
+
name: "",
|
|
394
|
+
type: "uint256"
|
|
395
|
+
}
|
|
396
|
+
]
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
stateMutability: "view",
|
|
400
|
+
type: "function",
|
|
401
|
+
name: "get_virtual_price",
|
|
402
|
+
inputs: [],
|
|
403
|
+
outputs: [
|
|
404
|
+
{
|
|
405
|
+
name: "",
|
|
406
|
+
type: "uint256"
|
|
407
|
+
}
|
|
408
|
+
]
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
stateMutability: "view",
|
|
412
|
+
type: "function",
|
|
413
|
+
name: "calc_token_amount",
|
|
414
|
+
inputs: [
|
|
415
|
+
{
|
|
416
|
+
name: "_amounts",
|
|
417
|
+
type: "uint256[3]"
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
name: "is_deposit",
|
|
421
|
+
type: "bool"
|
|
422
|
+
}
|
|
423
|
+
],
|
|
424
|
+
outputs: [
|
|
425
|
+
{
|
|
426
|
+
name: "",
|
|
427
|
+
type: "uint256"
|
|
428
|
+
}
|
|
429
|
+
]
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
stateMutability: "nonpayable",
|
|
433
|
+
type: "function",
|
|
434
|
+
name: "add_liquidity",
|
|
435
|
+
inputs: [
|
|
436
|
+
{
|
|
437
|
+
name: "_amounts",
|
|
438
|
+
type: "uint256[3]"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
name: "_min_mint_amount",
|
|
442
|
+
type: "uint256"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
name: "_use_underlying",
|
|
446
|
+
type: "bool"
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
outputs: [
|
|
450
|
+
{
|
|
451
|
+
name: "",
|
|
452
|
+
type: "uint256"
|
|
453
|
+
}
|
|
454
|
+
]
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
stateMutability: "view",
|
|
458
|
+
type: "function",
|
|
459
|
+
name: "get_dy",
|
|
460
|
+
inputs: [
|
|
461
|
+
{
|
|
462
|
+
name: "i",
|
|
463
|
+
type: "int128"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
name: "j",
|
|
467
|
+
type: "int128"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
name: "dx",
|
|
471
|
+
type: "uint256"
|
|
472
|
+
}
|
|
473
|
+
],
|
|
474
|
+
outputs: [
|
|
475
|
+
{
|
|
476
|
+
name: "",
|
|
477
|
+
type: "uint256"
|
|
478
|
+
}
|
|
479
|
+
]
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
stateMutability: "view",
|
|
483
|
+
type: "function",
|
|
484
|
+
name: "get_dy_underlying",
|
|
485
|
+
inputs: [
|
|
486
|
+
{
|
|
487
|
+
name: "i",
|
|
488
|
+
type: "int128"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
name: "j",
|
|
492
|
+
type: "int128"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
name: "dx",
|
|
496
|
+
type: "uint256"
|
|
497
|
+
}
|
|
498
|
+
],
|
|
499
|
+
outputs: [
|
|
500
|
+
{
|
|
501
|
+
name: "",
|
|
502
|
+
type: "uint256"
|
|
503
|
+
}
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
stateMutability: "nonpayable",
|
|
508
|
+
type: "function",
|
|
509
|
+
name: "exchange",
|
|
510
|
+
inputs: [
|
|
511
|
+
{
|
|
512
|
+
name: "i",
|
|
513
|
+
type: "int128"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
name: "j",
|
|
517
|
+
type: "int128"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
name: "dx",
|
|
521
|
+
type: "uint256"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
name: "min_dy",
|
|
525
|
+
type: "uint256"
|
|
526
|
+
}
|
|
527
|
+
],
|
|
528
|
+
outputs: [
|
|
529
|
+
{
|
|
530
|
+
name: "",
|
|
531
|
+
type: "uint256"
|
|
532
|
+
}
|
|
533
|
+
]
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
stateMutability: "nonpayable",
|
|
537
|
+
type: "function",
|
|
538
|
+
name: "exchange_underlying",
|
|
539
|
+
inputs: [
|
|
540
|
+
{
|
|
541
|
+
name: "i",
|
|
542
|
+
type: "int128"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
name: "j",
|
|
546
|
+
type: "int128"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
name: "dx",
|
|
550
|
+
type: "uint256"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
name: "min_dy",
|
|
554
|
+
type: "uint256"
|
|
555
|
+
}
|
|
556
|
+
],
|
|
557
|
+
outputs: [
|
|
558
|
+
{
|
|
559
|
+
name: "",
|
|
560
|
+
type: "uint256"
|
|
561
|
+
}
|
|
562
|
+
]
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
stateMutability: "nonpayable",
|
|
566
|
+
type: "function",
|
|
567
|
+
name: "remove_liquidity",
|
|
568
|
+
inputs: [
|
|
569
|
+
{
|
|
570
|
+
name: "_amount",
|
|
571
|
+
type: "uint256"
|
|
572
|
+
},
|
|
573
|
+
{
|
|
574
|
+
name: "_min_amounts",
|
|
575
|
+
type: "uint256[3]"
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
outputs: [
|
|
579
|
+
{
|
|
580
|
+
name: "",
|
|
581
|
+
type: "uint256[3]"
|
|
582
|
+
}
|
|
583
|
+
]
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
stateMutability: "nonpayable",
|
|
587
|
+
type: "function",
|
|
588
|
+
name: "remove_liquidity",
|
|
589
|
+
inputs: [
|
|
590
|
+
{
|
|
591
|
+
name: "_amount",
|
|
592
|
+
type: "uint256"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
name: "_min_amounts",
|
|
596
|
+
type: "uint256[3]"
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
name: "_use_underlying",
|
|
600
|
+
type: "bool"
|
|
601
|
+
}
|
|
602
|
+
],
|
|
603
|
+
outputs: [
|
|
604
|
+
{
|
|
605
|
+
name: "",
|
|
606
|
+
type: "uint256[3]"
|
|
607
|
+
}
|
|
608
|
+
]
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
stateMutability: "nonpayable",
|
|
612
|
+
type: "function",
|
|
613
|
+
name: "remove_liquidity_imbalance",
|
|
614
|
+
inputs: [
|
|
615
|
+
{
|
|
616
|
+
name: "_amounts",
|
|
617
|
+
type: "uint256[3]"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
name: "_max_burn_amount",
|
|
621
|
+
type: "uint256"
|
|
622
|
+
}
|
|
623
|
+
],
|
|
624
|
+
outputs: [
|
|
625
|
+
{
|
|
626
|
+
name: "",
|
|
627
|
+
type: "uint256"
|
|
628
|
+
}
|
|
629
|
+
]
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
stateMutability: "nonpayable",
|
|
633
|
+
type: "function",
|
|
634
|
+
name: "remove_liquidity_imbalance",
|
|
635
|
+
inputs: [
|
|
636
|
+
{
|
|
637
|
+
name: "_amounts",
|
|
638
|
+
type: "uint256[3]"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
name: "_max_burn_amount",
|
|
642
|
+
type: "uint256"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
name: "_use_underlying",
|
|
646
|
+
type: "bool"
|
|
647
|
+
}
|
|
648
|
+
],
|
|
649
|
+
outputs: [
|
|
650
|
+
{
|
|
651
|
+
name: "",
|
|
652
|
+
type: "uint256"
|
|
653
|
+
}
|
|
654
|
+
]
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
stateMutability: "view",
|
|
658
|
+
type: "function",
|
|
659
|
+
name: "calc_withdraw_one_coin",
|
|
660
|
+
inputs: [
|
|
661
|
+
{
|
|
662
|
+
name: "_token_amount",
|
|
663
|
+
type: "uint256"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
name: "i",
|
|
667
|
+
type: "int128"
|
|
668
|
+
}
|
|
669
|
+
],
|
|
670
|
+
outputs: [
|
|
671
|
+
{
|
|
672
|
+
name: "",
|
|
673
|
+
type: "uint256"
|
|
674
|
+
}
|
|
675
|
+
]
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
stateMutability: "nonpayable",
|
|
679
|
+
type: "function",
|
|
680
|
+
name: "remove_liquidity_one_coin",
|
|
681
|
+
inputs: [
|
|
682
|
+
{
|
|
683
|
+
name: "_token_amount",
|
|
684
|
+
type: "uint256"
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
name: "i",
|
|
688
|
+
type: "int128"
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
name: "_min_amount",
|
|
692
|
+
type: "uint256"
|
|
693
|
+
}
|
|
694
|
+
],
|
|
695
|
+
outputs: [
|
|
696
|
+
{
|
|
697
|
+
name: "",
|
|
698
|
+
type: "uint256"
|
|
699
|
+
}
|
|
700
|
+
]
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
stateMutability: "nonpayable",
|
|
704
|
+
type: "function",
|
|
705
|
+
name: "remove_liquidity_one_coin",
|
|
706
|
+
inputs: [
|
|
707
|
+
{
|
|
708
|
+
name: "_token_amount",
|
|
709
|
+
type: "uint256"
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
name: "i",
|
|
713
|
+
type: "int128"
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
name: "_min_amount",
|
|
717
|
+
type: "uint256"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
name: "_use_underlying",
|
|
721
|
+
type: "bool"
|
|
722
|
+
}
|
|
723
|
+
],
|
|
724
|
+
outputs: [
|
|
725
|
+
{
|
|
726
|
+
name: "",
|
|
727
|
+
type: "uint256"
|
|
728
|
+
}
|
|
729
|
+
]
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
stateMutability: "nonpayable",
|
|
733
|
+
type: "function",
|
|
734
|
+
name: "ramp_A",
|
|
735
|
+
inputs: [
|
|
736
|
+
{
|
|
737
|
+
name: "_future_A",
|
|
738
|
+
type: "uint256"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
name: "_future_time",
|
|
742
|
+
type: "uint256"
|
|
743
|
+
}
|
|
744
|
+
],
|
|
745
|
+
outputs: []
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
stateMutability: "nonpayable",
|
|
749
|
+
type: "function",
|
|
750
|
+
name: "stop_ramp_A",
|
|
751
|
+
inputs: [],
|
|
752
|
+
outputs: []
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
stateMutability: "nonpayable",
|
|
756
|
+
type: "function",
|
|
757
|
+
name: "commit_new_fee",
|
|
758
|
+
inputs: [
|
|
759
|
+
{
|
|
760
|
+
name: "new_fee",
|
|
761
|
+
type: "uint256"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
name: "new_admin_fee",
|
|
765
|
+
type: "uint256"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
name: "new_offpeg_fee_multiplier",
|
|
769
|
+
type: "uint256"
|
|
770
|
+
}
|
|
771
|
+
],
|
|
772
|
+
outputs: []
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
stateMutability: "nonpayable",
|
|
776
|
+
type: "function",
|
|
777
|
+
name: "apply_new_fee",
|
|
778
|
+
inputs: [],
|
|
779
|
+
outputs: []
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
stateMutability: "nonpayable",
|
|
783
|
+
type: "function",
|
|
784
|
+
name: "revert_new_parameters",
|
|
785
|
+
inputs: [],
|
|
786
|
+
outputs: []
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
stateMutability: "nonpayable",
|
|
790
|
+
type: "function",
|
|
791
|
+
name: "commit_transfer_ownership",
|
|
792
|
+
inputs: [
|
|
793
|
+
{
|
|
794
|
+
name: "_owner",
|
|
795
|
+
type: "address"
|
|
796
|
+
}
|
|
797
|
+
],
|
|
798
|
+
outputs: []
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
stateMutability: "nonpayable",
|
|
802
|
+
type: "function",
|
|
803
|
+
name: "apply_transfer_ownership",
|
|
804
|
+
inputs: [],
|
|
805
|
+
outputs: []
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
stateMutability: "nonpayable",
|
|
809
|
+
type: "function",
|
|
810
|
+
name: "revert_transfer_ownership",
|
|
811
|
+
inputs: [],
|
|
812
|
+
outputs: []
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
stateMutability: "nonpayable",
|
|
816
|
+
type: "function",
|
|
817
|
+
name: "withdraw_admin_fees",
|
|
818
|
+
inputs: [],
|
|
819
|
+
outputs: []
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
stateMutability: "nonpayable",
|
|
823
|
+
type: "function",
|
|
824
|
+
name: "donate_admin_fees",
|
|
825
|
+
inputs: [],
|
|
826
|
+
outputs: []
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
stateMutability: "nonpayable",
|
|
830
|
+
type: "function",
|
|
831
|
+
name: "kill_me",
|
|
832
|
+
inputs: [],
|
|
833
|
+
outputs: []
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
stateMutability: "nonpayable",
|
|
837
|
+
type: "function",
|
|
838
|
+
name: "unkill_me",
|
|
839
|
+
inputs: [],
|
|
840
|
+
outputs: []
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
stateMutability: "nonpayable",
|
|
844
|
+
type: "function",
|
|
845
|
+
name: "set_aave_referral",
|
|
846
|
+
inputs: [
|
|
847
|
+
{
|
|
848
|
+
name: "referral_code",
|
|
849
|
+
type: "uint256"
|
|
850
|
+
}
|
|
851
|
+
],
|
|
852
|
+
outputs: []
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
stateMutability: "nonpayable",
|
|
856
|
+
type: "function",
|
|
857
|
+
name: "set_reward_receiver",
|
|
858
|
+
inputs: [
|
|
859
|
+
{
|
|
860
|
+
name: "_reward_receiver",
|
|
861
|
+
type: "address"
|
|
862
|
+
}
|
|
863
|
+
],
|
|
864
|
+
outputs: []
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
stateMutability: "nonpayable",
|
|
868
|
+
type: "function",
|
|
869
|
+
name: "set_admin_fee_receiver",
|
|
870
|
+
inputs: [
|
|
871
|
+
{
|
|
872
|
+
name: "_admin_fee_receiver",
|
|
873
|
+
type: "address"
|
|
874
|
+
}
|
|
875
|
+
],
|
|
876
|
+
outputs: []
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
stateMutability: "view",
|
|
880
|
+
type: "function",
|
|
881
|
+
name: "coins",
|
|
882
|
+
inputs: [
|
|
883
|
+
{
|
|
884
|
+
name: "arg0",
|
|
885
|
+
type: "uint256"
|
|
886
|
+
}
|
|
887
|
+
],
|
|
888
|
+
outputs: [
|
|
889
|
+
{
|
|
890
|
+
name: "",
|
|
891
|
+
type: "address"
|
|
892
|
+
}
|
|
893
|
+
]
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
stateMutability: "view",
|
|
897
|
+
type: "function",
|
|
898
|
+
name: "underlying_coins",
|
|
899
|
+
inputs: [
|
|
900
|
+
{
|
|
901
|
+
name: "arg0",
|
|
902
|
+
type: "uint256"
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
outputs: [
|
|
906
|
+
{
|
|
907
|
+
name: "",
|
|
908
|
+
type: "address"
|
|
909
|
+
}
|
|
910
|
+
]
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
stateMutability: "view",
|
|
914
|
+
type: "function",
|
|
915
|
+
name: "admin_balances",
|
|
916
|
+
inputs: [
|
|
917
|
+
{
|
|
918
|
+
name: "arg0",
|
|
919
|
+
type: "uint256"
|
|
920
|
+
}
|
|
921
|
+
],
|
|
922
|
+
outputs: [
|
|
923
|
+
{
|
|
924
|
+
name: "",
|
|
925
|
+
type: "uint256"
|
|
926
|
+
}
|
|
927
|
+
]
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
stateMutability: "view",
|
|
931
|
+
type: "function",
|
|
932
|
+
name: "fee",
|
|
933
|
+
inputs: [],
|
|
934
|
+
outputs: [
|
|
935
|
+
{
|
|
936
|
+
name: "",
|
|
937
|
+
type: "uint256"
|
|
938
|
+
}
|
|
939
|
+
]
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
stateMutability: "view",
|
|
943
|
+
type: "function",
|
|
944
|
+
name: "offpeg_fee_multiplier",
|
|
945
|
+
inputs: [],
|
|
946
|
+
outputs: [
|
|
947
|
+
{
|
|
948
|
+
name: "",
|
|
949
|
+
type: "uint256"
|
|
950
|
+
}
|
|
951
|
+
]
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
stateMutability: "view",
|
|
955
|
+
type: "function",
|
|
956
|
+
name: "admin_fee",
|
|
957
|
+
inputs: [],
|
|
958
|
+
outputs: [
|
|
959
|
+
{
|
|
960
|
+
name: "",
|
|
961
|
+
type: "uint256"
|
|
962
|
+
}
|
|
963
|
+
]
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
stateMutability: "view",
|
|
967
|
+
type: "function",
|
|
968
|
+
name: "owner",
|
|
969
|
+
inputs: [],
|
|
970
|
+
outputs: [
|
|
971
|
+
{
|
|
972
|
+
name: "",
|
|
973
|
+
type: "address"
|
|
974
|
+
}
|
|
975
|
+
]
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
stateMutability: "view",
|
|
979
|
+
type: "function",
|
|
980
|
+
name: "lp_token",
|
|
981
|
+
inputs: [],
|
|
982
|
+
outputs: [
|
|
983
|
+
{
|
|
984
|
+
name: "",
|
|
985
|
+
type: "address"
|
|
986
|
+
}
|
|
987
|
+
]
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
stateMutability: "view",
|
|
991
|
+
type: "function",
|
|
992
|
+
name: "initial_A",
|
|
993
|
+
inputs: [],
|
|
994
|
+
outputs: [
|
|
995
|
+
{
|
|
996
|
+
name: "",
|
|
997
|
+
type: "uint256"
|
|
998
|
+
}
|
|
999
|
+
]
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
stateMutability: "view",
|
|
1003
|
+
type: "function",
|
|
1004
|
+
name: "future_A",
|
|
1005
|
+
inputs: [],
|
|
1006
|
+
outputs: [
|
|
1007
|
+
{
|
|
1008
|
+
name: "",
|
|
1009
|
+
type: "uint256"
|
|
1010
|
+
}
|
|
1011
|
+
]
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
stateMutability: "view",
|
|
1015
|
+
type: "function",
|
|
1016
|
+
name: "initial_A_time",
|
|
1017
|
+
inputs: [],
|
|
1018
|
+
outputs: [
|
|
1019
|
+
{
|
|
1020
|
+
name: "",
|
|
1021
|
+
type: "uint256"
|
|
1022
|
+
}
|
|
1023
|
+
]
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
stateMutability: "view",
|
|
1027
|
+
type: "function",
|
|
1028
|
+
name: "future_A_time",
|
|
1029
|
+
inputs: [],
|
|
1030
|
+
outputs: [
|
|
1031
|
+
{
|
|
1032
|
+
name: "",
|
|
1033
|
+
type: "uint256"
|
|
1034
|
+
}
|
|
1035
|
+
]
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
stateMutability: "view",
|
|
1039
|
+
type: "function",
|
|
1040
|
+
name: "admin_actions_deadline",
|
|
1041
|
+
inputs: [],
|
|
1042
|
+
outputs: [
|
|
1043
|
+
{
|
|
1044
|
+
name: "",
|
|
1045
|
+
type: "uint256"
|
|
1046
|
+
}
|
|
1047
|
+
]
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
stateMutability: "view",
|
|
1051
|
+
type: "function",
|
|
1052
|
+
name: "transfer_ownership_deadline",
|
|
1053
|
+
inputs: [],
|
|
1054
|
+
outputs: [
|
|
1055
|
+
{
|
|
1056
|
+
name: "",
|
|
1057
|
+
type: "uint256"
|
|
1058
|
+
}
|
|
1059
|
+
]
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
stateMutability: "view",
|
|
1063
|
+
type: "function",
|
|
1064
|
+
name: "future_fee",
|
|
1065
|
+
inputs: [],
|
|
1066
|
+
outputs: [
|
|
1067
|
+
{
|
|
1068
|
+
name: "",
|
|
1069
|
+
type: "uint256"
|
|
1070
|
+
}
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
stateMutability: "view",
|
|
1075
|
+
type: "function",
|
|
1076
|
+
name: "future_admin_fee",
|
|
1077
|
+
inputs: [],
|
|
1078
|
+
outputs: [
|
|
1079
|
+
{
|
|
1080
|
+
name: "",
|
|
1081
|
+
type: "uint256"
|
|
1082
|
+
}
|
|
1083
|
+
]
|
|
1084
|
+
},
|
|
1085
|
+
{
|
|
1086
|
+
stateMutability: "view",
|
|
1087
|
+
type: "function",
|
|
1088
|
+
name: "future_offpeg_fee_multiplier",
|
|
1089
|
+
inputs: [],
|
|
1090
|
+
outputs: [
|
|
1091
|
+
{
|
|
1092
|
+
name: "",
|
|
1093
|
+
type: "uint256"
|
|
1094
|
+
}
|
|
1095
|
+
]
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
stateMutability: "view",
|
|
1099
|
+
type: "function",
|
|
1100
|
+
name: "future_owner",
|
|
1101
|
+
inputs: [],
|
|
1102
|
+
outputs: [
|
|
1103
|
+
{
|
|
1104
|
+
name: "",
|
|
1105
|
+
type: "address"
|
|
1106
|
+
}
|
|
1107
|
+
]
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
stateMutability: "view",
|
|
1111
|
+
type: "function",
|
|
1112
|
+
name: "reward_receiver",
|
|
1113
|
+
inputs: [],
|
|
1114
|
+
outputs: [
|
|
1115
|
+
{
|
|
1116
|
+
name: "",
|
|
1117
|
+
type: "address"
|
|
1118
|
+
}
|
|
1119
|
+
]
|
|
1120
|
+
},
|
|
1121
|
+
{
|
|
1122
|
+
stateMutability: "view",
|
|
1123
|
+
type: "function",
|
|
1124
|
+
name: "admin_fee_receiver",
|
|
1125
|
+
inputs: [],
|
|
1126
|
+
outputs: [
|
|
1127
|
+
{
|
|
1128
|
+
name: "",
|
|
1129
|
+
type: "address"
|
|
1130
|
+
}
|
|
1131
|
+
]
|
|
1132
|
+
}
|
|
1133
|
+
];
|
|
1134
|
+
export {
|
|
1135
|
+
e as abi
|
|
1136
|
+
};
|