@instadapp/interop-x 0.0.0-dev.14afa72 → 0.0.0-dev.1dc43c9
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 +13 -12
- package/dist/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 +1 -1
- package/dist/src/constants/addresses.js +2 -7
- package/dist/src/constants/index.js +0 -1
- package/dist/src/constants/tokens.js +62 -39
- package/dist/src/db/models/transaction.js +21 -11
- package/dist/src/gnosis/actions/index.js +0 -2
- package/dist/src/gnosis/actions/withdraw/index.js +114 -0
- package/dist/src/gnosis/index.js +4 -4
- package/dist/src/index.js +7 -19
- package/dist/src/net/protocol/dial/SignatureDialProtocol.js +6 -2
- package/dist/src/net/protocol/dial/TransactionStatusDialProtocol.js +2 -0
- package/dist/src/net/protocol/index.js +11 -1
- package/dist/src/tasks/InteropX/SyncLogSubmitEvents.js +84 -0
- package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +6 -2
- package/dist/src/tasks/index.js +8 -29
- package/dist/src/typechain/{InteropBridgeToken.js → InteropX.js} +0 -0
- package/dist/src/typechain/factories/InteropX__factory.js +1928 -0
- package/dist/src/typechain/factories/index.js +3 -5
- package/dist/src/typechain/index.js +3 -5
- package/dist/src/utils/index.js +46 -8
- package/package.json +13 -12
- 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 +1 -1
- package/src/constants/addresses.ts +3 -8
- package/src/constants/index.ts +0 -1
- package/src/constants/tokens.ts +63 -40
- package/src/db/models/transaction.ts +55 -25
- package/src/gnosis/actions/index.ts +0 -2
- package/src/gnosis/actions/withdraw/index.ts +155 -0
- package/src/gnosis/index.ts +5 -5
- package/src/index.ts +6 -18
- package/src/net/protocol/dial/SignatureDialProtocol.ts +6 -2
- package/src/net/protocol/dial/TransactionStatusDialProtocol.ts +3 -1
- package/src/net/protocol/index.ts +13 -3
- package/src/tasks/InteropX/SyncLogSubmitEvents.ts +136 -0
- package/src/tasks/Transactions/SyncTransactionStatusTask.ts +6 -2
- package/src/tasks/index.ts +10 -39
- 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 +102 -11
- package/tsconfig.json +7 -2
- package/dist/src/abi/interopBridgeToken.json +0 -298
- package/dist/src/abi/interopXGateway.json +0 -184
- package/dist/src/constants/itokens.js +0 -13
- package/dist/src/gnosis/actions/deposit.js +0 -48
- package/dist/src/gnosis/actions/withdraw.js +0 -50
- package/dist/src/tasks/InteropBridge/ProcessWithdrawEvents.js +0 -162
- package/dist/src/tasks/InteropBridge/SyncBurnEvents.js +0 -71
- package/dist/src/tasks/InteropBridge/SyncMintEvents.js +0 -67
- package/dist/src/tasks/InteropXGateway/ProcessDepositEvents.js +0 -164
- package/dist/src/tasks/InteropXGateway/SyncDepositEvents.js +0 -74
- package/dist/src/tasks/InteropXGateway/SyncWithdrawtEvents.js +0 -72
- package/dist/src/typechain/InteropXGateway.js +0 -2
- package/dist/src/typechain/factories/InteropBridgeToken__factory.js +0 -471
- package/dist/src/typechain/factories/InteropXGateway__factory.js +0 -265
- package/src/abi/interopBridgeToken.json +0 -298
- package/src/abi/interopXGateway.json +0 -184
- package/src/constants/itokens.ts +0 -10
- package/src/gnosis/actions/deposit.ts +0 -63
- package/src/gnosis/actions/withdraw.ts +0 -67
- package/src/tasks/InteropBridge/ProcessWithdrawEvents.ts +0 -249
- package/src/tasks/InteropBridge/SyncBurnEvents.ts +0 -119
- package/src/tasks/InteropBridge/SyncMintEvents.ts +0 -99
- package/src/tasks/InteropXGateway/ProcessDepositEvents.ts +0 -260
- package/src/tasks/InteropXGateway/SyncDepositEvents.ts +0 -124
- package/src/tasks/InteropXGateway/SyncWithdrawtEvents.ts +0 -105
- package/src/typechain/InteropBridgeToken.ts +0 -692
- package/src/typechain/InteropXGateway.ts +0 -407
- package/src/typechain/factories/InteropBridgeToken__factory.ts +0 -478
- package/src/typechain/factories/InteropXGateway__factory.ts +0 -272
@@ -36,7 +36,7 @@ interface PeerInfoEvent extends BaseMessageEvent {
|
|
36
36
|
}
|
37
37
|
|
38
38
|
interface TransactionStatusEvent extends BaseMessageEvent {
|
39
|
-
data: Pick<Transaction, 'transactionHash' | 'sourceStatus' | 'sourceTransactionHash' | 'sourceErrors' | 'targetStatus' | 'targetTransactionHash' | 'targetErrors' | 'status'>
|
39
|
+
data: Pick<Transaction, 'transactionHash' | 'sourceStatus' | 'sourceTransactionHash' | 'sourceErrors' | 'sourceLogs' | 'targetStatus' | 'targetTransactionHash' | 'targetErrors' | 'targetLogs' | 'status'>
|
40
40
|
}
|
41
41
|
|
42
42
|
declare interface Protocol {
|
@@ -68,23 +68,33 @@ class Protocol extends EventEmitter {
|
|
68
68
|
Buffer.from(transaction.sourceStatus),
|
69
69
|
Buffer.from(transaction.sourceTransactionHash || ''),
|
70
70
|
transaction.sourceErrors ? transaction.sourceErrors.map((e) => Buffer.from(e)) : [],
|
71
|
+
transaction.sourceLogs ? transaction.sourceLogs.map((e) => [Buffer.from(e.type), Buffer.from(e.message)]) : [],
|
71
72
|
|
72
73
|
Buffer.from(transaction.targetStatus),
|
73
74
|
Buffer.from(transaction.targetTransactionHash || ''),
|
74
75
|
transaction.targetErrors ? transaction.targetErrors.map((e) => Buffer.from(e)) : [],
|
76
|
+
transaction.targetLogs ? transaction.targetLogs.map((e) => [Buffer.from(e.type), Buffer.from(e.message)]) : [],
|
75
77
|
|
76
78
|
Buffer.from(transaction.status),
|
77
79
|
],
|
78
|
-
decode: ([transactionHash, sourceStatus, sourceTransactionHash, sourceErrors, targetStatus, targetTransactionHash, targetErrors, status]: [Buffer, Buffer, Buffer, Buffer[], Buffer, Buffer, Buffer[], Buffer]) => ({
|
80
|
+
decode: ([transactionHash, sourceStatus, sourceTransactionHash, sourceErrors, sourceLogs, targetStatus, targetTransactionHash, targetErrors, targetLogs, status]: [Buffer, Buffer, Buffer, Buffer[],[Buffer,Buffer][], Buffer, Buffer, Buffer[],[Buffer,Buffer][], Buffer]) => ({
|
79
81
|
transactionHash: transactionHash.toString(),
|
80
82
|
|
81
83
|
sourceStatus: sourceStatus.toString(),
|
82
84
|
sourceTransactionHash: sourceTransactionHash.toString() || null,
|
83
85
|
sourceErrors: sourceErrors.map((e) => e.toString()),
|
86
|
+
sourceLogs: sourceLogs.map(e => ({
|
87
|
+
type: e[0].toString(),
|
88
|
+
message: e[1].toString(),
|
89
|
+
})),
|
84
90
|
|
85
91
|
targetStatus: targetStatus.toString(),
|
86
|
-
targetTransactionHash: targetTransactionHash.toString()|| null,
|
92
|
+
targetTransactionHash: targetTransactionHash.toString() || null,
|
87
93
|
targetErrors: targetErrors.map((e) => e.toString()),
|
94
|
+
targetLogs: targetLogs.map(e => ({
|
95
|
+
type: e[0].toString(),
|
96
|
+
message: e[1].toString(),
|
97
|
+
})),
|
88
98
|
|
89
99
|
status: status.toString(),
|
90
100
|
}),
|
@@ -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;
|
@@ -25,9 +25,11 @@ class SyncTransactionStatusTask extends BaseTask {
|
|
25
25
|
|
26
26
|
const transaction = await Transaction.findOne({
|
27
27
|
where: {
|
28
|
-
|
28
|
+
sourceStatus: {
|
29
|
+
[Op.notIn] : ['success', 'failed'],
|
30
|
+
},
|
29
31
|
sourceCreatedAt: {
|
30
|
-
[Op.gte]: new Date(Date.now() -
|
32
|
+
[Op.gte]: new Date(Date.now() - 15 * 60 * 1000),
|
31
33
|
},
|
32
34
|
}
|
33
35
|
})
|
@@ -49,10 +51,12 @@ class SyncTransactionStatusTask extends BaseTask {
|
|
49
51
|
transaction.sourceStatus = transactionStatus.sourceStatus
|
50
52
|
transaction.sourceTransactionHash = transactionStatus.sourceTransactionHash
|
51
53
|
transaction.sourceErrors = transactionStatus.sourceErrors
|
54
|
+
transaction.sourceLogs = transactionStatus.sourceLogs
|
52
55
|
|
53
56
|
transaction.targetStatus = transactionStatus.targetStatus
|
54
57
|
transaction.targetTransactionHash = transactionStatus.targetTransactionHash
|
55
58
|
transaction.targetErrors = transactionStatus.targetErrors
|
59
|
+
transaction.targetLogs = transactionStatus.targetLogs
|
56
60
|
|
57
61
|
transaction.status = transactionStatus.status
|
58
62
|
|
package/src/tasks/index.ts
CHANGED
@@ -1,59 +1,30 @@
|
|
1
1
|
import { BaseTask } from "./BaseTask";
|
2
|
-
import
|
3
|
-
import InteropXGatewaySyncDepositEvents from "./InteropXGateway/SyncDepositEvents";
|
4
|
-
import InteropXGatewaySyncWithdrawEvents from "./InteropXGateway/SyncWithdrawtEvents";
|
5
|
-
|
6
|
-
import InteropBridgeProcessWithdrawEvents from "./InteropBridge/ProcessWithdrawEvents";
|
7
|
-
import InteropBridgeSyncBurnEvents from "./InteropBridge/SyncBurnEvents";
|
8
|
-
import InteropBridgeSyncMintEvents from "./InteropBridge/SyncMintEvents";
|
2
|
+
import wait from "waait";
|
9
3
|
|
10
4
|
import SyncTransactionStatusTask from "./Transactions/SyncTransactionStatusTask";
|
11
5
|
|
12
6
|
import AutoUpdateTask from "./AutoUpdateTask";
|
13
7
|
|
8
|
+
import SyncLogSubmitEvents from "./InteropX/SyncLogSubmitEvents";
|
9
|
+
|
14
10
|
export class Tasks {
|
15
|
-
|
11
|
+
|
16
12
|
tasks: BaseTask[] = [
|
17
|
-
new SyncTransactionStatusTask(),
|
13
|
+
// new SyncTransactionStatusTask(),
|
18
14
|
new AutoUpdateTask(),
|
19
15
|
|
20
|
-
//
|
21
|
-
|
22
|
-
new
|
23
|
-
chainId: 43114
|
24
|
-
}),
|
25
|
-
|
26
|
-
new InteropXGatewayProcessDepositEvents({
|
27
|
-
chainId: 43114
|
28
|
-
}),
|
29
|
-
|
16
|
+
// InteropX
|
17
|
+
new SyncLogSubmitEvents({ chainId: 137 }),
|
18
|
+
new SyncLogSubmitEvents({ chainId: 43114 }),
|
30
19
|
|
31
|
-
new
|
32
|
-
chainId: 43114
|
33
|
-
}),
|
34
|
-
|
35
|
-
|
36
|
-
// InteropBridge
|
37
|
-
|
38
|
-
new InteropBridgeProcessWithdrawEvents({
|
39
|
-
chainId: 137,
|
40
|
-
}),
|
41
|
-
|
42
|
-
new InteropBridgeSyncMintEvents({
|
43
|
-
chainId: 137,
|
44
|
-
itokenAddress: '0x62c0045f3277e7067cacad3c8038eeabb1bd92d1',
|
45
|
-
}),
|
46
|
-
|
47
|
-
new InteropBridgeSyncBurnEvents({
|
48
|
-
chainId: 137,
|
49
|
-
itokenAddress: '0x62c0045f3277e7067cacad3c8038eeabb1bd92d1',
|
50
|
-
})
|
20
|
+
new SyncTransactionStatusTask(),
|
51
21
|
];
|
52
22
|
|
53
23
|
async start() {
|
54
24
|
for (const task of this.tasks) {
|
55
25
|
try {
|
56
26
|
task.start();
|
27
|
+
await wait(1000)
|
57
28
|
} catch (error) {
|
58
29
|
console.error(`Error starting task: ${task.constructor.name}`);
|
59
30
|
}
|