@instadapp/interop-x 0.0.0-dev.f78418c → 0.0.0-dev.fbcbec6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +2 -1
- package/.github/workflows/ci.yml +19 -0
- package/bin/interop-x +1 -1
- package/dist/package.json +74 -0
- package/dist/{abi → src/abi}/erc20.json +0 -0
- package/dist/{abi → src/abi}/gnosisSafe.json +0 -0
- package/dist/{abi → src/abi}/index.js +2 -4
- package/dist/src/abi/interopX.json +1436 -0
- package/dist/src/alias.js +10 -0
- package/dist/src/api/index.js +36 -0
- package/dist/src/config/index.js +31 -0
- package/dist/src/constants/addresses.js +15 -0
- package/dist/{constants → src/constants}/index.js +0 -0
- package/dist/{constants → src/constants}/tokens.js +62 -39
- package/dist/{db → src/db}/index.js +0 -0
- package/dist/{db → src/db}/models/index.js +0 -0
- package/dist/{db → src/db}/models/transaction.js +29 -9
- package/dist/{db → src/db}/sequelize.js +2 -1
- package/dist/src/gnosis/actions/index.js +9 -0
- package/dist/src/gnosis/actions/withdraw/index.js +114 -0
- package/dist/src/gnosis/index.js +20 -0
- package/dist/src/index.js +119 -0
- package/dist/{logger → src/logger}/index.js +0 -0
- package/dist/{net → src/net}/index.js +0 -0
- package/dist/{net → src/net}/peer/index.js +8 -3
- package/dist/{net → src/net}/pool/index.js +32 -9
- package/dist/{net → src/net}/protocol/dial/BaseDialProtocol.js +0 -0
- package/dist/{net → src/net}/protocol/dial/SignatureDialProtocol.js +21 -12
- package/dist/src/net/protocol/dial/TransactionStatusDialProtocol.js +30 -0
- package/dist/{net → src/net}/protocol/index.js +51 -1
- package/dist/src/tasks/AutoUpdateTask.js +70 -0
- package/dist/{tasks → src/tasks}/BaseTask.js +12 -4
- package/dist/src/tasks/InteropX/SyncLogSubmitEvents.js +84 -0
- package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +58 -0
- package/dist/src/tasks/index.js +34 -0
- package/dist/{typechain → src/typechain}/Erc20.js +0 -0
- package/dist/{typechain → src/typechain}/GnosisSafe.js +0 -0
- package/dist/{typechain/InteropBridgeToken.js → src/typechain/InteropX.js} +0 -0
- package/dist/{typechain → src/typechain}/common.js +0 -0
- package/dist/{typechain → src/typechain}/factories/Erc20__factory.js +0 -0
- package/dist/{typechain → src/typechain}/factories/GnosisSafe__factory.js +0 -0
- package/dist/src/typechain/factories/InteropX__factory.js +1928 -0
- package/dist/src/typechain/factories/index.js +12 -0
- package/dist/{typechain → src/typechain}/index.js +3 -5
- package/dist/{types.js → src/types.js} +0 -0
- package/dist/src/utils/index.js +195 -0
- package/package.json +23 -28
- package/patches/@ethersproject+properties+5.6.0.patch +13 -0
- package/src/abi/index.ts +2 -4
- package/src/abi/interopX.json +1436 -0
- package/src/alias.ts +6 -0
- package/src/api/index.ts +36 -0
- package/src/config/index.ts +17 -1
- package/src/constants/addresses.ts +3 -16
- package/src/constants/tokens.ts +63 -40
- package/src/db/models/transaction.ts +69 -25
- package/src/db/sequelize.ts +2 -1
- package/src/gnosis/actions/index.ts +5 -0
- package/src/gnosis/actions/withdraw/index.ts +155 -0
- package/src/gnosis/index.ts +19 -0
- package/src/index.ts +107 -7
- package/src/net/peer/index.ts +9 -7
- package/src/net/pool/index.ts +41 -11
- package/src/net/protocol/dial/SignatureDialProtocol.ts +23 -13
- package/src/net/protocol/dial/TransactionStatusDialProtocol.ts +33 -0
- package/src/net/protocol/index.ts +67 -1
- package/src/tasks/AutoUpdateTask.ts +82 -0
- package/src/tasks/BaseTask.ts +14 -4
- package/src/tasks/InteropX/SyncLogSubmitEvents.ts +136 -0
- package/src/tasks/Transactions/SyncTransactionStatusTask.ts +70 -0
- package/src/tasks/index.ts +17 -5
- package/src/typechain/InteropX.ts +1216 -0
- package/src/typechain/factories/InteropX__factory.ts +1932 -0
- package/src/typechain/factories/index.ts +1 -2
- package/src/typechain/index.ts +2 -4
- package/src/utils/index.ts +170 -10
- package/tsconfig.json +7 -2
- package/dist/abi/interopBridgeToken.json +0 -286
- package/dist/abi/interopXGateway.json +0 -184
- package/dist/config/index.js +0 -17
- package/dist/constants/addresses.js +0 -28
- package/dist/index.js +0 -43
- package/dist/tasks/InteropXGateway/SyncDepositEvents.js +0 -79
- package/dist/tasks/index.js +0 -27
- package/dist/typechain/InteropXGateway.js +0 -2
- package/dist/typechain/factories/InteropBridgeToken__factory.js +0 -459
- package/dist/typechain/factories/InteropXGateway__factory.js +0 -265
- package/dist/typechain/factories/index.js +0 -14
- package/dist/utils/index.js +0 -101
- package/src/abi/interopBridgeToken.json +0 -286
- package/src/abi/interopXGateway.json +0 -184
- package/src/tasks/InteropXGateway/SyncDepositEvents.ts +0 -114
- package/src/typechain/InteropBridgeToken.ts +0 -686
- package/src/typechain/InteropXGateway.ts +0 -407
- package/src/typechain/factories/InteropBridgeToken__factory.ts +0 -466
- package/src/typechain/factories/InteropXGateway__factory.ts +0 -272
@@ -0,0 +1,136 @@
|
|
1
|
+
import { BaseTask } from "../BaseTask";
|
2
|
+
import Logger from '@/logger';
|
3
|
+
import { ethers } from "ethers";
|
4
|
+
import abi from "@/abi";
|
5
|
+
import { Transaction } from "@/db";
|
6
|
+
import { generateInteropTransactionHash, getContract, getRpcProviderUrl } from "@/utils";
|
7
|
+
import { addresses } from "@/constants";
|
8
|
+
import { ChainId } from "@/types";
|
9
|
+
import config from "@/config";
|
10
|
+
import { InteropX } from "@/typechain";
|
11
|
+
|
12
|
+
class SyncLogSubmitEvents extends BaseTask {
|
13
|
+
contractAddress: string;
|
14
|
+
provider: ethers.providers.JsonRpcProvider;
|
15
|
+
contract: InteropX;
|
16
|
+
chainId: ChainId;
|
17
|
+
|
18
|
+
constructor({ chainId }: { chainId: ChainId }) {
|
19
|
+
super({
|
20
|
+
logger: new Logger("InteropX::SyncLogSubmitEvents"),
|
21
|
+
})
|
22
|
+
this.chainId = chainId;
|
23
|
+
}
|
24
|
+
|
25
|
+
async pollHandler() {
|
26
|
+
const currentBlock = await this.provider.getBlockNumber();
|
27
|
+
|
28
|
+
const events = await this.contract.queryFilter(
|
29
|
+
this.contract.filters.LogSubmit(),
|
30
|
+
currentBlock - 2000,
|
31
|
+
currentBlock,
|
32
|
+
);
|
33
|
+
|
34
|
+
let processedEvents = 0;
|
35
|
+
|
36
|
+
for (const event of events) {
|
37
|
+
|
38
|
+
try {
|
39
|
+
if (!event.args) {
|
40
|
+
continue;
|
41
|
+
}
|
42
|
+
|
43
|
+
const {
|
44
|
+
position,
|
45
|
+
actionId,
|
46
|
+
actionIdHashHash,
|
47
|
+
sourceSender,
|
48
|
+
sourceDsaId,
|
49
|
+
targetDsaId,
|
50
|
+
sourceChainId,
|
51
|
+
targetChainId,
|
52
|
+
vnonce,
|
53
|
+
metadata,
|
54
|
+
|
55
|
+
} = event.args;
|
56
|
+
|
57
|
+
const uniqueIdentifier = {
|
58
|
+
actionId,
|
59
|
+
vnonce: vnonce.toString(),
|
60
|
+
sourceSender: sourceSender.toString(),
|
61
|
+
sourceChainId: sourceChainId.toNumber(),
|
62
|
+
targetChainId: targetChainId.toNumber(),
|
63
|
+
sourceDsaId: sourceDsaId.toString(),
|
64
|
+
targetDsaId: targetDsaId.toString(),
|
65
|
+
}
|
66
|
+
|
67
|
+
let transactionHash = generateInteropTransactionHash(uniqueIdentifier);
|
68
|
+
|
69
|
+
const transaction = await Transaction.findOne({ where: { transactionHash } });
|
70
|
+
|
71
|
+
if (transaction) {
|
72
|
+
continue;
|
73
|
+
}
|
74
|
+
|
75
|
+
await Transaction.create({
|
76
|
+
transactionHash,
|
77
|
+
...uniqueIdentifier,
|
78
|
+
submitChainId: this.chainId,
|
79
|
+
submitTransactionHash: event.transactionHash,
|
80
|
+
submitBlockNumber: event.blockNumber,
|
81
|
+
submitCreatedAt: new Date(),
|
82
|
+
submitEvent: {
|
83
|
+
actionId,
|
84
|
+
actionIdHashHash,
|
85
|
+
vnonce: vnonce.toString(),
|
86
|
+
position: {
|
87
|
+
withdraw: position.withdraw.map((v) => ({
|
88
|
+
sourceToken: v.sourceToken,
|
89
|
+
targetToken: v.targetToken,
|
90
|
+
amount: v.amount.toString()
|
91
|
+
})),
|
92
|
+
supply: position.supply.map((v) => ({
|
93
|
+
sourceToken: v.sourceToken,
|
94
|
+
targetToken: v.targetToken,
|
95
|
+
amount: v.amount.toString()
|
96
|
+
})),
|
97
|
+
},
|
98
|
+
sourceChainId: sourceChainId.toNumber(),
|
99
|
+
targetChainId: targetChainId.toNumber(),
|
100
|
+
sourceSender,
|
101
|
+
sourceDsaId: sourceDsaId.toString(),
|
102
|
+
targetDsaId: targetDsaId.toString(),
|
103
|
+
metadata,
|
104
|
+
}
|
105
|
+
})
|
106
|
+
|
107
|
+
this.logger.info(
|
108
|
+
`New InteropX tranaction: ${transactionHash} `
|
109
|
+
);
|
110
|
+
} catch (error) {
|
111
|
+
this.logger.error(error);
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
if (processedEvents > 0)
|
116
|
+
this.logger.info(`${processedEvents} events processed`);
|
117
|
+
}
|
118
|
+
|
119
|
+
async start(): Promise<void> {
|
120
|
+
this.contractAddress = addresses[this.chainId].interopX;
|
121
|
+
|
122
|
+
this.provider = new ethers.providers.JsonRpcProvider(
|
123
|
+
getRpcProviderUrl(this.chainId)
|
124
|
+
);
|
125
|
+
|
126
|
+
this.contract = getContract<InteropX>(
|
127
|
+
this.contractAddress,
|
128
|
+
abi.interopX,
|
129
|
+
new ethers.Wallet(config.privateKey!, this.provider)
|
130
|
+
);
|
131
|
+
|
132
|
+
await super.start()
|
133
|
+
}
|
134
|
+
}
|
135
|
+
|
136
|
+
export default SyncLogSubmitEvents;
|
@@ -0,0 +1,70 @@
|
|
1
|
+
import { BaseTask } from "../BaseTask";
|
2
|
+
import Logger from '@/logger';
|
3
|
+
import config from "@/config";
|
4
|
+
import { peerPool, protocol } from "@/net";
|
5
|
+
import { Transaction } from "@/db";
|
6
|
+
import { Op } from "sequelize";
|
7
|
+
|
8
|
+
class SyncTransactionStatusTask extends BaseTask {
|
9
|
+
pollIntervalMs: number = 60 * 1000
|
10
|
+
exceptLeadNode: boolean = true;
|
11
|
+
|
12
|
+
constructor() {
|
13
|
+
super({
|
14
|
+
logger: new Logger("SyncTransactionStatusTask"),
|
15
|
+
})
|
16
|
+
}
|
17
|
+
|
18
|
+
async pollHandler() {
|
19
|
+
// if transaction is pending for more than 1 hour, check lead node for status
|
20
|
+
const leadNode = peerPool.getLeadPeer();
|
21
|
+
|
22
|
+
if (!leadNode) {
|
23
|
+
console.log("No lead node found");
|
24
|
+
return;
|
25
|
+
}
|
26
|
+
|
27
|
+
const transaction = await Transaction.findOne({
|
28
|
+
where: {
|
29
|
+
status: {
|
30
|
+
[Op.notIn] : ['success', 'failed'],
|
31
|
+
},
|
32
|
+
createdAt: {
|
33
|
+
[Op.lt]: new Date(Date.now() - 15 * 60 * 1000),
|
34
|
+
},
|
35
|
+
}
|
36
|
+
})
|
37
|
+
|
38
|
+
if (!transaction) {
|
39
|
+
return;
|
40
|
+
}
|
41
|
+
|
42
|
+
this.logger.info(`Requesting transaction status for ${transaction.transactionHash}`)
|
43
|
+
|
44
|
+
const transactionStatus = await protocol.requestTransactionStatus(transaction.transactionHash, leadNode.id);
|
45
|
+
|
46
|
+
if (!transactionStatus) {
|
47
|
+
return;
|
48
|
+
}
|
49
|
+
|
50
|
+
this.logger.info(`Received transaction status for ${transaction.transactionHash}`)
|
51
|
+
|
52
|
+
transaction.sourceStatus = transactionStatus.sourceStatus
|
53
|
+
transaction.sourceTransactionHash = transactionStatus.sourceTransactionHash
|
54
|
+
transaction.sourceErrors = transactionStatus.sourceErrors
|
55
|
+
transaction.sourceLogs = transactionStatus.sourceLogs
|
56
|
+
|
57
|
+
transaction.targetStatus = transactionStatus.targetStatus
|
58
|
+
transaction.targetTransactionHash = transactionStatus.targetTransactionHash
|
59
|
+
transaction.targetErrors = transactionStatus.targetErrors
|
60
|
+
transaction.targetLogs = transactionStatus.targetLogs
|
61
|
+
|
62
|
+
transaction.status = transactionStatus.status
|
63
|
+
|
64
|
+
await transaction.save()
|
65
|
+
|
66
|
+
this.logger.info(`Updated transaction status for ${transaction.transactionHash}`)
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
export default SyncTransactionStatusTask;
|
package/src/tasks/index.ts
CHANGED
@@ -1,18 +1,30 @@
|
|
1
1
|
import { BaseTask } from "./BaseTask";
|
2
|
-
import
|
2
|
+
import wait from "waait";
|
3
|
+
|
4
|
+
import SyncTransactionStatusTask from "./Transactions/SyncTransactionStatusTask";
|
5
|
+
|
6
|
+
import AutoUpdateTask from "./AutoUpdateTask";
|
7
|
+
|
8
|
+
import SyncLogSubmitEvents from "./InteropX/SyncLogSubmitEvents";
|
3
9
|
|
4
10
|
export class Tasks {
|
5
|
-
|
11
|
+
|
6
12
|
tasks: BaseTask[] = [
|
7
|
-
new
|
8
|
-
|
9
|
-
|
13
|
+
// new SyncTransactionStatusTask(),
|
14
|
+
new AutoUpdateTask(),
|
15
|
+
|
16
|
+
// InteropX
|
17
|
+
new SyncLogSubmitEvents({ chainId: 137 }),
|
18
|
+
new SyncLogSubmitEvents({ chainId: 43114 }),
|
19
|
+
|
20
|
+
new SyncTransactionStatusTask(),
|
10
21
|
];
|
11
22
|
|
12
23
|
async start() {
|
13
24
|
for (const task of this.tasks) {
|
14
25
|
try {
|
15
26
|
task.start();
|
27
|
+
await wait(1000)
|
16
28
|
} catch (error) {
|
17
29
|
console.error(`Error starting task: ${task.constructor.name}`);
|
18
30
|
}
|