@instadapp/interop-x 0.0.0-dev.99c6cb0 → 0.0.0-dev.9d8d8b4
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 +12 -3
- 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 +0 -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 +25 -15
- 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 +98 -0
- package/dist/src/gnosis/actions/aaveV2/target.js +100 -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/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 +274 -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} +26 -16
- package/dist/src/tasks/{InteropXContract/SyncBridgeRequestSentEvents.js → InteropX/SyncLogValidateEvents.js} +42 -26
- 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 +36 -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 -183
- 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 +12 -3
- 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 +0 -7
- 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 -94
- package/src/errors/index.ts +26 -0
- package/src/gnosis/actions/aaveV2/index.ts +9 -0
- package/src/gnosis/actions/aaveV2/source.ts +171 -0
- package/src/gnosis/actions/aaveV2/target.ts +160 -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/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 +386 -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 +56 -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 -268
- package/src/utils/interop.ts +28 -0
- package/src/utils/tokens.ts +21 -0
- package/src/utils/validate.ts +179 -0
- package/src/utils/web3.ts +132 -0
- package/dist/src/abi/interopXContract.json +0 -454
- package/dist/src/gnosis/actions/withdraw/index.js +0 -55
- package/dist/src/tasks/InteropXContract/ProcessBridgeRequestEvents.js +0 -152
- package/dist/src/typechain/factories/InteropXContract__factory.js +0 -635
- package/src/abi/interopXContract.json +0 -454
- package/src/gnosis/actions/withdraw/index.ts +0 -77
- package/src/tasks/InteropXContract/ProcessBridgeRequestEvents.ts +0 -216
- package/src/tasks/InteropXContract/SyncBridgeRequestEvents.ts +0 -115
- package/src/tasks/InteropXContract/SyncBridgeRequestSentEvents.ts +0 -121
- package/src/typechain/InteropXContract.ts +0 -680
- package/src/typechain/factories/InteropXContract__factory.ts +0 -642
package/src/api/index.ts
CHANGED
@@ -21,11 +21,19 @@ export const startApiServer = async () => {
|
|
21
21
|
limit: 20,
|
22
22
|
offset: 0,
|
23
23
|
order: [
|
24
|
-
['
|
24
|
+
['updatedAt', 'DESC']
|
25
25
|
]
|
26
26
|
})
|
27
27
|
})
|
28
28
|
|
29
|
+
server.get('/transactions/:transaction', async (req) => {
|
30
|
+
return await Transaction.findOne({
|
31
|
+
where: {
|
32
|
+
transactionHash: (req.params as any).transaction
|
33
|
+
}
|
34
|
+
})
|
35
|
+
})
|
36
|
+
|
29
37
|
await server.listen(PORT, HOST)
|
30
38
|
|
31
39
|
logger.log(`RPC Server listening at http://${HOST}:${PORT}`)
|
@@ -1,17 +1,33 @@
|
|
1
|
+
export type NetworkAddresses = {
|
2
|
+
gnosisSafe: string
|
3
|
+
multisend: string
|
4
|
+
interopX: string
|
5
|
+
dsaAddress: string
|
6
|
+
instList: string
|
7
|
+
aaveV2Resolver: string
|
8
|
+
aaveV3Resolver: string
|
9
|
+
balanceResolver: string
|
10
|
+
}
|
11
|
+
|
1
12
|
export const addresses = {
|
2
|
-
1: {
|
3
|
-
gnosisSafe: '0x811Bff6eF88dAAA0aD6438386B534A81cE3F160F',
|
4
|
-
multisend: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
|
5
|
-
interopXContract: '',
|
6
|
-
},
|
7
13
|
137: {
|
8
14
|
gnosisSafe: '0x5635d2910e51da33d9DC0422c893CF4F28B69A25',
|
9
15
|
multisend: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
|
10
|
-
|
16
|
+
interopX: '0xDB6083df37C5F224a3dF84A4B5f9fB60b6c8670a',
|
17
|
+
dsaAddress: '0x9Fbd453a8e7a158510fBae5D9935958507cf4b19',
|
18
|
+
instList: "0x839c2D3aDe63DF5b0b8F3E57D5e145057Ab41556",
|
19
|
+
aaveV2Resolver: "0x0731c1d0154C2bE74d50e2083Df10aa531AAbb10",
|
20
|
+
aaveV3Resolver: "0x1bD311bd5aD4DCfE18bCb55d42F0a3c714E2bfDe",
|
21
|
+
balanceResolver: "0xecc3991846bB21717B95A593Fd86C5930A491F95",
|
11
22
|
},
|
12
23
|
43114: {
|
13
24
|
gnosisSafe: '0x31d7a5194Fe60AC209Cf1Ce2d539C9A60662Ed6b',
|
14
25
|
multisend: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
|
15
|
-
|
26
|
+
interopX: '0xA82A87096709E3D8648c9d9a22f31133bC4B6d32',
|
27
|
+
dsaAddress: '0x995e67a652d2be45a8bff438b3dfac66dfff1c46',
|
28
|
+
instList: "0x9926955e0Dd681Dc303370C52f4Ad0a4dd061687",
|
29
|
+
aaveV2Resolver: "0x7C5C59944263311a1e350E3B871B0d1d8E9A513E",
|
30
|
+
aaveV3Resolver: "0xB0862d7dB941698A0A92F8dF6672F4B56A5F5b02",
|
31
|
+
balanceResolver: "0xD45dFA34cEeAB567208041331F5ed9916C23b1E8",
|
16
32
|
}
|
17
|
-
}
|
33
|
+
} as Record<number, NetworkAddresses>
|
package/src/constants/index.ts
CHANGED
package/src/constants/tokens.ts
CHANGED
@@ -79,13 +79,6 @@ export const tokens = {
|
|
79
79
|
address: "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6",
|
80
80
|
decimals: 8,
|
81
81
|
},
|
82
|
-
{
|
83
|
-
aliases: ['avax'],
|
84
|
-
symbol: "AVAX",
|
85
|
-
name: "Avalanche Token",
|
86
|
-
address: "0x2C89bbc92BD86F8075d1DEcc58C7F4E0107f286b",
|
87
|
-
decimals: 18,
|
88
|
-
},
|
89
82
|
],
|
90
83
|
43114: [
|
91
84
|
{
|
@@ -0,0 +1 @@
|
|
1
|
+
import "./prices"
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { Prices } from "@/services";
|
2
|
+
import cron from "node-cron";
|
3
|
+
|
4
|
+
Prices.fetch().catch(console.log);
|
5
|
+
|
6
|
+
cron.schedule(`* * * * *`, async () => {
|
7
|
+
try {
|
8
|
+
await Prices.fetch();
|
9
|
+
} catch (error) {
|
10
|
+
console.log("Prices: ", error.message);
|
11
|
+
}
|
12
|
+
});
|
@@ -1,137 +1,190 @@
|
|
1
|
-
import { sequelize } from
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
1
|
+
import { sequelize } from "@/db/sequelize";
|
2
|
+
import {
|
3
|
+
CreationOptional,
|
4
|
+
InferAttributes,
|
5
|
+
InferCreationAttributes,
|
6
|
+
Model,
|
7
|
+
DataTypes,
|
8
|
+
} from "sequelize";
|
9
|
+
|
10
|
+
export interface IPositionTokenInfo {
|
11
|
+
amount: string;
|
12
|
+
sourceToken: string;
|
13
|
+
targetToken: string;
|
8
14
|
}
|
9
15
|
|
10
16
|
export interface IPosition {
|
11
|
-
|
12
|
-
|
17
|
+
supply: IPositionTokenInfo[];
|
18
|
+
withdraw: IPositionTokenInfo[];
|
13
19
|
}
|
14
20
|
|
15
|
-
export class Transaction extends Model<
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
21
|
+
export class Transaction extends Model<
|
22
|
+
InferAttributes<Transaction>,
|
23
|
+
InferCreationAttributes<Transaction>
|
24
|
+
> {
|
25
|
+
declare id: CreationOptional<number>;
|
26
|
+
|
27
|
+
declare transactionHash: string;
|
28
|
+
declare vnonce: string;
|
29
|
+
declare actionId: string;
|
30
|
+
declare sourceSender: string;
|
31
|
+
|
32
|
+
declare submitChainId: number;
|
33
|
+
declare submitTransactionHash: string;
|
34
|
+
declare submitBlockNumber: number;
|
35
|
+
declare submitCreatedAt: Date;
|
36
|
+
|
37
|
+
declare sourceChainId: number;
|
38
|
+
declare sourceDsaId: string;
|
39
|
+
declare sourceTransactionHash: CreationOptional<string>;
|
40
|
+
declare sourceBlockNumber: CreationOptional<number>;
|
41
|
+
declare sourceStatus: CreationOptional<string>;
|
42
|
+
declare sourceErrors: CreationOptional<string[]>;
|
43
|
+
declare sourceLogs: CreationOptional<any[]>;
|
44
|
+
declare sourceCreatedAt: CreationOptional<Date>;
|
45
|
+
declare sourceDelayUntil: CreationOptional<Date>;
|
46
|
+
|
47
|
+
declare targetChainId: number;
|
48
|
+
declare targetDsaId: string;
|
49
|
+
declare targetTransactionHash: CreationOptional<string>;
|
50
|
+
declare targetBlockNumber: CreationOptional<number>;
|
51
|
+
declare targetStatus: CreationOptional<string>;
|
52
|
+
declare targetErrors: CreationOptional<string[]>;
|
53
|
+
declare targetLogs: CreationOptional<any[]>;
|
54
|
+
declare targetCreatedAt: CreationOptional<Date>;
|
55
|
+
declare targetDelayUntil: CreationOptional<Date>;
|
56
|
+
|
57
|
+
declare submitEvent: {
|
58
|
+
position: IPosition;
|
59
|
+
actionId: string;
|
60
|
+
actionIdHashHash: string;
|
61
|
+
actionIdHash: string;
|
62
|
+
sourceSender: string;
|
63
|
+
sourceDsaId: string;
|
64
|
+
targetDsaId: string;
|
65
|
+
sourceChainId: number;
|
66
|
+
targetChainId: number;
|
67
|
+
vnonce: string;
|
68
|
+
metadata: string;
|
69
|
+
};
|
70
|
+
|
71
|
+
declare validateEvent: CreationOptional<{
|
72
|
+
sourceSpells: Array<{ connector: string; data: string }>;
|
73
|
+
position: IPosition;
|
74
|
+
actionId: string;
|
75
|
+
actionIdHashHash: string;
|
76
|
+
actionIdHash: string;
|
77
|
+
sourceSender: string;
|
78
|
+
sourceDsaId: string;
|
79
|
+
targetDsaId: string;
|
80
|
+
sourceChainId: number;
|
81
|
+
targetChainId: number;
|
82
|
+
vnonce: string;
|
83
|
+
metadata: string;
|
84
|
+
}>;
|
85
|
+
|
86
|
+
declare executeEvent: CreationOptional<{
|
87
|
+
sourceSpells: Array<{ connector: string; data: string }>;
|
88
|
+
targetSpells: Array<{ connector: string; data: string }>;
|
89
|
+
position: IPosition;
|
90
|
+
actionId: string;
|
91
|
+
actionIdHashHash: string;
|
92
|
+
actionIdHash: string;
|
93
|
+
sourceSender: string;
|
94
|
+
sourceDsaId: string;
|
95
|
+
targetDsaId: string;
|
96
|
+
sourceChainId: number;
|
97
|
+
targetChainId: number;
|
98
|
+
vnonce: string;
|
99
|
+
metadata: string;
|
100
|
+
}>;
|
101
|
+
|
102
|
+
declare status: CreationOptional<string>;
|
103
|
+
|
104
|
+
declare createdAt: CreationOptional<Date>;
|
105
|
+
declare updatedAt: CreationOptional<Date>;
|
68
106
|
}
|
69
107
|
|
70
|
-
Transaction.init(
|
108
|
+
Transaction.init(
|
109
|
+
{
|
71
110
|
id: {
|
72
|
-
|
73
|
-
|
74
|
-
|
111
|
+
type: DataTypes.INTEGER,
|
112
|
+
autoIncrement: true,
|
113
|
+
primaryKey: true,
|
75
114
|
},
|
76
115
|
|
77
|
-
requestTransactionHash: DataTypes.NUMBER,
|
78
|
-
requestBlockNumber: DataTypes.NUMBER,
|
79
|
-
|
80
116
|
transactionHash: DataTypes.STRING,
|
81
117
|
actionId: DataTypes.STRING,
|
82
|
-
|
118
|
+
vnonce: DataTypes.STRING,
|
119
|
+
sourceSender: DataTypes.STRING,
|
120
|
+
|
121
|
+
submitChainId: DataTypes.NUMBER,
|
122
|
+
submitTransactionHash: DataTypes.STRING,
|
123
|
+
submitBlockNumber: DataTypes.NUMBER,
|
124
|
+
submitCreatedAt: DataTypes.DATE,
|
83
125
|
|
84
126
|
sourceChainId: DataTypes.NUMBER,
|
127
|
+
sourceDsaId: DataTypes.STRING,
|
85
128
|
sourceTransactionHash: DataTypes.STRING,
|
86
129
|
sourceBlockNumber: DataTypes.NUMBER,
|
87
130
|
sourceStatus: {
|
88
|
-
|
89
|
-
|
131
|
+
type: DataTypes.STRING,
|
132
|
+
defaultValue: "pending",
|
90
133
|
},
|
91
134
|
sourceErrors: {
|
92
|
-
|
93
|
-
|
135
|
+
type: DataTypes.JSON,
|
136
|
+
// defaultValue: [],
|
94
137
|
},
|
95
138
|
sourceLogs: {
|
96
|
-
|
97
|
-
|
139
|
+
type: DataTypes.JSON,
|
140
|
+
// defaultValue: [],
|
98
141
|
},
|
99
142
|
sourceCreatedAt: {
|
100
|
-
|
101
|
-
|
143
|
+
type: DataTypes.DATE,
|
144
|
+
defaultValue: Date.now(),
|
102
145
|
},
|
103
|
-
sourceDelayUntil: DataTypes.
|
146
|
+
sourceDelayUntil: DataTypes.DATE,
|
104
147
|
|
105
148
|
targetChainId: DataTypes.NUMBER,
|
149
|
+
targetDsaId: DataTypes.STRING,
|
106
150
|
targetTransactionHash: DataTypes.STRING,
|
107
151
|
targetBlockNumber: DataTypes.NUMBER,
|
108
152
|
targetStatus: {
|
109
|
-
|
110
|
-
|
153
|
+
type: DataTypes.STRING,
|
154
|
+
defaultValue: "pending",
|
111
155
|
},
|
112
156
|
targetErrors: {
|
113
|
-
|
114
|
-
|
157
|
+
type: DataTypes.JSON,
|
158
|
+
// defaultValue: [],
|
115
159
|
},
|
116
160
|
targetLogs: {
|
117
|
-
|
118
|
-
|
161
|
+
type: DataTypes.JSON,
|
162
|
+
// defaultValue: [],
|
119
163
|
},
|
120
164
|
targetCreatedAt: DataTypes.DATE,
|
121
165
|
targetDelayUntil: DataTypes.DATE,
|
122
166
|
|
123
|
-
|
124
|
-
|
125
|
-
|
167
|
+
submitEvent: {
|
168
|
+
type: DataTypes.JSON,
|
169
|
+
allowNull: false,
|
170
|
+
},
|
171
|
+
|
172
|
+
validateEvent: {
|
173
|
+
type: DataTypes.JSON,
|
174
|
+
allowNull: true,
|
175
|
+
},
|
176
|
+
|
177
|
+
executeEvent: {
|
178
|
+
type: DataTypes.JSON,
|
179
|
+
allowNull: true,
|
126
180
|
},
|
127
|
-
requestSentEvent: DataTypes.JSON,
|
128
|
-
committedEvent: DataTypes.JSON,
|
129
|
-
completedEvent: DataTypes.JSON,
|
130
181
|
|
131
182
|
status: {
|
132
|
-
|
133
|
-
|
183
|
+
type: DataTypes.STRING,
|
184
|
+
defaultValue: "pending",
|
134
185
|
},
|
135
186
|
createdAt: DataTypes.DATE,
|
136
187
|
updatedAt: DataTypes.DATE,
|
137
|
-
},
|
188
|
+
},
|
189
|
+
{ sequelize, tableName: "transactions" }
|
190
|
+
);
|
@@ -0,0 +1,26 @@
|
|
1
|
+
export class UnsupportedChaindIdError extends Error {
|
2
|
+
constructor(chainId: any) {
|
3
|
+
super(`Unsupported chainId: ${chainId}`);
|
4
|
+
}
|
5
|
+
}
|
6
|
+
|
7
|
+
export class LiquidityError extends Error {
|
8
|
+
constructor(message?: string) {
|
9
|
+
super(message || "Not enough liquidity");
|
10
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
11
|
+
}
|
12
|
+
}
|
13
|
+
|
14
|
+
export class InvalidChaindIdError extends Error {
|
15
|
+
constructor(message?: string) {
|
16
|
+
super(message || "Invalid chain id");
|
17
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
export class LowLiquidityError extends Error {
|
22
|
+
constructor(message?: string) {
|
23
|
+
super(message || "Low liquidity");
|
24
|
+
Object.setPrototypeOf(this, new.target.prototype);
|
25
|
+
}
|
26
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Transaction } from "@/db";
|
2
|
+
import source from "./source";
|
3
|
+
import target from "./target";
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
export default async function (transaction: Transaction, type: 'source' | 'target') {
|
8
|
+
return type === 'source' ? source(transaction) : target(transaction);
|
9
|
+
}
|
@@ -0,0 +1,171 @@
|
|
1
|
+
import abi from "@/abi";
|
2
|
+
import config from "@/config";
|
3
|
+
import { addresses } from "@/constants";
|
4
|
+
import { Transaction } from "@/db";
|
5
|
+
import { JsonRpcRetryProvider } from "@/providers";
|
6
|
+
import { AaveV2Resolver, InteropX } from "@/typechain";
|
7
|
+
import { ChainId } from "@/types";
|
8
|
+
import { encodeConnectorMethod, getContract, getDsaAccountAddress, getRpcProviderUrl } from "@/utils";
|
9
|
+
import { ethers } from "ethers";
|
10
|
+
import { MetaTransaction, OperationType } from "ethers-multisend";
|
11
|
+
|
12
|
+
const safeUserRatioGap = "800000000000000000"
|
13
|
+
|
14
|
+
export default async function (transaction: Transaction) {
|
15
|
+
const transactions: MetaTransaction[] = [];
|
16
|
+
const logs: any[] = [];
|
17
|
+
|
18
|
+
const {
|
19
|
+
position,
|
20
|
+
actionId,
|
21
|
+
actionIdHashHash,
|
22
|
+
sourceSender,
|
23
|
+
sourceDsaId,
|
24
|
+
targetDsaId,
|
25
|
+
sourceChainId,
|
26
|
+
targetChainId,
|
27
|
+
vnonce,
|
28
|
+
metadata,
|
29
|
+
} = transaction.submitEvent;
|
30
|
+
|
31
|
+
const sourceChainProvider = new JsonRpcRetryProvider(
|
32
|
+
getRpcProviderUrl(sourceChainId as ChainId)
|
33
|
+
);
|
34
|
+
const sourceWallet = new ethers.Wallet(
|
35
|
+
config.privateKey,
|
36
|
+
sourceChainProvider
|
37
|
+
);
|
38
|
+
const targetChainProvider = new JsonRpcRetryProvider(
|
39
|
+
getRpcProviderUrl(targetChainId as ChainId)
|
40
|
+
);
|
41
|
+
const targetWallet = new ethers.Wallet(
|
42
|
+
config.privateKey,
|
43
|
+
targetChainProvider
|
44
|
+
);
|
45
|
+
const dsaAddress = addresses[sourceChainId].dsaAddress;
|
46
|
+
const sourceUserAddress =
|
47
|
+
Number(sourceDsaId) == 0 ? sourceSender : dsaAddress;
|
48
|
+
const interopAddress = addresses[sourceChainId].interopX;
|
49
|
+
const contract = getContract<InteropX>(
|
50
|
+
interopAddress,
|
51
|
+
abi.interopX,
|
52
|
+
sourceWallet
|
53
|
+
);
|
54
|
+
|
55
|
+
const sourceResolverContract = getContract<AaveV2Resolver>(
|
56
|
+
addresses[sourceChainId].aaveV2Resolver,
|
57
|
+
abi.aaveV2Resolver,
|
58
|
+
sourceWallet
|
59
|
+
);
|
60
|
+
|
61
|
+
const targetResolverContract = getContract<AaveV2Resolver>(
|
62
|
+
addresses[targetChainId].aaveV2Resolver,
|
63
|
+
abi.aaveV2Resolver,
|
64
|
+
targetWallet
|
65
|
+
);
|
66
|
+
|
67
|
+
|
68
|
+
const sourceDsaAddress = await getDsaAccountAddress({ dsaId: sourceDsaId, chainId: sourceChainId, provider: sourceChainProvider });
|
69
|
+
|
70
|
+
const sourceAavePosition = await sourceResolverContract.checkAavePosition(sourceDsaAddress, position, safeUserRatioGap, false)
|
71
|
+
|
72
|
+
const userSourceAaveIsOk = sourceAavePosition.isOk;
|
73
|
+
|
74
|
+
if (!userSourceAaveIsOk) {
|
75
|
+
throw new Error("Source chain aave position is not safe to migrate.");
|
76
|
+
}
|
77
|
+
|
78
|
+
const targetDsaAddress = await getDsaAccountAddress({ dsaId: targetDsaId, chainId: targetChainId, provider: targetChainProvider });
|
79
|
+
|
80
|
+
const targetAavePosition = await targetResolverContract
|
81
|
+
.checkAavePosition(targetDsaAddress, position, safeUserRatioGap, true)
|
82
|
+
|
83
|
+
const userTargetAaveIsOk = targetAavePosition.isOk;
|
84
|
+
|
85
|
+
if (!userTargetAaveIsOk) {
|
86
|
+
throw new Error("Target chain aave position will not be safe after migration.");
|
87
|
+
}
|
88
|
+
|
89
|
+
const targetAavePositionWithFee = await targetResolverContract
|
90
|
+
.checkAavePosition(targetDsaAddress, position, safeUserRatioGap, true);
|
91
|
+
|
92
|
+
const userTargetAaveIsOkWithFee = targetAavePositionWithFee.isOk;
|
93
|
+
|
94
|
+
if (!userTargetAaveIsOkWithFee) {
|
95
|
+
throw new Error("Target chain aave position will not be safe after migration due to minimum fee.");
|
96
|
+
}
|
97
|
+
|
98
|
+
const sourceSpells: any[] = [];
|
99
|
+
const commonSpells: any[] = [];
|
100
|
+
|
101
|
+
for (const withdraw of position.withdraw) {
|
102
|
+
let spellData = {
|
103
|
+
connector: "AAVE-V2-A",
|
104
|
+
method: "payback",
|
105
|
+
args: [withdraw.sourceToken, withdraw.amount, "2", "0", "0"],
|
106
|
+
};
|
107
|
+
|
108
|
+
sourceSpells.push({
|
109
|
+
connector: spellData.connector,
|
110
|
+
data: encodeConnectorMethod(spellData),
|
111
|
+
});
|
112
|
+
|
113
|
+
let spellDataBasicWithdraw = {
|
114
|
+
connector: "BASIC-A",
|
115
|
+
method: "withdraw",
|
116
|
+
args: [withdraw.sourceToken, withdraw.amount, sourceUserAddress, "0", "0"],
|
117
|
+
};
|
118
|
+
|
119
|
+
commonSpells.push({
|
120
|
+
connector: spellDataBasicWithdraw.connector,
|
121
|
+
data: encodeConnectorMethod(spellDataBasicWithdraw),
|
122
|
+
});
|
123
|
+
}
|
124
|
+
|
125
|
+
for (const supply of position.supply) {
|
126
|
+
let spellDataWithdraw = {
|
127
|
+
connector: "AAVE-V2-A",
|
128
|
+
method: "withdraw",
|
129
|
+
args: [supply.sourceToken, supply.amount, "0", "0"],
|
130
|
+
};
|
131
|
+
|
132
|
+
sourceSpells.push({
|
133
|
+
connector: spellDataWithdraw.connector,
|
134
|
+
data: encodeConnectorMethod(spellDataWithdraw),
|
135
|
+
});
|
136
|
+
|
137
|
+
let spellDataBasicWithdraw = {
|
138
|
+
connector: "BASIC-A",
|
139
|
+
method: "withdraw",
|
140
|
+
args: [supply.sourceToken, supply.amount, dsaAddress, "0", "0"],
|
141
|
+
};
|
142
|
+
|
143
|
+
sourceSpells.push({
|
144
|
+
connector: spellDataBasicWithdraw.connector,
|
145
|
+
data: encodeConnectorMethod(spellDataBasicWithdraw),
|
146
|
+
});
|
147
|
+
}
|
148
|
+
|
149
|
+
const { data } = await contract.populateTransaction.sourceAction(
|
150
|
+
sourceSpells,
|
151
|
+
commonSpells,
|
152
|
+
position,
|
153
|
+
actionId,
|
154
|
+
sourceSender,
|
155
|
+
sourceDsaId,
|
156
|
+
targetDsaId,
|
157
|
+
sourceChainId,
|
158
|
+
targetChainId,
|
159
|
+
vnonce,
|
160
|
+
metadata
|
161
|
+
);
|
162
|
+
|
163
|
+
transactions.push({
|
164
|
+
to: interopAddress,
|
165
|
+
data: data!,
|
166
|
+
value: "0",
|
167
|
+
operation: OperationType.Call,
|
168
|
+
});
|
169
|
+
|
170
|
+
return { transactions, logs };
|
171
|
+
}
|