@instadapp/interop-x 0.0.0-dev.ef78459 → 0.0.0-dev.f39d622
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/.env.example +2 -1
- package/.github/workflows/ci.yml +19 -0
- package/bin/interop-x +1 -1
- package/dist/package.json +81 -0
- package/dist/src/abi/aaveV2Resolver.json +832 -0
- package/dist/src/abi/balanceResolver.json +211 -0
- package/dist/src/abi/connectors/index.js +36 -0
- package/dist/src/abi/connectors/v1/aave.js +148 -0
- package/dist/src/abi/connectors/v1/aave_claim.js +4 -0
- package/dist/src/abi/connectors/v1/aave_migrate.js +109 -0
- package/dist/src/abi/connectors/v1/aave_polygon_migrate.js +110 -0
- package/dist/src/abi/connectors/v1/aave_stake.js +4 -0
- package/dist/src/abi/connectors/v1/aave_v1_import.js +54 -0
- package/dist/src/abi/connectors/v1/aave_v2.js +230 -0
- package/dist/src/abi/connectors/v1/aave_v2_import.js +59 -0
- package/dist/src/abi/connectors/v1/authority.js +100 -0
- package/dist/src/abi/connectors/v1/basic.js +136 -0
- package/dist/src/abi/connectors/v1/chi.js +36 -0
- package/dist/src/abi/connectors/v1/comp.js +4 -0
- package/dist/src/abi/connectors/v1/compound.js +4 -0
- package/dist/src/abi/connectors/v1/compoundImport.js +69 -0
- package/dist/src/abi/connectors/v1/compoundImport_v2.js +4 -0
- package/dist/src/abi/connectors/v1/compound_old.js +448 -0
- package/dist/src/abi/connectors/v1/curve.js +140 -0
- package/dist/src/abi/connectors/v1/curve_claim.js +63 -0
- package/dist/src/abi/connectors/v1/curve_gauge.js +158 -0
- package/dist/src/abi/connectors/v1/curve_sbtc.js +140 -0
- package/dist/src/abi/connectors/v1/curve_susd.js +140 -0
- package/dist/src/abi/connectors/v1/curve_three.js +79 -0
- package/dist/src/abi/connectors/v1/curve_y.js +140 -0
- package/dist/src/abi/connectors/v1/dsa_migrate_v1_to_v2.js +4 -0
- package/dist/src/abi/connectors/v1/dydx.js +148 -0
- package/dist/src/abi/connectors/v1/dydx_flash.js +52 -0
- package/dist/src/abi/connectors/v1/fee.js +50 -0
- package/dist/src/abi/connectors/v1/gelato.js +1138 -0
- package/dist/src/abi/connectors/v1/index.js +58 -0
- package/dist/src/abi/connectors/v1/instapool.js +439 -0
- package/dist/src/abi/connectors/v1/instapool_v2.js +126 -0
- package/dist/src/abi/connectors/v1/kyber.js +117 -0
- package/dist/src/abi/connectors/v1/maker.js +480 -0
- package/dist/src/abi/connectors/v1/maker_old.js +300 -0
- package/dist/src/abi/connectors/v1/math.js +43 -0
- package/dist/src/abi/connectors/v1/migrate.js +46 -0
- package/dist/src/abi/connectors/v1/oasis.js +198 -0
- package/dist/src/abi/connectors/v1/oneInch.js +160 -0
- package/dist/src/abi/connectors/v1/polygon_bridge.js +4 -0
- package/dist/src/abi/connectors/v1/refinance.js +4 -0
- package/dist/src/abi/connectors/v1/staking.js +220 -0
- package/dist/src/abi/connectors/v1/swerve.js +179 -0
- package/dist/src/abi/connectors/v1/uniswap.js +297 -0
- package/dist/src/abi/connectors/v2/1INCH-A.js +4 -0
- package/dist/src/abi/connectors/v2/1INCH-B.js +4 -0
- package/dist/src/abi/connectors/v2/AAVE-CLAIM-A.js +4 -0
- package/dist/src/abi/connectors/v2/AAVE-CLAIM-B.js +166 -0
- package/dist/src/abi/connectors/v2/AAVE-STAKE-A.js +4 -0
- package/dist/src/abi/connectors/v2/AAVE-V1-A.js +130 -0
- package/dist/src/abi/connectors/v2/AAVE-V1-IMPORT-A.js +4 -0
- package/dist/src/abi/connectors/v2/AAVE-V2-A.js +230 -0
- package/dist/src/abi/connectors/v2/AAVE-V2-IMPORT-A.js +4 -0
- package/dist/src/abi/connectors/v2/AAVE-V2-IMPORT-B.js +225 -0
- package/dist/src/abi/connectors/v2/AUTHORITY-A.js +100 -0
- package/dist/src/abi/connectors/v2/B-COMPOUND-A.js +4 -0
- package/dist/src/abi/connectors/v2/B-LIQUITY-A.js +4 -0
- package/dist/src/abi/connectors/v2/B-MAKERDAO-A.js +4 -0
- package/dist/src/abi/connectors/v2/BASIC-A.js +136 -0
- package/dist/src/abi/connectors/v2/BASIC-B.js +4 -0
- package/dist/src/abi/connectors/v2/BASIC-C.js +4 -0
- package/dist/src/abi/connectors/v2/COMP-A.js +4 -0
- package/dist/src/abi/connectors/v2/COMPOUND-A.js +4 -0
- package/dist/src/abi/connectors/v2/COMPOUND-IMPORT-A.js +4 -0
- package/dist/src/abi/connectors/v2/COMPOUND-IMPORT-B.js +195 -0
- package/dist/src/abi/connectors/v2/G-UNISWAP-A.js +4 -0
- package/dist/src/abi/connectors/v2/GELATO-AAVE-A.js +4 -0
- package/dist/src/abi/connectors/v2/INST-A.js +4 -0
- package/dist/src/abi/connectors/v2/INST-LM-A.js +4 -0
- package/dist/src/abi/connectors/v2/INST-STAKING-A.js +4 -0
- package/dist/src/abi/connectors/v2/INST-STAKING-B.js +4 -0
- package/dist/src/abi/connectors/v2/INSTAPOOL-A.js +4 -0
- package/dist/src/abi/connectors/v2/LIQUITY-A.js +4 -0
- package/dist/src/abi/connectors/v2/MAKERDAO-A.js +4 -0
- package/dist/src/abi/connectors/v2/MAKERDAO-CLAIM-A.js +136 -0
- package/dist/src/abi/connectors/v2/PARASWAP-A.js +4 -0
- package/dist/src/abi/connectors/v2/POLYGON-BRIDGE-A.js +4 -0
- package/dist/src/abi/connectors/v2/REFINANCE-A.js +4 -0
- package/dist/src/abi/connectors/v2/REFLEXER-A.js +4 -0
- package/dist/src/abi/connectors/v2/STAKE-ERC20-A.js +4 -0
- package/dist/src/abi/connectors/v2/UNISWAP-A.js +297 -0
- package/dist/src/abi/connectors/v2/UNISWAP-V2-A.js +4 -0
- package/dist/src/abi/connectors/v2/UNISWAP-V3-A.js +4 -0
- package/dist/src/abi/connectors/v2/UNISWAP-V3-STAKE-A.js +4 -0
- package/dist/src/abi/connectors/v2/WETH-A.js +4 -0
- package/dist/src/abi/connectors/v2/YEARN-VAULT-A.js +4 -0
- package/dist/src/abi/connectors/v2/index.js +89 -0
- package/dist/src/abi/erc20.json +350 -0
- package/dist/src/abi/gnosisSafe.json +747 -0
- package/dist/src/abi/index.js +21 -0
- package/dist/src/abi/instList.json +232 -0
- package/dist/src/abi/interopX.json +1436 -0
- package/dist/src/alias.js +10 -0
- package/dist/src/api/index.js +43 -0
- package/dist/src/config/index.js +31 -0
- package/dist/src/constants/addresses.js +23 -0
- package/dist/src/constants/blockConfirmations.js +8 -0
- package/dist/src/constants/capPerChain.js +8 -0
- package/dist/{constants → src/constants}/index.js +4 -0
- package/dist/src/constants/tokens.js +130 -0
- package/dist/src/constants/wrappedNativeToken.js +8 -0
- package/dist/src/crons/index.js +3 -0
- package/dist/src/crons/prices.js +16 -0
- package/dist/{db → src/db}/index.js +0 -0
- package/dist/{db → src/db}/models/index.js +1 -1
- package/dist/src/db/models/transaction.js +80 -0
- package/dist/{db → src/db}/sequelize.js +2 -1
- package/dist/src/errors/index.js +30 -0
- package/dist/src/gnosis/actions/aaveV2/index.js +11 -0
- package/dist/src/gnosis/actions/aaveV2/source.js +73 -0
- package/dist/src/gnosis/actions/aaveV2/target.js +86 -0
- package/dist/src/gnosis/actions/index.js +9 -0
- package/dist/src/gnosis/index.js +20 -0
- package/dist/src/index.js +120 -0
- package/dist/{logger → src/logger}/index.js +0 -0
- package/dist/{net → src/net}/index.js +0 -0
- package/dist/{net → src/net}/peer/index.js +8 -3
- package/dist/{net → src/net}/pool/index.js +32 -9
- package/dist/{net → src/net}/protocol/dial/BaseDialProtocol.js +0 -0
- package/dist/{net → src/net}/protocol/dial/SignatureDialProtocol.js +19 -12
- package/dist/src/net/protocol/dial/TransactionStatusDialProtocol.js +30 -0
- package/dist/{net → src/net}/protocol/index.js +54 -4
- package/dist/src/services/Prices.js +74 -0
- package/dist/src/services/index.js +8 -0
- package/dist/src/tasks/AutoUpdateTask.js +70 -0
- package/dist/{tasks → src/tasks}/BaseTask.js +13 -5
- package/dist/src/tasks/InteropX/ProcessSubmitEvents.js +244 -0
- package/dist/src/tasks/InteropX/ProcessValidateEvents.js +184 -0
- package/dist/src/tasks/InteropX/SyncLogExecuteEvents.js +112 -0
- package/dist/src/tasks/InteropX/SyncLogSubmitEvents.js +87 -0
- package/dist/src/tasks/InteropX/SyncLogValidateEvents.js +105 -0
- package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +58 -0
- package/dist/src/tasks/index.js +45 -0
- package/dist/src/typechain/AaveV2Resolver.js +2 -0
- package/dist/src/typechain/BalanceResolver.js +2 -0
- package/dist/src/typechain/Erc20.js +2 -0
- package/dist/src/typechain/GnosisSafe.js +2 -0
- package/dist/src/typechain/InstList.js +2 -0
- package/dist/src/typechain/InteropX.js +2 -0
- package/dist/src/typechain/common.js +2 -0
- package/dist/src/typechain/factories/AaveV2Resolver__factory.js +1191 -0
- package/dist/src/typechain/factories/BalanceResolver__factory.js +228 -0
- package/dist/src/typechain/factories/Erc20__factory.js +367 -0
- package/dist/src/typechain/factories/GnosisSafe__factory.js +1174 -0
- package/dist/src/typechain/factories/InstList__factory.js +249 -0
- package/dist/src/typechain/factories/InteropX__factory.js +1928 -0
- package/dist/src/typechain/factories/index.js +18 -0
- package/dist/src/typechain/index.js +39 -0
- package/dist/{types.js → src/types.js} +0 -0
- package/dist/src/utils/async.js +18 -0
- package/dist/src/utils/dsa.js +24 -0
- package/dist/src/utils/formatting.js +67 -0
- package/dist/src/utils/gnosis.js +62 -0
- package/dist/src/utils/http.js +10 -0
- package/dist/src/utils/index.js +25 -0
- package/dist/src/utils/interop.js +16 -0
- package/dist/src/utils/tokens.js +22 -0
- package/dist/src/utils/validate.js +111 -0
- package/dist/src/utils/web3.js +93 -0
- package/package.json +35 -19
- package/patches/@ethersproject+properties+5.6.0.patch +13 -0
- package/src/abi/aaveV2Resolver.json +832 -0
- package/src/abi/balanceResolver.json +211 -0
- package/src/abi/connectors/index.ts +14 -0
- package/src/abi/connectors/v1/aave.ts +147 -0
- package/src/abi/connectors/v1/aave_claim.ts +3 -0
- package/src/abi/connectors/v1/aave_migrate.ts +108 -0
- package/src/abi/connectors/v1/aave_polygon_migrate.ts +109 -0
- package/src/abi/connectors/v1/aave_stake.ts +3 -0
- package/src/abi/connectors/v1/aave_v1_import.ts +53 -0
- package/src/abi/connectors/v1/aave_v2.ts +229 -0
- package/src/abi/connectors/v1/aave_v2_import.ts +58 -0
- package/src/abi/connectors/v1/authority.ts +99 -0
- package/src/abi/connectors/v1/basic.ts +135 -0
- package/src/abi/connectors/v1/chi.ts +35 -0
- package/src/abi/connectors/v1/comp.ts +3 -0
- package/src/abi/connectors/v1/compound.ts +3 -0
- package/src/abi/connectors/v1/compoundImport.ts +68 -0
- package/src/abi/connectors/v1/compoundImport_v2.ts +3 -0
- package/src/abi/connectors/v1/compound_old.ts +447 -0
- package/src/abi/connectors/v1/curve.ts +139 -0
- package/src/abi/connectors/v1/curve_claim.ts +62 -0
- package/src/abi/connectors/v1/curve_gauge.ts +157 -0
- package/src/abi/connectors/v1/curve_sbtc.ts +139 -0
- package/src/abi/connectors/v1/curve_susd.ts +139 -0
- package/src/abi/connectors/v1/curve_three.ts +78 -0
- package/src/abi/connectors/v1/curve_y.ts +139 -0
- package/src/abi/connectors/v1/dsa_migrate_v1_to_v2.ts +3 -0
- package/src/abi/connectors/v1/dydx.ts +147 -0
- package/src/abi/connectors/v1/dydx_flash.ts +51 -0
- package/src/abi/connectors/v1/fee.ts +49 -0
- package/src/abi/connectors/v1/gelato.ts +1137 -0
- package/src/abi/connectors/v1/index.ts +42 -0
- package/src/abi/connectors/v1/instapool.ts +438 -0
- package/src/abi/connectors/v1/instapool_v2.ts +125 -0
- package/src/abi/connectors/v1/kyber.ts +116 -0
- package/src/abi/connectors/v1/maker.ts +479 -0
- package/src/abi/connectors/v1/maker_old.ts +299 -0
- package/src/abi/connectors/v1/math.ts +42 -0
- package/src/abi/connectors/v1/migrate.ts +45 -0
- package/src/abi/connectors/v1/oasis.ts +197 -0
- package/src/abi/connectors/v1/oneInch.ts +159 -0
- package/src/abi/connectors/v1/polygon_bridge.ts +3 -0
- package/src/abi/connectors/v1/refinance.ts +3 -0
- package/src/abi/connectors/v1/staking.ts +219 -0
- package/src/abi/connectors/v1/swerve.ts +178 -0
- package/src/abi/connectors/v1/uniswap.ts +297 -0
- package/src/abi/connectors/v2/1INCH-A.ts +3 -0
- package/src/abi/connectors/v2/1INCH-B.ts +3 -0
- package/src/abi/connectors/v2/AAVE-CLAIM-A.ts +3 -0
- package/src/abi/connectors/v2/AAVE-CLAIM-B.ts +165 -0
- package/src/abi/connectors/v2/AAVE-STAKE-A.ts +3 -0
- package/src/abi/connectors/v2/AAVE-V1-A.ts +130 -0
- package/src/abi/connectors/v2/AAVE-V1-IMPORT-A.ts +3 -0
- package/src/abi/connectors/v2/AAVE-V2-A.ts +229 -0
- package/src/abi/connectors/v2/AAVE-V2-IMPORT-A.ts +3 -0
- package/src/abi/connectors/v2/AAVE-V2-IMPORT-B.ts +224 -0
- package/src/abi/connectors/v2/AUTHORITY-A.ts +99 -0
- package/src/abi/connectors/v2/B-COMPOUND-A.ts +3 -0
- package/src/abi/connectors/v2/B-LIQUITY-A.ts +3 -0
- package/src/abi/connectors/v2/B-MAKERDAO-A.ts +3 -0
- package/src/abi/connectors/v2/BASIC-A.ts +135 -0
- package/src/abi/connectors/v2/BASIC-B.ts +3 -0
- package/src/abi/connectors/v2/BASIC-C.ts +3 -0
- package/src/abi/connectors/v2/COMP-A.ts +3 -0
- package/src/abi/connectors/v2/COMPOUND-A.ts +3 -0
- package/src/abi/connectors/v2/COMPOUND-IMPORT-A.ts +3 -0
- package/src/abi/connectors/v2/COMPOUND-IMPORT-B.ts +194 -0
- package/src/abi/connectors/v2/G-UNISWAP-A.ts +3 -0
- package/src/abi/connectors/v2/GELATO-AAVE-A.ts +3 -0
- package/src/abi/connectors/v2/INST-A.ts +3 -0
- package/src/abi/connectors/v2/INST-LM-A.ts +3 -0
- package/src/abi/connectors/v2/INST-STAKING-A.ts +3 -0
- package/src/abi/connectors/v2/INST-STAKING-B.ts +3 -0
- package/src/abi/connectors/v2/INSTAPOOL-A.ts +3 -0
- package/src/abi/connectors/v2/LIQUITY-A.ts +3 -0
- package/src/abi/connectors/v2/MAKERDAO-A.ts +3 -0
- package/src/abi/connectors/v2/MAKERDAO-CLAIM-A.ts +135 -0
- package/src/abi/connectors/v2/PARASWAP-A.ts +3 -0
- package/src/abi/connectors/v2/POLYGON-BRIDGE-A.ts +3 -0
- package/src/abi/connectors/v2/REFINANCE-A.ts +3 -0
- package/src/abi/connectors/v2/REFLEXER-A.ts +3 -0
- package/src/abi/connectors/v2/STAKE-ERC20-A.ts +3 -0
- package/src/abi/connectors/v2/UNISWAP-A.ts +297 -0
- package/src/abi/connectors/v2/UNISWAP-V2-A.ts +3 -0
- package/src/abi/connectors/v2/UNISWAP-V3-A.ts +3 -0
- package/src/abi/connectors/v2/UNISWAP-V3-STAKE-A.ts +3 -0
- package/src/abi/connectors/v2/WETH-A.ts +3 -0
- package/src/abi/connectors/v2/YEARN-VAULT-A.ts +3 -0
- package/src/abi/connectors/v2/index.ts +87 -0
- package/src/abi/erc20.json +350 -0
- package/src/abi/gnosisSafe.json +747 -0
- package/src/abi/index.ts +17 -0
- package/src/abi/instList.json +232 -0
- package/src/abi/interopX.json +1436 -0
- package/src/alias.ts +6 -0
- package/src/api/index.ts +44 -0
- package/src/config/index.ts +17 -1
- package/src/constants/addresses.ts +26 -6
- package/src/constants/blockConfirmations.ts +5 -0
- package/src/constants/capPerChain.ts +5 -0
- package/src/constants/index.ts +4 -0
- package/src/constants/tokens.ts +127 -0
- package/src/constants/wrappedNativeToken.ts +5 -0
- package/src/crons/index.ts +1 -0
- package/src/crons/prices.ts +12 -0
- package/src/db/models/index.ts +1 -1
- package/src/db/models/transaction.ts +190 -0
- package/src/db/sequelize.ts +2 -1
- package/src/errors/index.ts +26 -0
- package/src/gnosis/actions/aaveV2/index.ts +9 -0
- package/src/gnosis/actions/aaveV2/source.ts +118 -0
- package/src/gnosis/actions/aaveV2/target.ts +141 -0
- package/src/gnosis/actions/index.ts +5 -0
- package/src/gnosis/index.ts +19 -0
- package/src/index.ts +110 -8
- package/src/net/peer/index.ts +9 -7
- package/src/net/pool/index.ts +41 -11
- package/src/net/protocol/dial/SignatureDialProtocol.ts +23 -15
- package/src/net/protocol/dial/TransactionStatusDialProtocol.ts +33 -0
- package/src/net/protocol/index.ts +70 -4
- package/src/services/Prices.ts +89 -0
- package/src/services/index.ts +1 -0
- package/src/tasks/AutoUpdateTask.ts +82 -0
- package/src/tasks/BaseTask.ts +15 -6
- package/src/tasks/InteropX/ProcessSubmitEvents.ts +344 -0
- package/src/tasks/InteropX/ProcessValidateEvents.ts +271 -0
- package/src/tasks/InteropX/SyncLogExecuteEvents.ts +160 -0
- package/src/tasks/InteropX/SyncLogSubmitEvents.ts +137 -0
- package/src/tasks/InteropX/SyncLogValidateEvents.ts +150 -0
- package/src/tasks/Transactions/SyncTransactionStatusTask.ts +70 -0
- package/src/tasks/index.ts +32 -2
- package/src/typechain/AaveV2Resolver.ts +1017 -0
- package/src/typechain/BalanceResolver.ts +266 -0
- package/src/typechain/Erc20.ts +491 -0
- package/src/typechain/GnosisSafe.ts +1728 -0
- package/src/typechain/InstList.ts +402 -0
- package/src/typechain/InteropX.ts +1216 -0
- package/src/typechain/common.ts +44 -0
- package/src/typechain/factories/AaveV2Resolver__factory.ts +1198 -0
- package/src/typechain/factories/BalanceResolver__factory.ts +235 -0
- package/src/typechain/factories/Erc20__factory.ts +368 -0
- package/src/typechain/factories/GnosisSafe__factory.ts +1178 -0
- package/src/typechain/factories/InstList__factory.ts +253 -0
- package/src/typechain/factories/InteropX__factory.ts +1932 -0
- package/src/typechain/factories/index.ts +9 -0
- package/src/typechain/index.ts +16 -0
- package/src/types.ts +1 -1
- package/src/utils/async.ts +22 -0
- package/src/utils/dsa.ts +30 -0
- package/src/utils/formatting.ts +68 -0
- package/src/utils/gnosis.ts +123 -0
- package/src/utils/http.ts +6 -0
- package/src/utils/index.ts +9 -116
- package/src/utils/interop.ts +28 -0
- package/src/utils/tokens.ts +21 -0
- package/src/utils/validate.ts +173 -0
- package/src/utils/web3.ts +132 -0
- package/tsconfig.json +7 -2
- package/dist/config/index.js +0 -17
- package/dist/constants/addresses.js +0 -13
- package/dist/db/models/execution.js +0 -38
- package/dist/index.js +0 -43
- package/dist/tasks/index.js +0 -19
- package/dist/utils/index.js +0 -89
- package/src/db/models/execution.ts +0 -57
@@ -0,0 +1,18 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.InteropX__factory = exports.InstList__factory = exports.GnosisSafe__factory = exports.Erc20__factory = exports.BalanceResolver__factory = exports.AaveV2Resolver__factory = void 0;
|
4
|
+
/* Autogenerated file. Do not edit manually. */
|
5
|
+
/* tslint:disable */
|
6
|
+
/* eslint-disable */
|
7
|
+
var AaveV2Resolver__factory_1 = require("./AaveV2Resolver__factory");
|
8
|
+
Object.defineProperty(exports, "AaveV2Resolver__factory", { enumerable: true, get: function () { return AaveV2Resolver__factory_1.AaveV2Resolver__factory; } });
|
9
|
+
var BalanceResolver__factory_1 = require("./BalanceResolver__factory");
|
10
|
+
Object.defineProperty(exports, "BalanceResolver__factory", { enumerable: true, get: function () { return BalanceResolver__factory_1.BalanceResolver__factory; } });
|
11
|
+
var Erc20__factory_1 = require("./Erc20__factory");
|
12
|
+
Object.defineProperty(exports, "Erc20__factory", { enumerable: true, get: function () { return Erc20__factory_1.Erc20__factory; } });
|
13
|
+
var GnosisSafe__factory_1 = require("./GnosisSafe__factory");
|
14
|
+
Object.defineProperty(exports, "GnosisSafe__factory", { enumerable: true, get: function () { return GnosisSafe__factory_1.GnosisSafe__factory; } });
|
15
|
+
var InstList__factory_1 = require("./InstList__factory");
|
16
|
+
Object.defineProperty(exports, "InstList__factory", { enumerable: true, get: function () { return InstList__factory_1.InstList__factory; } });
|
17
|
+
var InteropX__factory_1 = require("./InteropX__factory");
|
18
|
+
Object.defineProperty(exports, "InteropX__factory", { enumerable: true, get: function () { return InteropX__factory_1.InteropX__factory; } });
|
@@ -0,0 +1,39 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
15
|
+
}) : function(o, v) {
|
16
|
+
o["default"] = v;
|
17
|
+
});
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
19
|
+
if (mod && mod.__esModule) return mod;
|
20
|
+
var result = {};
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
22
|
+
__setModuleDefault(result, mod);
|
23
|
+
return result;
|
24
|
+
};
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
26
|
+
exports.InteropX__factory = exports.InstList__factory = exports.GnosisSafe__factory = exports.Erc20__factory = exports.BalanceResolver__factory = exports.AaveV2Resolver__factory = exports.factories = void 0;
|
27
|
+
exports.factories = __importStar(require("./factories"));
|
28
|
+
var AaveV2Resolver__factory_1 = require("./factories/AaveV2Resolver__factory");
|
29
|
+
Object.defineProperty(exports, "AaveV2Resolver__factory", { enumerable: true, get: function () { return AaveV2Resolver__factory_1.AaveV2Resolver__factory; } });
|
30
|
+
var BalanceResolver__factory_1 = require("./factories/BalanceResolver__factory");
|
31
|
+
Object.defineProperty(exports, "BalanceResolver__factory", { enumerable: true, get: function () { return BalanceResolver__factory_1.BalanceResolver__factory; } });
|
32
|
+
var Erc20__factory_1 = require("./factories/Erc20__factory");
|
33
|
+
Object.defineProperty(exports, "Erc20__factory", { enumerable: true, get: function () { return Erc20__factory_1.Erc20__factory; } });
|
34
|
+
var GnosisSafe__factory_1 = require("./factories/GnosisSafe__factory");
|
35
|
+
Object.defineProperty(exports, "GnosisSafe__factory", { enumerable: true, get: function () { return GnosisSafe__factory_1.GnosisSafe__factory; } });
|
36
|
+
var InstList__factory_1 = require("./factories/InstList__factory");
|
37
|
+
Object.defineProperty(exports, "InstList__factory", { enumerable: true, get: function () { return InstList__factory_1.InstList__factory; } });
|
38
|
+
var InteropX__factory_1 = require("./factories/InteropX__factory");
|
39
|
+
Object.defineProperty(exports, "InteropX__factory", { enumerable: true, get: function () { return InteropX__factory_1.InteropX__factory; } });
|
File without changes
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.asyncCallWithTimeout = void 0;
|
4
|
+
/**
|
5
|
+
* Call an async function with a maximum time limit (in milliseconds) for the timeout
|
6
|
+
* Resolved promise for async function call, or an error if time limit reached
|
7
|
+
*/
|
8
|
+
const asyncCallWithTimeout = async (asyncPromise, timeout) => {
|
9
|
+
let timeoutHandle;
|
10
|
+
const timeoutPromise = new Promise((_resolve, reject) => {
|
11
|
+
timeoutHandle = setTimeout(() => reject(new Error("Async call timeout limit reached")), timeout);
|
12
|
+
});
|
13
|
+
return Promise.race([asyncPromise, timeoutPromise]).then((result) => {
|
14
|
+
clearTimeout(timeoutHandle);
|
15
|
+
return result;
|
16
|
+
});
|
17
|
+
};
|
18
|
+
exports.asyncCallWithTimeout = asyncCallWithTimeout;
|
@@ -0,0 +1,24 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.encodeConnectorMethod = void 0;
|
7
|
+
const web3_eth_abi_1 = __importDefault(require("web3-eth-abi"));
|
8
|
+
const connectors_1 = require("@/abi/connectors");
|
9
|
+
const encodeConnectorMethod = (params) => {
|
10
|
+
const connectorInterface = getInterface(connectors_1.connectors.versions[2][params.connector], params.method);
|
11
|
+
if (!connectorInterface)
|
12
|
+
throw new Error(`ConnectorInterface '${params.method}' not found`);
|
13
|
+
//@ts-ignore
|
14
|
+
return web3_eth_abi_1.default.encodeFunctionCall(connectorInterface, params.args);
|
15
|
+
};
|
16
|
+
exports.encodeConnectorMethod = encodeConnectorMethod;
|
17
|
+
const getInterface = (abiItems, method) => {
|
18
|
+
const abiItem = abiItems.find((abiItem) => abiItem.name === method);
|
19
|
+
if (!abiItem) {
|
20
|
+
console.error(`${method} is an invalid method.`);
|
21
|
+
return;
|
22
|
+
}
|
23
|
+
return abiItem;
|
24
|
+
};
|
@@ -0,0 +1,67 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.getExplorerUrl = exports.getChainIdNativeSymbol = exports.chainIdToName = exports.short = exports.shortenHash = exports.formatUsd = void 0;
|
4
|
+
const locale = "en-US";
|
5
|
+
function formatUsd(value, fractionDigits = 0) {
|
6
|
+
const formatter = new Intl.NumberFormat(locale, {
|
7
|
+
style: "currency",
|
8
|
+
currency: "USD",
|
9
|
+
minimumFractionDigits: fractionDigits,
|
10
|
+
maximumFractionDigits: fractionDigits
|
11
|
+
});
|
12
|
+
return formatter.format(value);
|
13
|
+
}
|
14
|
+
exports.formatUsd = formatUsd;
|
15
|
+
function shortenHash(hash, length = 4) {
|
16
|
+
if (!hash)
|
17
|
+
return;
|
18
|
+
if (hash.length < 12)
|
19
|
+
return hash;
|
20
|
+
const beginningChars = hash.startsWith("0x") ? length + 2 : length;
|
21
|
+
const shortened = hash.substr(0, beginningChars) + "…" + hash.substr(-length);
|
22
|
+
return shortened;
|
23
|
+
}
|
24
|
+
exports.shortenHash = shortenHash;
|
25
|
+
function short(buffer) {
|
26
|
+
return buffer.toString("hex").slice(0, 8) + "...";
|
27
|
+
}
|
28
|
+
exports.short = short;
|
29
|
+
const chainIdToName = (chainId) => {
|
30
|
+
switch (String(chainId)) {
|
31
|
+
case "1":
|
32
|
+
return "Mainnet";
|
33
|
+
case "137":
|
34
|
+
return "Polygon";
|
35
|
+
case "43114":
|
36
|
+
return "Avalanche";
|
37
|
+
default:
|
38
|
+
return "Mainnet";
|
39
|
+
}
|
40
|
+
};
|
41
|
+
exports.chainIdToName = chainIdToName;
|
42
|
+
const getChainIdNativeSymbol = (chainId) => {
|
43
|
+
switch (String(chainId)) {
|
44
|
+
case "137":
|
45
|
+
return "MATIC";
|
46
|
+
case "43114":
|
47
|
+
return "AVAX";
|
48
|
+
case "1":
|
49
|
+
return "ETH";
|
50
|
+
default:
|
51
|
+
return "ETH";
|
52
|
+
}
|
53
|
+
};
|
54
|
+
exports.getChainIdNativeSymbol = getChainIdNativeSymbol;
|
55
|
+
const getExplorerUrl = (chainId, suffix = '/') => {
|
56
|
+
switch (String(chainId)) {
|
57
|
+
case "1":
|
58
|
+
return `https://etherscan.io${suffix}`;
|
59
|
+
case "137":
|
60
|
+
return `https://polygonscan.com${suffix}`;
|
61
|
+
case "43114":
|
62
|
+
return `https://snowtrace.io${suffix}`;
|
63
|
+
default:
|
64
|
+
return `https://etherscan.io${suffix}`;
|
65
|
+
}
|
66
|
+
};
|
67
|
+
exports.getExplorerUrl = getExplorerUrl;
|
@@ -0,0 +1,62 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.generateGnosisTransaction = exports.signGnosisSafeTx = exports.buildSignatureBytes = void 0;
|
4
|
+
const constants_1 = require("@/constants");
|
5
|
+
const ethers_1 = require("ethers");
|
6
|
+
const buildSignatureBytes = (signatures) => {
|
7
|
+
signatures.sort((left, right) => left.signer.toLowerCase().localeCompare(right.signer.toLowerCase()));
|
8
|
+
let signatureBytes = "0x";
|
9
|
+
for (const sig of signatures) {
|
10
|
+
signatureBytes += sig.data.slice(2);
|
11
|
+
}
|
12
|
+
return signatureBytes;
|
13
|
+
};
|
14
|
+
exports.buildSignatureBytes = buildSignatureBytes;
|
15
|
+
const signGnosisSafeTx = async ({ to, data = null, value = "0", operation = "1", baseGas = "0", gasPrice = "0", gasToken = "0x0000000000000000000000000000000000000000", refundReceiver = "0x0000000000000000000000000000000000000000", safeTxGas = "79668", nonce = "0", chainId = 137, }, { signer }) => {
|
16
|
+
const gnosisSafe = constants_1.addresses[chainId].gnosisSafe;
|
17
|
+
const domain = {
|
18
|
+
verifyingContract: gnosisSafe,
|
19
|
+
chainId,
|
20
|
+
};
|
21
|
+
const types = {
|
22
|
+
SafeTx: [
|
23
|
+
{ type: "address", name: "to" },
|
24
|
+
{ type: "uint256", name: "value" },
|
25
|
+
{ type: "bytes", name: "data" },
|
26
|
+
{ type: "uint8", name: "operation" },
|
27
|
+
{ type: "uint256", name: "safeTxGas" },
|
28
|
+
{ type: "uint256", name: "baseGas" },
|
29
|
+
{ type: "uint256", name: "gasPrice" },
|
30
|
+
{ type: "address", name: "gasToken" },
|
31
|
+
{ type: "address", name: "refundReceiver" },
|
32
|
+
{ type: "uint256", name: "nonce" },
|
33
|
+
],
|
34
|
+
};
|
35
|
+
const message = {
|
36
|
+
baseGas,
|
37
|
+
data,
|
38
|
+
gasPrice,
|
39
|
+
gasToken,
|
40
|
+
nonce: Number(nonce),
|
41
|
+
operation,
|
42
|
+
refundReceiver,
|
43
|
+
safeAddress: gnosisSafe,
|
44
|
+
safeTxGas: String(safeTxGas),
|
45
|
+
to,
|
46
|
+
value,
|
47
|
+
};
|
48
|
+
return await signer._signTypedData(domain, types, message);
|
49
|
+
};
|
50
|
+
exports.signGnosisSafeTx = signGnosisSafeTx;
|
51
|
+
const generateGnosisTransaction = async (transactionData, safeContract) => {
|
52
|
+
console.log(transactionData);
|
53
|
+
let isExecuted = await safeContract.dataHashes(await safeContract.getTransactionHash(transactionData.to, transactionData.value, transactionData.data, transactionData.operation, transactionData.safeTxGas, transactionData.baseGas, transactionData.gasPrice, transactionData.gasToken, transactionData.refundReceiver, transactionData.nonce));
|
54
|
+
while (isExecuted == 1) {
|
55
|
+
transactionData.safeTxGas = ethers_1.ethers.BigNumber.from(String(transactionData.safeTxGas))
|
56
|
+
.add(1)
|
57
|
+
.toString();
|
58
|
+
isExecuted = await safeContract.dataHashes(await safeContract.getTransactionHash(transactionData.to, transactionData.value, transactionData.data, transactionData.operation, transactionData.safeTxGas, transactionData.baseGas, transactionData.gasPrice, transactionData.gasToken, transactionData.refundReceiver, transactionData.nonce));
|
59
|
+
}
|
60
|
+
return transactionData;
|
61
|
+
};
|
62
|
+
exports.generateGnosisTransaction = generateGnosisTransaction;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.http = void 0;
|
7
|
+
const axios_1 = __importDefault(require("axios"));
|
8
|
+
const axios_retry_1 = __importDefault(require("axios-retry"));
|
9
|
+
exports.http = axios_1.default.create();
|
10
|
+
(0, axios_retry_1.default)(exports.http, { retries: 3, retryDelay: axios_retry_1.default.exponentialDelay });
|
@@ -0,0 +1,25 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./async"), exports);
|
18
|
+
__exportStar(require("./dsa"), exports);
|
19
|
+
__exportStar(require("./formatting"), exports);
|
20
|
+
__exportStar(require("./gnosis"), exports);
|
21
|
+
__exportStar(require("./http"), exports);
|
22
|
+
__exportStar(require("./interop"), exports);
|
23
|
+
__exportStar(require("./web3"), exports);
|
24
|
+
__exportStar(require("./validate"), exports);
|
25
|
+
__exportStar(require("./tokens"), exports);
|
@@ -0,0 +1,16 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.generateInteropTransactionHash = void 0;
|
4
|
+
const ethers_1 = require("ethers");
|
5
|
+
const generateInteropTransactionHash = (data) => {
|
6
|
+
return ethers_1.ethers.utils.solidityKeccak256(Array.from({ length: 7 }, () => "string"), [
|
7
|
+
String(data.actionId),
|
8
|
+
String(data.vnonce),
|
9
|
+
String(data.sourceSender),
|
10
|
+
String(data.sourceChainId),
|
11
|
+
String(data.sourceDsaId),
|
12
|
+
String(data.targetChainId),
|
13
|
+
String(data.targetDsaId),
|
14
|
+
]);
|
15
|
+
};
|
16
|
+
exports.generateInteropTransactionHash = generateInteropTransactionHash;
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.isNativeOrWrappedToken = exports.isNativeWrappedToken = exports.isNativeToken = void 0;
|
4
|
+
const constants_1 = require("@/constants");
|
5
|
+
const isNativeToken = (tokenAddress) => {
|
6
|
+
return tokenAddress.toLowerCase() === "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE".toLowerCase();
|
7
|
+
};
|
8
|
+
exports.isNativeToken = isNativeToken;
|
9
|
+
const isNativeWrappedToken = (tokenAddress, chainId) => {
|
10
|
+
return constants_1.wrappedNativeToken[chainId].toLowerCase() == tokenAddress.toLowerCase();
|
11
|
+
};
|
12
|
+
exports.isNativeWrappedToken = isNativeWrappedToken;
|
13
|
+
const isNativeOrWrappedToken = (tokenAddress, chainId) => {
|
14
|
+
if ((0, exports.isNativeToken)(tokenAddress)) {
|
15
|
+
return true;
|
16
|
+
}
|
17
|
+
if ((0, exports.isNativeWrappedToken)(tokenAddress, chainId)) {
|
18
|
+
return true;
|
19
|
+
}
|
20
|
+
return false;
|
21
|
+
};
|
22
|
+
exports.isNativeOrWrappedToken = isNativeOrWrappedToken;
|
@@ -0,0 +1,111 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.validateLiquidityCap = exports.validateTargetLiquidity = exports.validateSourceLiquidity = exports.validateChains = void 0;
|
7
|
+
const abi_1 = __importDefault(require("@/abi"));
|
8
|
+
const constants_1 = require("@/constants");
|
9
|
+
const errors_1 = require("@/errors");
|
10
|
+
const ethers_1 = require("ethers");
|
11
|
+
const web3_1 = require("./web3");
|
12
|
+
const bignumber_js_1 = __importDefault(require("bignumber.js"));
|
13
|
+
const formatting_1 = require("./formatting");
|
14
|
+
const tokens_1 = require("./tokens");
|
15
|
+
const services_1 = require("@/services");
|
16
|
+
const validateChains = ({ sourceChainId, targetChainId }) => {
|
17
|
+
if (!sourceChainId) {
|
18
|
+
throw new errors_1.InvalidChaindIdError("Source chain id is required");
|
19
|
+
}
|
20
|
+
if (!targetChainId) {
|
21
|
+
throw new errors_1.InvalidChaindIdError("Target chain id is required");
|
22
|
+
}
|
23
|
+
if (sourceChainId == targetChainId) {
|
24
|
+
throw new errors_1.InvalidChaindIdError("Source and target chain cannot be the same");
|
25
|
+
}
|
26
|
+
if (!constants_1.addresses[sourceChainId]) {
|
27
|
+
throw new errors_1.InvalidChaindIdError("Invalid source chain id");
|
28
|
+
}
|
29
|
+
if (!constants_1.addresses[targetChainId]) {
|
30
|
+
throw new errors_1.InvalidChaindIdError("Invalid target chain id");
|
31
|
+
}
|
32
|
+
};
|
33
|
+
exports.validateChains = validateChains;
|
34
|
+
const validateSourceLiquidity = async ({ position, sourceChainId, isSupply = false, sourceProvider = null, }) => {
|
35
|
+
sourceProvider = sourceProvider || new ethers_1.ethers.providers.JsonRpcProvider((0, web3_1.getRpcProviderUrl)(sourceChainId));
|
36
|
+
const sourceBalanceResolverContract = (0, web3_1.getContract)(constants_1.addresses[sourceChainId].balanceResolver, abi_1.default.balanceResolver, sourceProvider);
|
37
|
+
const srcBalance = await sourceBalanceResolverContract.methods
|
38
|
+
.checkLiquidity(position, constants_1.addresses[sourceChainId].interopX, isSupply, false)
|
39
|
+
.call();
|
40
|
+
if (!srcBalance.isOk) {
|
41
|
+
let liquidityRequired = "";
|
42
|
+
srcBalance.withdraw.forEach(a => {
|
43
|
+
const token = constants_1.tokens[sourceChainId].find(t => t.address.toLowerCase() === a.token.toLowerCase());
|
44
|
+
if (token && (new bignumber_js_1.default(a.liquidityShort).isZero()) == false) {
|
45
|
+
liquidityRequired += `- Need ${new bignumber_js_1.default(a.liquidityShort).dividedBy(10 ** token.decimals).toFormat()} ${token.symbol}\n`;
|
46
|
+
}
|
47
|
+
});
|
48
|
+
throw new errors_1.LowLiquidityError(`Liquidity low on ${(0, formatting_1.chainIdToName)(sourceChainId)}: \n` + liquidityRequired);
|
49
|
+
}
|
50
|
+
};
|
51
|
+
exports.validateSourceLiquidity = validateSourceLiquidity;
|
52
|
+
const validateTargetLiquidity = async ({ position, targetChainId, targetProvider = null, }) => {
|
53
|
+
targetProvider = targetProvider || new ethers_1.ethers.providers.JsonRpcProvider((0, web3_1.getRpcProviderUrl)(targetChainId));
|
54
|
+
const sourceBalanceResolverContract = (0, web3_1.getContract)(constants_1.addresses[targetChainId].balanceResolver, abi_1.default.balanceResolver, targetProvider);
|
55
|
+
const targetBalance = await sourceBalanceResolverContract.methods
|
56
|
+
.checkLiquidity(position, constants_1.addresses[targetChainId].interopX, true, true)
|
57
|
+
.call();
|
58
|
+
if (!targetBalance.isOk) {
|
59
|
+
let liquidityRequired = "";
|
60
|
+
targetBalance.supply.forEach(a => {
|
61
|
+
const token = constants_1.tokens[targetChainId].find(t => t.address.toLowerCase() === a.token.toLowerCase());
|
62
|
+
if (token) {
|
63
|
+
liquidityRequired += `- Need ${new bignumber_js_1.default(a.liquidityShort).dividedBy(10 ** token.decimals).toFormat()} ${token.symbol}\n`;
|
64
|
+
}
|
65
|
+
});
|
66
|
+
throw new errors_1.LowLiquidityError(`Liquidity low on ${(0, formatting_1.chainIdToName)(targetChainId)}: \n` + liquidityRequired);
|
67
|
+
}
|
68
|
+
};
|
69
|
+
exports.validateTargetLiquidity = validateTargetLiquidity;
|
70
|
+
const mapTokenAddressToMainnetToken = (address, targetChainId) => {
|
71
|
+
targetChainId = String(targetChainId);
|
72
|
+
const token = constants_1.tokens[targetChainId].find((t) => t.address.toLowerCase() === address.toLowerCase());
|
73
|
+
if (targetChainId === "1") {
|
74
|
+
return token;
|
75
|
+
}
|
76
|
+
if (!token) {
|
77
|
+
return null;
|
78
|
+
}
|
79
|
+
return constants_1.tokens["1"].find((t) => t.symbol === token.symbol);
|
80
|
+
};
|
81
|
+
const validateLiquidityCap = async (position, sourceChainId, targetChainId) => {
|
82
|
+
const cap = constants_1.capPerChain[targetChainId] || 1000000;
|
83
|
+
const mainnetPrices = services_1.Prices.getMainnetPrices();
|
84
|
+
const nativeTokenPrice = services_1.Prices.getNetworkTokenPrices()[targetChainId];
|
85
|
+
let total = new bignumber_js_1.default(0);
|
86
|
+
const supplyPosition = position[0];
|
87
|
+
for (const [srcTokenAddress, tokenAddress, amount] of supplyPosition) {
|
88
|
+
let tokenPrice;
|
89
|
+
let token;
|
90
|
+
if ((0, tokens_1.isNativeWrappedToken)(srcTokenAddress, sourceChainId)) {
|
91
|
+
tokenPrice = nativeTokenPrice;
|
92
|
+
token = constants_1.tokens[targetChainId].find(t => t.address === '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE');
|
93
|
+
}
|
94
|
+
else {
|
95
|
+
const mainnetToken = mapTokenAddressToMainnetToken(tokenAddress, targetChainId);
|
96
|
+
if (!mainnetToken) {
|
97
|
+
throw new Error(`Token ${tokenAddress} is not valid.`);
|
98
|
+
}
|
99
|
+
tokenPrice = mainnetPrices[mainnetToken.address];
|
100
|
+
if (!tokenPrice) {
|
101
|
+
throw new Error(`Token ${tokenAddress} is not valid!`);
|
102
|
+
}
|
103
|
+
token = mainnetToken;
|
104
|
+
}
|
105
|
+
total = total.plus((tokenPrice * amount) / 10 ** token.decimals);
|
106
|
+
}
|
107
|
+
if (total.isGreaterThan(cap)) {
|
108
|
+
throw new Error(`Total amount of tokens in the transaction is greater than the maximum limit of estimated ${(0, formatting_1.formatUsd)(cap)}`);
|
109
|
+
}
|
110
|
+
};
|
111
|
+
exports.validateLiquidityCap = validateLiquidityCap;
|
@@ -0,0 +1,93 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.getContract = exports.ContractError = exports.getRpcProviderUrl = void 0;
|
7
|
+
const errors_1 = require("@/errors");
|
8
|
+
const async_retry_1 = __importDefault(require("async-retry"));
|
9
|
+
const ethers_1 = require("ethers");
|
10
|
+
const getRpcProviderUrl = (chainId) => {
|
11
|
+
switch (chainId) {
|
12
|
+
case 1:
|
13
|
+
return "https://rpc.ankr.com/eth";
|
14
|
+
case 137:
|
15
|
+
return "https://rpc.ankr.com/polygon";
|
16
|
+
case 43114:
|
17
|
+
return "https://rpc.ankr.com/avalanche";
|
18
|
+
default:
|
19
|
+
throw new errors_1.UnsupportedChaindIdError(chainId);
|
20
|
+
}
|
21
|
+
};
|
22
|
+
exports.getRpcProviderUrl = getRpcProviderUrl;
|
23
|
+
class ContractError extends Error {
|
24
|
+
}
|
25
|
+
exports.ContractError = ContractError;
|
26
|
+
function getContract(address, contractInterface, signerOrProvider) {
|
27
|
+
if (!ethers_1.ethers.utils.getAddress(address) ||
|
28
|
+
address === ethers_1.ethers.constants.AddressZero) {
|
29
|
+
throw Error(`Invalid 'address' parameter '${address}'.`);
|
30
|
+
}
|
31
|
+
const contract = new ethers_1.ethers.Contract(address, contractInterface, signerOrProvider);
|
32
|
+
// Make sure the contract properties is writable
|
33
|
+
const desc = Object.getOwnPropertyDescriptor(contract, "functions");
|
34
|
+
if (!desc || desc.writable !== true) {
|
35
|
+
return contract;
|
36
|
+
}
|
37
|
+
return new Proxy(contract, {
|
38
|
+
get(target, prop, receiver) {
|
39
|
+
const value = Reflect.get(target, prop, receiver);
|
40
|
+
if (typeof value === "function" &&
|
41
|
+
(contract.functions.hasOwnProperty(prop) ||
|
42
|
+
["queryFilter"].includes(String(prop)))) {
|
43
|
+
let isConstant = false;
|
44
|
+
try {
|
45
|
+
isConstant = contract.interface.getFunction(String(prop)).constant;
|
46
|
+
}
|
47
|
+
catch (error) { }
|
48
|
+
return async (...args) => {
|
49
|
+
try {
|
50
|
+
return await (0, async_retry_1.default)(async () => await value.bind(contract)(...args), { retries: isConstant ? 1 : 3 });
|
51
|
+
}
|
52
|
+
catch (error) {
|
53
|
+
const err = new ContractError(`Error calling "${String(prop)}" on "${address}": ${error.reason || error.message}`);
|
54
|
+
err.method = String(prop);
|
55
|
+
err.address = address;
|
56
|
+
err.args = [...args];
|
57
|
+
throw err;
|
58
|
+
}
|
59
|
+
};
|
60
|
+
}
|
61
|
+
if (typeof value === "object" &&
|
62
|
+
[
|
63
|
+
"populateTransaction",
|
64
|
+
"estimateGas",
|
65
|
+
"functions",
|
66
|
+
"callStatic",
|
67
|
+
].includes(String(prop))) {
|
68
|
+
const parentProp = String(prop);
|
69
|
+
return new Proxy(value, {
|
70
|
+
get(target, prop, receiver) {
|
71
|
+
const value = Reflect.get(target, prop, receiver);
|
72
|
+
if (typeof value === "function") {
|
73
|
+
return async (...args) => {
|
74
|
+
try {
|
75
|
+
return await (0, async_retry_1.default)(async () => await value.bind(contract)(...args), { retries: parentProp === "callStatic" ? 3 : 1 });
|
76
|
+
}
|
77
|
+
catch (error) {
|
78
|
+
const err = new ContractError(`Error calling "${String(prop)}" using "${parentProp}" on "${address}": ${error.reason || error.message}`);
|
79
|
+
err.method = String(prop);
|
80
|
+
err.address = address;
|
81
|
+
err.args = [...args];
|
82
|
+
throw err;
|
83
|
+
}
|
84
|
+
};
|
85
|
+
}
|
86
|
+
},
|
87
|
+
});
|
88
|
+
}
|
89
|
+
return value;
|
90
|
+
},
|
91
|
+
});
|
92
|
+
}
|
93
|
+
exports.getContract = getContract;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@instadapp/interop-x",
|
3
|
-
"version": "0.0.0-dev.
|
3
|
+
"version": "0.0.0-dev.f39d622",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"engines": {
|
@@ -9,9 +9,11 @@
|
|
9
9
|
},
|
10
10
|
"scripts": {
|
11
11
|
"start": "yarn build && node bin/interop-x",
|
12
|
-
"build": "export GIT_REF=$(git rev-parse --short HEAD) && rimraf ./dist && tsc -p tsconfig.json && replace-in-file '@GIT_SHORT_HASH@' $GIT_REF ./dist/**/*.js",
|
13
|
-
"dev": "NODE_ENV=development nodemon",
|
14
|
-
"
|
12
|
+
"build": "yarn generate-abi-types && export GIT_REF=$(git rev-parse --short HEAD) && rimraf ./dist && tsc -p tsconfig.json && replace-in-file '@GIT_SHORT_HASH@' $GIT_REF ./dist/**/*.js",
|
13
|
+
"dev": "yarn generate-abi-types && NODE_ENV=development nodemon",
|
14
|
+
"generate-abi-types": "rimraf src/typechain && typechain --target=ethers-v5 'src/abi/*.json' --out-dir 'src/typechain'",
|
15
|
+
"prepublishOnly": "yarn build",
|
16
|
+
"postinstall": "patch-package"
|
15
17
|
},
|
16
18
|
"nodemonConfig": {
|
17
19
|
"watch": [
|
@@ -22,15 +24,21 @@
|
|
22
24
|
},
|
23
25
|
"dependencies": {
|
24
26
|
"@achingbrain/libp2p-gossipsub": "^0.12.2",
|
25
|
-
"
|
26
|
-
"
|
27
|
+
"@fastify/cors": "^7.0.0",
|
28
|
+
"async-retry": "^1.3.3",
|
29
|
+
"await-spawn": "^4.0.2",
|
30
|
+
"axios": "^0.27.2",
|
31
|
+
"axios-retry": "^3.2.5",
|
27
32
|
"bignumber.js": "^9.0.2",
|
28
33
|
"chalk": "4.1.2",
|
29
|
-
"
|
34
|
+
"dedent": "^0.7.0",
|
35
|
+
"dotenv": "^16.0.1",
|
30
36
|
"ethereumjs-util": "^7.1.4",
|
31
|
-
"ethers": "^5.6.
|
37
|
+
"ethers": "^5.6.5",
|
32
38
|
"ethers-multisend": "^2.1.1",
|
33
39
|
"expand-home-dir": "^0.0.3",
|
40
|
+
"fastify": "^3.29.0",
|
41
|
+
"fs-extra": "^10.1.0",
|
34
42
|
"libp2p": "^0.36.2",
|
35
43
|
"libp2p-bootstrap": "^0.14.0",
|
36
44
|
"libp2p-kad-dht": "^0.28.6",
|
@@ -40,26 +48,34 @@
|
|
40
48
|
"libp2p-pubsub-peer-discovery": "^4.0.0",
|
41
49
|
"libp2p-tcp": "^0.17.2",
|
42
50
|
"libp2p-websockets": "^0.16.2",
|
43
|
-
"luxon": "^2.
|
51
|
+
"luxon": "^2.4.0",
|
44
52
|
"module-alias": "^2.2.2",
|
45
|
-
"
|
46
|
-
"
|
47
|
-
"
|
53
|
+
"node-cron": "^3.0.1",
|
54
|
+
"patch-package": "^6.4.7",
|
55
|
+
"postinstall-postinstall": "^2.1.0",
|
56
|
+
"sequelize": "6.18.0",
|
57
|
+
"sqlite3": "^5.0.8",
|
58
|
+
"waait": "^1.0.5",
|
59
|
+
"web3-eth-abi": "^1.7.3",
|
60
|
+
"web3-utils": "^1.7.3"
|
48
61
|
},
|
49
62
|
"bin": {
|
50
|
-
"interop-
|
63
|
+
"interop-x": "bin/interop-x",
|
64
|
+
"interopx": "bin/interop-x"
|
51
65
|
},
|
52
66
|
"devDependencies": {
|
67
|
+
"@typechain/ethers-v5": "^10.0.0",
|
68
|
+
"@types/async-retry": "^1.4.4",
|
69
|
+
"@types/bn.js": "^5.1.0",
|
70
|
+
"@types/dedent": "^0.7.0",
|
53
71
|
"@types/fs-extra": "^9.0.13",
|
54
|
-
"@types/node": "^17.0.
|
55
|
-
"nodemon": "^2.0.
|
72
|
+
"@types/node": "^17.0.33",
|
73
|
+
"nodemon": "^2.0.16",
|
56
74
|
"replace-in-file": "^6.3.2",
|
57
75
|
"rimraf": "^3.0.2",
|
58
76
|
"ts-node": "^10.5.0",
|
59
77
|
"tsconfig-paths": "^3.12.0",
|
60
|
-
"
|
61
|
-
|
62
|
-
"_moduleAliases": {
|
63
|
-
"@/": "./"
|
78
|
+
"typechain": "^8.0.0",
|
79
|
+
"typescript": "^4.6.4"
|
64
80
|
}
|
65
81
|
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
diff --git a/node_modules/@ethersproject/properties/lib/index.js b/node_modules/@ethersproject/properties/lib/index.js
|
2
|
+
index 41e0b52..4c7a9e3 100644
|
3
|
+
--- a/node_modules/@ethersproject/properties/lib/index.js
|
4
|
+
+++ b/node_modules/@ethersproject/properties/lib/index.js
|
5
|
+
@@ -44,7 +44,7 @@ function defineReadOnly(object, name, value) {
|
6
|
+
Object.defineProperty(object, name, {
|
7
|
+
enumerable: true,
|
8
|
+
value: value,
|
9
|
+
- writable: false,
|
10
|
+
+ writable: true,
|
11
|
+
});
|
12
|
+
}
|
13
|
+
exports.defineReadOnly = defineReadOnly;
|