@instadapp/interop-x 0.0.0-dev.a861339 → 0.0.0-dev.a9047d2
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/.github/workflows/ci.yml +19 -0
- package/dist/package.json +22 -12
- package/dist/src/abi/aaveV2Resolver.json +832 -0
- package/dist/src/abi/aaveV3Resolver.json +628 -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/index.js +12 -2
- package/dist/src/abi/instList.json +232 -0
- package/dist/src/abi/interopX.json +1436 -0
- package/dist/src/api/index.js +8 -1
- package/dist/src/constants/addresses.js +12 -7
- package/dist/src/constants/blockConfirmations.js +8 -0
- package/dist/src/constants/capPerChain.js +8 -0
- package/dist/src/constants/index.js +3 -0
- package/dist/src/constants/tokens.js +30 -7
- 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/src/db/models/transaction.js +26 -18
- 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 +100 -0
- package/dist/src/gnosis/actions/aaveV2/target.js +101 -0
- package/dist/src/gnosis/actions/aaveV3/index.js +11 -0
- package/dist/src/gnosis/actions/aaveV3/source.js +74 -0
- package/dist/src/gnosis/actions/aaveV3/target.js +87 -0
- package/dist/src/gnosis/actions/index.js +4 -2
- package/dist/src/gnosis/index.js +3 -3
- package/dist/src/index.js +2 -1
- package/dist/src/net/protocol/dial/SignatureDialProtocol.js +2 -2
- package/dist/src/providers/index.js +17 -0
- package/dist/src/providers/retry-provider.js +45 -0
- package/dist/src/services/Prices.js +74 -0
- package/dist/src/services/index.js +8 -0
- package/dist/src/tasks/InteropX/ProcessSubmitEvents.js +273 -0
- package/dist/src/tasks/InteropX/ProcessValidateEvents.js +203 -0
- package/dist/src/tasks/InteropX/SyncLogExecuteEvents.js +113 -0
- package/dist/src/tasks/{InteropXContract/SyncBridgeRequestEvents.js → InteropX/SyncLogSubmitEvents.js} +28 -18
- package/dist/src/tasks/InteropX/SyncLogValidateEvents.js +106 -0
- package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +6 -3
- package/dist/src/tasks/index.js +19 -12
- package/dist/src/typechain/{InteropXContract.js → AaveV2Resolver.js} +0 -0
- package/dist/src/typechain/AaveV3Resolver.js +2 -0
- package/dist/src/typechain/BalanceResolver.js +2 -0
- package/dist/src/typechain/InstList.js +2 -0
- package/dist/src/typechain/InteropX.js +2 -0
- package/dist/src/typechain/factories/AaveV2Resolver__factory.js +1191 -0
- package/dist/src/typechain/factories/AaveV3Resolver__factory.js +887 -0
- package/dist/src/typechain/factories/BalanceResolver__factory.js +228 -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 +11 -3
- package/dist/src/typechain/index.js +11 -3
- 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 +87 -0
- package/dist/src/utils/http.js +10 -0
- package/dist/src/utils/index.js +22 -165
- package/dist/src/utils/interop.js +16 -0
- package/dist/src/utils/tokens.js +22 -0
- package/dist/src/utils/validate.js +107 -0
- package/dist/src/utils/web3.js +93 -0
- package/package.json +22 -12
- package/src/abi/aaveV2Resolver.json +832 -0
- package/src/abi/aaveV3Resolver.json +628 -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/index.ts +15 -5
- package/src/abi/instList.json +232 -0
- package/src/abi/interopX.json +1436 -0
- package/src/api/index.ts +9 -1
- package/src/constants/addresses.ts +24 -8
- package/src/constants/blockConfirmations.ts +5 -0
- package/src/constants/capPerChain.ts +5 -0
- package/src/constants/index.ts +3 -0
- package/src/constants/tokens.ts +31 -8
- 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/transaction.ts +147 -98
- package/src/errors/index.ts +26 -0
- package/src/gnosis/actions/aaveV2/index.ts +9 -0
- package/src/gnosis/actions/aaveV2/source.ts +183 -0
- package/src/gnosis/actions/aaveV2/target.ts +168 -0
- package/src/gnosis/actions/aaveV3/index.ts +9 -0
- package/src/gnosis/actions/aaveV3/source.ts +119 -0
- package/src/gnosis/actions/aaveV3/target.ts +142 -0
- package/src/gnosis/actions/index.ts +4 -2
- package/src/gnosis/index.ts +3 -3
- package/src/index.ts +1 -0
- package/src/net/protocol/dial/SignatureDialProtocol.ts +3 -2
- package/src/providers/index.ts +1 -0
- package/src/providers/retry-provider.ts +51 -0
- package/src/services/Prices.ts +89 -0
- package/src/services/index.ts +1 -0
- package/src/tasks/InteropX/ProcessSubmitEvents.ts +385 -0
- package/src/tasks/InteropX/ProcessValidateEvents.ts +297 -0
- package/src/tasks/InteropX/SyncLogExecuteEvents.ts +161 -0
- package/src/tasks/InteropX/SyncLogSubmitEvents.ts +138 -0
- package/src/tasks/InteropX/SyncLogValidateEvents.ts +151 -0
- package/src/tasks/Transactions/SyncTransactionStatusTask.ts +6 -3
- package/src/tasks/index.ts +20 -12
- package/src/typechain/AaveV2Resolver.ts +1017 -0
- package/src/typechain/AaveV3Resolver.ts +935 -0
- package/src/typechain/BalanceResolver.ts +266 -0
- package/src/typechain/InstList.ts +402 -0
- package/src/typechain/InteropX.ts +1216 -0
- package/src/typechain/factories/AaveV2Resolver__factory.ts +1198 -0
- package/src/typechain/factories/AaveV3Resolver__factory.ts +894 -0
- package/src/typechain/factories/BalanceResolver__factory.ts +235 -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 +5 -1
- package/src/typechain/index.ts +10 -2
- 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 +166 -0
- package/src/utils/http.ts +6 -0
- package/src/utils/index.ts +9 -240
- package/src/utils/interop.ts +28 -0
- package/src/utils/tokens.ts +21 -0
- package/src/utils/validate.ts +171 -0
- package/src/utils/web3.ts +132 -0
- package/dist/src/abi/interopXContract.json +0 -391
- package/dist/src/gnosis/actions/withdraw/index.js +0 -41
- package/dist/src/tasks/InteropXContract/ProcessBridgeRequestEvents.js +0 -147
- package/dist/src/tasks/InteropXContract/SyncBridgeRequestSentEvents.js +0 -80
- package/dist/src/typechain/factories/InteropXContract__factory.js +0 -526
- package/src/abi/interopXContract.json +0 -391
- package/src/gnosis/actions/withdraw/index.ts +0 -56
- package/src/tasks/InteropXContract/ProcessBridgeRequestEvents.ts +0 -211
- package/src/tasks/InteropXContract/SyncBridgeRequestEvents.ts +0 -116
- package/src/tasks/InteropXContract/SyncBridgeRequestSentEvents.ts +0 -112
- package/src/typechain/InteropXContract.ts +0 -524
- package/src/typechain/factories/InteropXContract__factory.ts +0 -533
@@ -1,41 +0,0 @@
|
|
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
|
-
const abi_1 = __importDefault(require("@/abi"));
|
7
|
-
const config_1 = __importDefault(require("@/config"));
|
8
|
-
const constants_1 = require("@/constants");
|
9
|
-
const utils_1 = require("@/utils");
|
10
|
-
const ethers_1 = require("ethers");
|
11
|
-
const ethers_multisend_1 = require("ethers-multisend");
|
12
|
-
async function default_1(transaction, type) {
|
13
|
-
const transactions = [];
|
14
|
-
const logs = [];
|
15
|
-
if (transaction.action !== 'withdraw') {
|
16
|
-
throw new Error(`Invalid action: ${transaction.action}`);
|
17
|
-
}
|
18
|
-
if (type !== 'source') {
|
19
|
-
throw new Error(`Type not supported: ${type}`);
|
20
|
-
}
|
21
|
-
if (transaction.action === 'withdraw' && transaction.sourceStatus === 'pending') {
|
22
|
-
throw Error('Cannot build data for pending withdraw transaction');
|
23
|
-
}
|
24
|
-
if (!transaction.requestEvent) {
|
25
|
-
throw Error('Cannot build data for transaction without requestEvent');
|
26
|
-
}
|
27
|
-
const { bridger, position, sourceChainId, targetChainId, metadata, } = transaction.requestEvent;
|
28
|
-
const sourceChainProvider = new ethers_1.ethers.providers.JsonRpcProvider((0, utils_1.getRpcProviderUrl)(targetChainId));
|
29
|
-
const sourceWallet = new ethers_1.ethers.Wallet(config_1.default.privateKey, sourceChainProvider);
|
30
|
-
const contractAddress = constants_1.addresses[sourceChainId].interopXContract;
|
31
|
-
const contract = (0, utils_1.getContract)(contractAddress, abi_1.default.interopXContract, sourceWallet);
|
32
|
-
const { data } = await contract.populateTransaction.withdrawRequested(bridger, position.withdraw[0].sourceToken, position.withdraw[0].targetToken, position.withdraw[0].amount, targetChainId, transaction.requestTransactionHash, metadata);
|
33
|
-
transactions.push({
|
34
|
-
to: contractAddress,
|
35
|
-
data: data,
|
36
|
-
value: '0',
|
37
|
-
operation: ethers_multisend_1.OperationType.Call,
|
38
|
-
});
|
39
|
-
return { transactions, logs };
|
40
|
-
}
|
41
|
-
exports.default = default_1;
|
@@ -1,147 +0,0 @@
|
|
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
|
-
const BaseTask_1 = require("../BaseTask");
|
7
|
-
const logger_1 = __importDefault(require("@/logger"));
|
8
|
-
const ethers_1 = require("ethers");
|
9
|
-
const abi_1 = __importDefault(require("@/abi"));
|
10
|
-
const db_1 = require("@/db");
|
11
|
-
const utils_1 = require("@/utils");
|
12
|
-
const constants_1 = require("@/constants");
|
13
|
-
const sequelize_1 = require("sequelize");
|
14
|
-
const config_1 = __importDefault(require("@/config"));
|
15
|
-
const waait_1 = __importDefault(require("waait"));
|
16
|
-
const gnosis_1 = require("@/gnosis");
|
17
|
-
const net_1 = require("@/net");
|
18
|
-
class ProccessBridgeRequestEvents extends BaseTask_1.BaseTask {
|
19
|
-
constructor({ chainId }) {
|
20
|
-
super({
|
21
|
-
logger: new logger_1.default("InteropXContract::ProccessBridgeRequestEvents"),
|
22
|
-
});
|
23
|
-
this.leadNodeOnly = true;
|
24
|
-
this.chainId = chainId;
|
25
|
-
}
|
26
|
-
async pollHandler() {
|
27
|
-
var _a;
|
28
|
-
const blockNumber = await this.provider.getBlockNumber();
|
29
|
-
const transaction = await db_1.Transaction.findOne({
|
30
|
-
where: {
|
31
|
-
status: 'pending',
|
32
|
-
sourceStatus: 'uninitialised',
|
33
|
-
createdAt: {
|
34
|
-
[sequelize_1.Op.gte]: new Date(Date.now() - 12 * 60 * 60 * 1000),
|
35
|
-
},
|
36
|
-
sourceDelayUntil: {
|
37
|
-
[sequelize_1.Op.or]: {
|
38
|
-
[sequelize_1.Op.is]: null,
|
39
|
-
[sequelize_1.Op.lt]: new Date(),
|
40
|
-
}
|
41
|
-
},
|
42
|
-
requestBlockNumber: {
|
43
|
-
[sequelize_1.Op.lt]: blockNumber - 12,
|
44
|
-
},
|
45
|
-
sourceChainId: this.chainId,
|
46
|
-
}
|
47
|
-
});
|
48
|
-
if (!transaction) {
|
49
|
-
return;
|
50
|
-
}
|
51
|
-
console.log(`Processing transaction ${transaction.transactionHash}`);
|
52
|
-
transaction.targetStatus = 'pending';
|
53
|
-
await transaction.save();
|
54
|
-
const ownersThreshold = await this.safeContract.getThreshold();
|
55
|
-
await (0, waait_1.default)(10000);
|
56
|
-
let data, logs = [];
|
57
|
-
try {
|
58
|
-
({ data, logs } = await (0, gnosis_1.buildGnosisAction)(transaction, 'source'));
|
59
|
-
}
|
60
|
-
catch (error) {
|
61
|
-
console.log(error);
|
62
|
-
transaction.sourceStatus = 'failed';
|
63
|
-
transaction.sourceErrors = [error.message];
|
64
|
-
transaction.targetStatus = 'failed';
|
65
|
-
transaction.status = 'failed';
|
66
|
-
await transaction.save();
|
67
|
-
net_1.protocol.sendTransaction(transaction);
|
68
|
-
return;
|
69
|
-
}
|
70
|
-
let gnosisTx = await (0, utils_1.generateGnosisTransaction)({
|
71
|
-
baseGas: "0",
|
72
|
-
data,
|
73
|
-
gasPrice: "0",
|
74
|
-
gasToken: "0x0000000000000000000000000000000000000000",
|
75
|
-
nonce: '0',
|
76
|
-
operation: "1",
|
77
|
-
refundReceiver: "0x0000000000000000000000000000000000000000",
|
78
|
-
safeAddress: this.safeContractAddress,
|
79
|
-
safeTxGas: "79668",
|
80
|
-
to: constants_1.addresses[transaction.sourceChainId].multisend,
|
81
|
-
value: "0",
|
82
|
-
}, this.safeContract);
|
83
|
-
const owners = await this.safeContract.getOwners().then(owners => owners.map(owner => owner.toLowerCase()));
|
84
|
-
const ownerPeerIds = net_1.peerPool.activePeers.filter(peer => owners.includes(peer.publicAddress.toLowerCase())).map(peer => peer.id);
|
85
|
-
console.log(`Collecting signatures for execution ${transaction.transactionHash}`);
|
86
|
-
console.log(ownerPeerIds);
|
87
|
-
const signatures = await net_1.protocol.requestSignatures({
|
88
|
-
type: 'source',
|
89
|
-
transactionHash: transaction.transactionHash,
|
90
|
-
safeTxGas: gnosisTx.safeTxGas,
|
91
|
-
safeNonce: gnosisTx.nonce
|
92
|
-
}, ownerPeerIds);
|
93
|
-
const validSignatures = signatures.filter(s => !!s.data && s.data !== '0x');
|
94
|
-
console.log({ signatures, validSignatures, ownersThreshold: ownersThreshold.toString() });
|
95
|
-
if (validSignatures.length === 0 || ownersThreshold.gt(validSignatures.length)) {
|
96
|
-
await transaction.save();
|
97
|
-
transaction.sourceDelayUntil = new Date(Date.now() + 30 * 1000);
|
98
|
-
transaction.sourceStatus = 'uninitialised';
|
99
|
-
await transaction.save();
|
100
|
-
const errorMessage = (_a = signatures.find(s => !!s.error)) === null || _a === void 0 ? void 0 : _a.error;
|
101
|
-
throw new Error(`Not enough signatures` + (errorMessage ? `: ${errorMessage}` : ''));
|
102
|
-
}
|
103
|
-
console.log(`Executing transaction for execution ${transaction.transactionHash}`);
|
104
|
-
const { data: txData } = await this.safeContract.populateTransaction.execTransaction(gnosisTx.to, gnosisTx.value, gnosisTx.data, gnosisTx.operation, gnosisTx.safeTxGas, gnosisTx.baseGas, gnosisTx.gasPrice, gnosisTx.gasToken, gnosisTx.refundReceiver, (0, utils_1.buildSignatureBytes)(validSignatures));
|
105
|
-
const txSent = await this.sourceWallet.sendTransaction({
|
106
|
-
from: this.sourceWallet.address,
|
107
|
-
gasPrice: ethers_1.ethers.BigNumber.from(120 * 10 ** 9),
|
108
|
-
to: this.safeContractAddress,
|
109
|
-
data: txData,
|
110
|
-
});
|
111
|
-
console.log(txSent);
|
112
|
-
const receipt = await txSent.wait();
|
113
|
-
const parsedLogs = [];
|
114
|
-
receipt.logs.forEach((log) => {
|
115
|
-
try {
|
116
|
-
parsedLogs.push(this.safeContract.interface.parseLog(log));
|
117
|
-
}
|
118
|
-
catch (e) { }
|
119
|
-
});
|
120
|
-
if (parsedLogs.find(e => e.name === 'ExecutionSuccess')) {
|
121
|
-
console.log('ExecutionSuccess');
|
122
|
-
transaction.sourceStatus = 'success';
|
123
|
-
transaction.sourceTransactionHash = txSent.hash;
|
124
|
-
transaction.sourceLogs = logs;
|
125
|
-
transaction.status = 'success';
|
126
|
-
await transaction.save();
|
127
|
-
}
|
128
|
-
else {
|
129
|
-
console.log('ExecutionFailure');
|
130
|
-
transaction.sourceStatus = 'failed';
|
131
|
-
transaction.sourceTransactionHash = txSent.hash;
|
132
|
-
transaction.status = 'failed';
|
133
|
-
await transaction.save();
|
134
|
-
}
|
135
|
-
net_1.protocol.sendTransaction(transaction);
|
136
|
-
}
|
137
|
-
async start() {
|
138
|
-
this.contractAddress = constants_1.addresses[this.chainId].interopXContract;
|
139
|
-
this.provider = new ethers_1.ethers.providers.JsonRpcProvider((0, utils_1.getRpcProviderUrl)(this.chainId));
|
140
|
-
this.sourceWallet = new ethers_1.ethers.Wallet(config_1.default.privateKey, this.provider);
|
141
|
-
this.contract = (0, utils_1.getContract)(this.contractAddress, abi_1.default.interopXContract, this.sourceWallet);
|
142
|
-
this.safeContractAddress = constants_1.addresses[this.chainId].gnosisSafe;
|
143
|
-
this.safeContract = (0, utils_1.getContract)(this.safeContractAddress, abi_1.default.gnosisSafe, this.sourceWallet);
|
144
|
-
await super.start();
|
145
|
-
}
|
146
|
-
}
|
147
|
-
exports.default = ProccessBridgeRequestEvents;
|
@@ -1,80 +0,0 @@
|
|
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
|
-
const BaseTask_1 = require("../BaseTask");
|
7
|
-
const logger_1 = __importDefault(require("@/logger"));
|
8
|
-
const ethers_1 = require("ethers");
|
9
|
-
const abi_1 = __importDefault(require("@/abi"));
|
10
|
-
const db_1 = require("@/db");
|
11
|
-
const utils_1 = require("@/utils");
|
12
|
-
const constants_1 = require("@/constants");
|
13
|
-
const config_1 = __importDefault(require("@/config"));
|
14
|
-
class SyncBridgeRequestSentEvents extends BaseTask_1.BaseTask {
|
15
|
-
constructor({ chainId }) {
|
16
|
-
super({
|
17
|
-
logger: new logger_1.default("InteropXContract::SyncBridgeRequestSentEvents"),
|
18
|
-
});
|
19
|
-
this.chainId = chainId;
|
20
|
-
}
|
21
|
-
async pollHandler() {
|
22
|
-
const currentBlock = await this.provider.getBlockNumber();
|
23
|
-
const events = await this.contract.queryFilter(this.contract.filters.LogBridgeRequestSent(), currentBlock - 2000, currentBlock);
|
24
|
-
let processedEvents = 0;
|
25
|
-
for (const event of events) {
|
26
|
-
try {
|
27
|
-
if (!event.args) {
|
28
|
-
continue;
|
29
|
-
}
|
30
|
-
const { bridger, position, sourceChainId, targetChainId, requestTransactionHash, metadata } = event.args;
|
31
|
-
const uniqueIdentifier = {
|
32
|
-
action: 'withdraw',
|
33
|
-
bridger,
|
34
|
-
requestTransactionHash,
|
35
|
-
sourceChainId: sourceChainId,
|
36
|
-
targetChainId: targetChainId,
|
37
|
-
};
|
38
|
-
let transactionHash = (0, utils_1.generateInteropTransactionHash)(uniqueIdentifier);
|
39
|
-
const transaction = await db_1.Transaction.findOne({ where: { transactionHash } });
|
40
|
-
if (!transaction) {
|
41
|
-
continue;
|
42
|
-
}
|
43
|
-
transaction.sourceStatus = 'success';
|
44
|
-
transaction.requestSentEvent = {
|
45
|
-
bridger,
|
46
|
-
position: {
|
47
|
-
withdraw: position.withdraw.map((v) => ({
|
48
|
-
sourceToken: v.sourceToken,
|
49
|
-
targetToken: v.targetToken,
|
50
|
-
amount: v.amount.toString()
|
51
|
-
})),
|
52
|
-
supply: position.supply.map((v) => ({
|
53
|
-
sourceToken: v.sourceToken,
|
54
|
-
targetToken: v.targetToken,
|
55
|
-
amount: v.amount.toString()
|
56
|
-
})),
|
57
|
-
},
|
58
|
-
sourceChainId: sourceChainId,
|
59
|
-
targetChainId: targetChainId,
|
60
|
-
metadata,
|
61
|
-
requestTransactionHash,
|
62
|
-
};
|
63
|
-
await transaction.save();
|
64
|
-
this.logger.info(`New bridge reques sent received: ${transactionHash} `);
|
65
|
-
}
|
66
|
-
catch (error) {
|
67
|
-
this.logger.error(error);
|
68
|
-
}
|
69
|
-
}
|
70
|
-
if (processedEvents > 0)
|
71
|
-
this.logger.info(`${processedEvents} events processed`);
|
72
|
-
}
|
73
|
-
async start() {
|
74
|
-
this.contractAddress = constants_1.addresses[this.chainId].interopXContract;
|
75
|
-
this.provider = new ethers_1.ethers.providers.JsonRpcProvider((0, utils_1.getRpcProviderUrl)(this.chainId));
|
76
|
-
this.contract = (0, utils_1.getContract)(this.contractAddress, abi_1.default.interopXContract, new ethers_1.ethers.Wallet(config_1.default.privateKey, this.provider));
|
77
|
-
await super.start();
|
78
|
-
}
|
79
|
-
}
|
80
|
-
exports.default = SyncBridgeRequestSentEvents;
|