@instadapp/interop-x 0.0.0-dev.48c6eec → 0.0.0-dev.491c821
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 +4 -2
- 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 +6 -2
- package/dist/src/abi/instList.json +232 -0
- package/dist/src/abi/interopX.json +1436 -0
- package/dist/src/api/index.js +7 -0
- package/dist/src/constants/addresses.js +6 -7
- package/dist/src/constants/blockConfirmations.js +8 -0
- package/dist/src/constants/index.js +1 -0
- package/dist/src/db/models/transaction.js +24 -14
- 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 +2 -2
- package/dist/src/index.js +1 -1
- package/dist/src/net/protocol/dial/SignatureDialProtocol.js +2 -2
- package/dist/src/tasks/{InteropXContract/ProcessBridgeRequestEvents.js → InteropX/ProcessSubmitSubmitEvents.js} +74 -53
- package/dist/src/tasks/InteropX/ProcessValidateEvents.js +183 -0
- package/dist/src/tasks/InteropX/SyncLogExecuteEvents.js +112 -0
- package/dist/src/tasks/{InteropXContract/SyncBridgeRequestEvents.js → InteropX/SyncLogSubmitEvents.js} +24 -15
- package/dist/src/tasks/{InteropXContract/SyncBridgeRequestSentEvents.js → InteropX/SyncLogValidateEvents.js} +40 -25
- package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +4 -3
- package/dist/src/tasks/index.js +19 -14
- package/dist/src/typechain/{InteropXContract.js → InstList.js} +0 -0
- package/dist/src/typechain/InteropX.js +2 -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 +5 -3
- package/dist/src/typechain/index.js +5 -3
- package/dist/src/utils/index.js +62 -32
- package/package.json +4 -2
- 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 +9 -5
- package/src/abi/instList.json +232 -0
- package/src/abi/interopX.json +1436 -0
- package/src/api/index.ts +8 -0
- package/src/constants/addresses.ts +7 -8
- package/src/constants/blockConfirmations.ts +5 -0
- package/src/constants/index.ts +1 -0
- package/src/db/models/transaction.ts +146 -101
- 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 +2 -2
- package/src/net/protocol/dial/SignatureDialProtocol.ts +3 -2
- package/src/tasks/InteropX/ProcessSubmitSubmitEvents.ts +269 -0
- package/src/tasks/InteropX/ProcessValidateEvents.ts +274 -0
- package/src/tasks/InteropX/SyncLogExecuteEvents.ts +162 -0
- package/src/tasks/InteropX/SyncLogSubmitEvents.ts +139 -0
- package/src/tasks/InteropX/SyncLogValidateEvents.ts +152 -0
- package/src/tasks/Transactions/SyncTransactionStatusTask.ts +4 -3
- package/src/tasks/index.ts +19 -14
- package/src/typechain/InstList.ts +402 -0
- package/src/typechain/InteropX.ts +1216 -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 +2 -1
- package/src/typechain/index.ts +4 -2
- package/src/utils/index.ts +180 -90
- package/dist/src/abi/interopXContract.json +0 -454
- package/dist/src/gnosis/actions/withdraw/index.js +0 -115
- package/dist/src/tasks/InteropXContract/SyncBridgeCommittedEvents.js +0 -93
- 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 -155
- package/src/tasks/InteropXContract/ProcessBridgeRequestEvents.ts +0 -226
- package/src/tasks/InteropXContract/SyncBridgeCommittedEvents.ts +0 -125
- 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
@@ -26,6 +26,14 @@ export const startApiServer = async () => {
|
|
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,16 @@
|
|
1
1
|
export const addresses = {
|
2
|
-
// 1: {
|
3
|
-
// gnosisSafe: '0x811Bff6eF88dAAA0aD6438386B534A81cE3F160F',
|
4
|
-
// multisend: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
|
5
|
-
// interopXContract: '',
|
6
|
-
// },
|
7
2
|
137: {
|
8
3
|
gnosisSafe: '0x5635d2910e51da33d9DC0422c893CF4F28B69A25',
|
9
4
|
multisend: '0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761',
|
10
|
-
|
5
|
+
interopX: '0xDB6083df37C5F224a3dF84A4B5f9fB60b6c8670a',
|
6
|
+
dsaAddress: '0x9Fbd453a8e7a158510fBae5D9935958507cf4b19',
|
7
|
+
instList: "0x839c2D3aDe63DF5b0b8F3E57D5e145057Ab41556",
|
11
8
|
},
|
12
9
|
43114: {
|
13
10
|
gnosisSafe: '0x31d7a5194Fe60AC209Cf1Ce2d539C9A60662Ed6b',
|
14
11
|
multisend: '0x998739BFdAAdde7C933B942a68053933098f9EDa',
|
15
|
-
|
12
|
+
interopX: '0xA82A87096709E3D8648c9d9a22f31133bC4B6d32',
|
13
|
+
dsaAddress: '0x995e67a652d2be45a8bff438b3dfac66dfff1c46',
|
14
|
+
instList: "0x9926955e0Dd681Dc303370C52f4Ad0a4dd061687",
|
16
15
|
}
|
17
|
-
} as Record<number, { gnosisSafe: string, multisend: string,
|
16
|
+
} as Record<number, { gnosisSafe: string, multisend: string, interopX: string, dsaAddress: string, instList: string }>
|
package/src/constants/index.ts
CHANGED
@@ -1,145 +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
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
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>;
|
76
106
|
}
|
77
107
|
|
78
|
-
Transaction.init(
|
108
|
+
Transaction.init(
|
109
|
+
{
|
79
110
|
id: {
|
80
|
-
|
81
|
-
|
82
|
-
|
111
|
+
type: DataTypes.INTEGER,
|
112
|
+
autoIncrement: true,
|
113
|
+
primaryKey: true,
|
83
114
|
},
|
84
115
|
|
85
|
-
requestTransactionHash: DataTypes.NUMBER,
|
86
|
-
requestBlockNumber: DataTypes.NUMBER,
|
87
|
-
|
88
116
|
transactionHash: DataTypes.STRING,
|
89
117
|
actionId: DataTypes.STRING,
|
90
|
-
|
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,
|
91
125
|
|
92
126
|
sourceChainId: DataTypes.NUMBER,
|
127
|
+
sourceDsaId: DataTypes.STRING,
|
93
128
|
sourceTransactionHash: DataTypes.STRING,
|
94
129
|
sourceBlockNumber: DataTypes.NUMBER,
|
95
130
|
sourceStatus: {
|
96
|
-
|
97
|
-
|
131
|
+
type: DataTypes.STRING,
|
132
|
+
defaultValue: "pending",
|
98
133
|
},
|
99
134
|
sourceErrors: {
|
100
|
-
|
101
|
-
|
135
|
+
type: DataTypes.JSON,
|
136
|
+
// defaultValue: [],
|
102
137
|
},
|
103
138
|
sourceLogs: {
|
104
|
-
|
105
|
-
|
139
|
+
type: DataTypes.JSON,
|
140
|
+
// defaultValue: [],
|
106
141
|
},
|
107
142
|
sourceCreatedAt: {
|
108
|
-
|
109
|
-
|
143
|
+
type: DataTypes.DATE,
|
144
|
+
defaultValue: Date.now(),
|
110
145
|
},
|
111
146
|
sourceDelayUntil: DataTypes.STRING,
|
112
147
|
|
113
148
|
targetChainId: DataTypes.NUMBER,
|
149
|
+
targetDsaId: DataTypes.STRING,
|
114
150
|
targetTransactionHash: DataTypes.STRING,
|
115
151
|
targetBlockNumber: DataTypes.NUMBER,
|
116
152
|
targetStatus: {
|
117
|
-
|
118
|
-
|
153
|
+
type: DataTypes.STRING,
|
154
|
+
defaultValue: "pending",
|
119
155
|
},
|
120
156
|
targetErrors: {
|
121
|
-
|
122
|
-
|
157
|
+
type: DataTypes.JSON,
|
158
|
+
// defaultValue: [],
|
123
159
|
},
|
124
160
|
targetLogs: {
|
125
|
-
|
126
|
-
|
161
|
+
type: DataTypes.JSON,
|
162
|
+
// defaultValue: [],
|
127
163
|
},
|
128
164
|
targetCreatedAt: DataTypes.DATE,
|
129
165
|
targetDelayUntil: DataTypes.DATE,
|
130
166
|
|
131
|
-
|
132
|
-
|
133
|
-
|
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,
|
134
180
|
},
|
135
|
-
requestSentEvent: DataTypes.JSON,
|
136
|
-
committedEvent: DataTypes.JSON,
|
137
|
-
completedEvent: DataTypes.JSON,
|
138
181
|
|
139
182
|
status: {
|
140
|
-
|
141
|
-
|
183
|
+
type: DataTypes.STRING,
|
184
|
+
defaultValue: "pending",
|
142
185
|
},
|
143
186
|
createdAt: DataTypes.DATE,
|
144
187
|
updatedAt: DataTypes.DATE,
|
145
|
-
},
|
188
|
+
},
|
189
|
+
{ sequelize, tableName: "transactions" }
|
190
|
+
);
|
@@ -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,118 @@
|
|
1
|
+
import abi from "@/abi";
|
2
|
+
import config from "@/config";
|
3
|
+
import { addresses } from "@/constants";
|
4
|
+
import { Transaction } from "@/db";
|
5
|
+
import { InteropX } from "@/typechain";
|
6
|
+
import { ChainId } from "@/types";
|
7
|
+
import { encodeConnectorMethod, getContract, getRpcProviderUrl } from "@/utils";
|
8
|
+
import { ethers } from "ethers";
|
9
|
+
import { MetaTransaction, OperationType } from "ethers-multisend";
|
10
|
+
|
11
|
+
export default async function (transaction: Transaction) {
|
12
|
+
const transactions: MetaTransaction[] = [];
|
13
|
+
const logs: any[] = [];
|
14
|
+
|
15
|
+
const {
|
16
|
+
position,
|
17
|
+
actionId,
|
18
|
+
actionIdHashHash,
|
19
|
+
sourceSender,
|
20
|
+
sourceDsaId,
|
21
|
+
targetDsaId,
|
22
|
+
sourceChainId,
|
23
|
+
targetChainId,
|
24
|
+
vnonce,
|
25
|
+
metadata,
|
26
|
+
} = transaction.submitEvent;
|
27
|
+
|
28
|
+
const sourceChainProvider = new ethers.providers.JsonRpcProvider(
|
29
|
+
getRpcProviderUrl(sourceChainId as ChainId)
|
30
|
+
);
|
31
|
+
const sourceWallet = new ethers.Wallet(
|
32
|
+
config.privateKey,
|
33
|
+
sourceChainProvider
|
34
|
+
);
|
35
|
+
const dsaAddress = addresses[sourceChainId].dsaAddress;
|
36
|
+
const sourceUserAddress =
|
37
|
+
Number(sourceDsaId) == 0 ? sourceSender : dsaAddress;
|
38
|
+
const interopAddress = addresses[sourceChainId].interopX;
|
39
|
+
const contract = getContract<InteropX>(
|
40
|
+
interopAddress,
|
41
|
+
abi.interopX,
|
42
|
+
sourceWallet
|
43
|
+
);
|
44
|
+
|
45
|
+
const sourceSpells: any[] = [];
|
46
|
+
const commonSpells: any[] = [];
|
47
|
+
|
48
|
+
for (const withdraw of position.withdraw) {
|
49
|
+
let spellData = {
|
50
|
+
connector: "AAVE-V2-A",
|
51
|
+
method: "payback",
|
52
|
+
args: [withdraw.sourceToken, withdraw.amount, "2", "0", "0"],
|
53
|
+
};
|
54
|
+
|
55
|
+
sourceSpells.push({
|
56
|
+
connector: spellData.connector,
|
57
|
+
data: encodeConnectorMethod(spellData),
|
58
|
+
});
|
59
|
+
|
60
|
+
let spellDataBasicWithdraw = {
|
61
|
+
connector: "BASIC-A",
|
62
|
+
method: "withdraw",
|
63
|
+
args: [withdraw.sourceToken, withdraw.amount, sourceUserAddress, "0", "0"],
|
64
|
+
};
|
65
|
+
|
66
|
+
commonSpells.push({
|
67
|
+
connector: spellDataBasicWithdraw.connector,
|
68
|
+
data: encodeConnectorMethod(spellDataBasicWithdraw),
|
69
|
+
});
|
70
|
+
}
|
71
|
+
|
72
|
+
for (const supply of position.supply) {
|
73
|
+
let spellDataWithdraw = {
|
74
|
+
connector: "AAVE-V2-A",
|
75
|
+
method: "withdraw",
|
76
|
+
args: [supply.sourceToken, supply.amount, "0", "0"],
|
77
|
+
};
|
78
|
+
|
79
|
+
sourceSpells.push({
|
80
|
+
connector: spellDataWithdraw.connector,
|
81
|
+
data: encodeConnectorMethod(spellDataWithdraw),
|
82
|
+
});
|
83
|
+
|
84
|
+
let spellDataBasicWithdraw = {
|
85
|
+
connector: "BASIC-A",
|
86
|
+
method: "withdraw",
|
87
|
+
args: [supply.sourceToken, supply.amount, dsaAddress, "0", "0"],
|
88
|
+
};
|
89
|
+
|
90
|
+
sourceSpells.push({
|
91
|
+
connector: spellDataBasicWithdraw.connector,
|
92
|
+
data: encodeConnectorMethod(spellDataBasicWithdraw),
|
93
|
+
});
|
94
|
+
}
|
95
|
+
|
96
|
+
const { data } = await contract.populateTransaction.sourceAction(
|
97
|
+
sourceSpells,
|
98
|
+
commonSpells,
|
99
|
+
position,
|
100
|
+
actionId,
|
101
|
+
sourceSender,
|
102
|
+
sourceDsaId,
|
103
|
+
targetDsaId,
|
104
|
+
sourceChainId,
|
105
|
+
targetChainId,
|
106
|
+
vnonce,
|
107
|
+
metadata
|
108
|
+
);
|
109
|
+
|
110
|
+
transactions.push({
|
111
|
+
to: interopAddress,
|
112
|
+
data: data!,
|
113
|
+
value: "0",
|
114
|
+
operation: OperationType.Call,
|
115
|
+
});
|
116
|
+
|
117
|
+
return { transactions, logs };
|
118
|
+
}
|
@@ -0,0 +1,141 @@
|
|
1
|
+
import abi from "@/abi";
|
2
|
+
import config from "@/config";
|
3
|
+
import { addresses } from "@/constants";
|
4
|
+
import { Transaction } from "@/db";
|
5
|
+
import { InteropX } from "@/typechain";
|
6
|
+
import { InstList } from "@/typechain/InstList";
|
7
|
+
import { ChainId } from "@/types";
|
8
|
+
import { encodeConnectorMethod, getContract, getRpcProviderUrl } from "@/utils";
|
9
|
+
import { ethers } from "ethers";
|
10
|
+
import { MetaTransaction, OperationType } from "ethers-multisend";
|
11
|
+
|
12
|
+
|
13
|
+
export default async function (transaction: Transaction) {
|
14
|
+
const transactions: MetaTransaction[] = [];
|
15
|
+
const logs: any[] = [];
|
16
|
+
|
17
|
+
const {
|
18
|
+
sourceSpells,
|
19
|
+
position,
|
20
|
+
actionId,
|
21
|
+
sourceSender,
|
22
|
+
sourceDsaId,
|
23
|
+
targetDsaId,
|
24
|
+
sourceChainId,
|
25
|
+
targetChainId,
|
26
|
+
vnonce,
|
27
|
+
metadata,
|
28
|
+
} = transaction.validateEvent;
|
29
|
+
|
30
|
+
const targetChainProvider = new ethers.providers.JsonRpcProvider(
|
31
|
+
getRpcProviderUrl(targetChainId as ChainId)
|
32
|
+
);
|
33
|
+
const targetWallet = new ethers.Wallet(
|
34
|
+
config.privateKey,
|
35
|
+
targetChainProvider
|
36
|
+
);
|
37
|
+
|
38
|
+
|
39
|
+
const targetInstListContract = getContract<InstList>(
|
40
|
+
addresses[targetChainId].instList,
|
41
|
+
abi.instList,
|
42
|
+
targetChainProvider,
|
43
|
+
);
|
44
|
+
|
45
|
+
const targetDsaAddress = await targetInstListContract.accountAddr(targetDsaId)
|
46
|
+
const dsaAddress = addresses[targetChainId].dsaAddress;
|
47
|
+
const interopAddress = addresses[targetChainId].interopX;
|
48
|
+
const contract = getContract<InteropX>(
|
49
|
+
interopAddress,
|
50
|
+
abi.interopX,
|
51
|
+
targetWallet
|
52
|
+
);
|
53
|
+
|
54
|
+
const targetSpells: any[] = [];
|
55
|
+
const commonSpells: any[] = [];
|
56
|
+
|
57
|
+
for (const supplyToken of position.supply) {
|
58
|
+
let spellData = {
|
59
|
+
connector: "AAVE-V2-A",
|
60
|
+
method: "deposit",
|
61
|
+
args: [supplyToken.targetToken, supplyToken.amount, "0", "0"],
|
62
|
+
};
|
63
|
+
|
64
|
+
targetSpells.push({
|
65
|
+
connector: spellData.connector,
|
66
|
+
data: encodeConnectorMethod(spellData),
|
67
|
+
});
|
68
|
+
|
69
|
+
let spellDataBasicWithdraw = {
|
70
|
+
connector: "BASIC-A",
|
71
|
+
method: "withdraw",
|
72
|
+
args: [supplyToken.targetToken, supplyToken.amount, targetDsaAddress, "0", "0"],
|
73
|
+
};
|
74
|
+
|
75
|
+
commonSpells.push({
|
76
|
+
connector: spellDataBasicWithdraw.connector,
|
77
|
+
data: encodeConnectorMethod(spellDataBasicWithdraw),
|
78
|
+
});
|
79
|
+
}
|
80
|
+
|
81
|
+
for (const withdrawToken of position.withdraw) {
|
82
|
+
|
83
|
+
let spellData = {
|
84
|
+
connector: "AAVE-V2-A",
|
85
|
+
method: "borrow",
|
86
|
+
args: [
|
87
|
+
withdrawToken.targetToken,
|
88
|
+
withdrawToken.amount,
|
89
|
+
"2",
|
90
|
+
"0",
|
91
|
+
"0",
|
92
|
+
],
|
93
|
+
};
|
94
|
+
|
95
|
+
targetSpells.push({
|
96
|
+
connector: spellData.connector,
|
97
|
+
data: encodeConnectorMethod(spellData),
|
98
|
+
});
|
99
|
+
|
100
|
+
let spellData2 = {
|
101
|
+
connector: "BASIC-A",
|
102
|
+
method: "withdraw",
|
103
|
+
args: [
|
104
|
+
withdrawToken.targetToken,
|
105
|
+
withdrawToken.amount,
|
106
|
+
dsaAddress,
|
107
|
+
"0",
|
108
|
+
"0",
|
109
|
+
],
|
110
|
+
};
|
111
|
+
|
112
|
+
targetSpells.push({
|
113
|
+
connector: spellData.connector,
|
114
|
+
data: encodeConnectorMethod(spellData2),
|
115
|
+
});
|
116
|
+
}
|
117
|
+
|
118
|
+
const { data } = await contract.populateTransaction.targetAction(
|
119
|
+
sourceSpells,
|
120
|
+
targetSpells,
|
121
|
+
commonSpells,
|
122
|
+
position,
|
123
|
+
actionId,
|
124
|
+
sourceSender,
|
125
|
+
sourceDsaId,
|
126
|
+
targetDsaId,
|
127
|
+
sourceChainId,
|
128
|
+
targetChainId,
|
129
|
+
vnonce,
|
130
|
+
metadata
|
131
|
+
);
|
132
|
+
|
133
|
+
transactions.push({
|
134
|
+
to: interopAddress,
|
135
|
+
data: data!,
|
136
|
+
value: "0",
|
137
|
+
operation: OperationType.Call,
|
138
|
+
});
|
139
|
+
|
140
|
+
return { transactions, logs }
|
141
|
+
}
|
@@ -12,6 +12,7 @@ export interface ISignatureRequest {
|
|
12
12
|
transactionHash: string
|
13
13
|
safeTxGas: string
|
14
14
|
safeNonce: string
|
15
|
+
chainId: number
|
15
16
|
}
|
16
17
|
export interface ISignatureResponse {
|
17
18
|
signer: string,
|
@@ -54,9 +55,9 @@ export class SignatureDialProtocol extends BaseDialProtocol<ISignatureRequest, I
|
|
54
55
|
const { data: gnosisData } = await buildGnosisAction(transaction, data.type);
|
55
56
|
|
56
57
|
const signedData = await signGnosisSafeTx({
|
57
|
-
to: addresses[
|
58
|
+
to: addresses[data.chainId].multisend,
|
58
59
|
data: gnosisData,
|
59
|
-
chainId:
|
60
|
+
chainId: data.chainId as ChainId,
|
60
61
|
safeTxGas: data.safeTxGas,
|
61
62
|
nonce: data.safeNonce,
|
62
63
|
}, { signer });
|