@instadapp/interop-x 0.0.0-dev.1abc1ca → 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.
Files changed (79) hide show
  1. package/.github/workflows/ci.yml +19 -0
  2. package/bin/interop-x +1 -1
  3. package/dist/package.json +21 -16
  4. package/dist/src/abi/index.js +2 -4
  5. package/dist/src/abi/interopX.json +1436 -0
  6. package/dist/src/alias.js +10 -0
  7. package/dist/src/api/index.js +6 -3
  8. package/dist/src/config/index.js +11 -1
  9. package/dist/src/constants/addresses.js +2 -7
  10. package/dist/src/constants/index.js +0 -1
  11. package/dist/src/constants/tokens.js +62 -39
  12. package/dist/src/db/models/transaction.js +29 -11
  13. package/dist/src/gnosis/actions/index.js +9 -0
  14. package/dist/src/gnosis/actions/withdraw/index.js +114 -0
  15. package/dist/src/gnosis/index.js +20 -0
  16. package/dist/src/index.js +75 -24
  17. package/dist/src/net/peer/index.js +8 -3
  18. package/dist/src/net/pool/index.js +32 -9
  19. package/dist/src/net/protocol/dial/SignatureDialProtocol.js +8 -2
  20. package/dist/src/net/protocol/dial/TransactionStatusDialProtocol.js +30 -0
  21. package/dist/src/net/protocol/index.js +51 -1
  22. package/dist/src/tasks/AutoUpdateTask.js +70 -0
  23. package/dist/src/tasks/BaseTask.js +12 -4
  24. package/dist/src/tasks/InteropX/SyncLogSubmitEvents.js +84 -0
  25. package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +57 -0
  26. package/dist/src/tasks/index.js +11 -4
  27. package/dist/src/typechain/{InteropBridgeToken.js → InteropX.js} +0 -0
  28. package/dist/src/typechain/factories/InteropX__factory.js +1928 -0
  29. package/dist/src/typechain/factories/index.js +3 -5
  30. package/dist/src/typechain/index.js +3 -5
  31. package/dist/src/utils/index.js +97 -39
  32. package/package.json +21 -16
  33. package/patches/@ethersproject+properties+5.6.0.patch +13 -0
  34. package/src/abi/index.ts +2 -4
  35. package/src/abi/interopX.json +1436 -0
  36. package/src/alias.ts +6 -0
  37. package/src/api/index.ts +5 -2
  38. package/src/config/index.ts +11 -1
  39. package/src/constants/addresses.ts +3 -8
  40. package/src/constants/index.ts +0 -1
  41. package/src/constants/tokens.ts +63 -40
  42. package/src/db/models/transaction.ts +65 -25
  43. package/src/gnosis/actions/index.ts +5 -0
  44. package/src/gnosis/actions/withdraw/index.ts +155 -0
  45. package/src/gnosis/index.ts +19 -0
  46. package/src/index.ts +96 -26
  47. package/src/net/peer/index.ts +9 -7
  48. package/src/net/pool/index.ts +41 -11
  49. package/src/net/protocol/dial/SignatureDialProtocol.ts +10 -4
  50. package/src/net/protocol/dial/TransactionStatusDialProtocol.ts +33 -0
  51. package/src/net/protocol/index.ts +67 -1
  52. package/src/tasks/AutoUpdateTask.ts +82 -0
  53. package/src/tasks/BaseTask.ts +14 -4
  54. package/src/tasks/InteropX/SyncLogSubmitEvents.ts +136 -0
  55. package/src/tasks/Transactions/SyncTransactionStatusTask.ts +69 -0
  56. package/src/tasks/index.ts +17 -5
  57. package/src/typechain/InteropX.ts +1216 -0
  58. package/src/typechain/factories/InteropX__factory.ts +1932 -0
  59. package/src/typechain/factories/index.ts +1 -2
  60. package/src/typechain/index.ts +2 -4
  61. package/src/utils/index.ts +153 -49
  62. package/tsconfig.json +7 -2
  63. package/dist/src/abi/interopBridgeToken.json +0 -286
  64. package/dist/src/abi/interopXGateway.json +0 -184
  65. package/dist/src/constants/itokens.js +0 -13
  66. package/dist/src/tasks/InteropXGateway/ProcessDepositEvents.js +0 -140
  67. package/dist/src/tasks/InteropXGateway/SyncDepositEvents.js +0 -75
  68. package/dist/src/typechain/InteropXGateway.js +0 -2
  69. package/dist/src/typechain/factories/InteropBridgeToken__factory.js +0 -459
  70. package/dist/src/typechain/factories/InteropXGateway__factory.js +0 -265
  71. package/src/abi/interopBridgeToken.json +0 -286
  72. package/src/abi/interopXGateway.json +0 -184
  73. package/src/constants/itokens.ts +0 -10
  74. package/src/tasks/InteropXGateway/ProcessDepositEvents.ts +0 -232
  75. package/src/tasks/InteropXGateway/SyncDepositEvents.ts +0 -126
  76. package/src/typechain/InteropBridgeToken.ts +0 -686
  77. package/src/typechain/InteropXGateway.ts +0 -407
  78. package/src/typechain/factories/InteropBridgeToken__factory.ts +0 -466
  79. 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,69 @@
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
+ return;
24
+ }
25
+
26
+ const transaction = await Transaction.findOne({
27
+ where: {
28
+ sourceStatus: {
29
+ [Op.notIn] : ['success', 'failed'],
30
+ },
31
+ sourceCreatedAt: {
32
+ [Op.gte]: new Date(Date.now() - 15 * 60 * 1000),
33
+ },
34
+ }
35
+ })
36
+
37
+ if (!transaction) {
38
+ return;
39
+ }
40
+
41
+ this.logger.info(`Requesting transaction status for ${transaction.transactionHash}`)
42
+
43
+ const transactionStatus = await protocol.requestTransactionStatus(transaction.transactionHash, leadNode.id);
44
+
45
+ if (!transactionStatus) {
46
+ return;
47
+ }
48
+
49
+ this.logger.info(`Received transaction status for ${transaction.transactionHash}`)
50
+
51
+ transaction.sourceStatus = transactionStatus.sourceStatus
52
+ transaction.sourceTransactionHash = transactionStatus.sourceTransactionHash
53
+ transaction.sourceErrors = transactionStatus.sourceErrors
54
+ transaction.sourceLogs = transactionStatus.sourceLogs
55
+
56
+ transaction.targetStatus = transactionStatus.targetStatus
57
+ transaction.targetTransactionHash = transactionStatus.targetTransactionHash
58
+ transaction.targetErrors = transactionStatus.targetErrors
59
+ transaction.targetLogs = transactionStatus.targetLogs
60
+
61
+ transaction.status = transactionStatus.status
62
+
63
+ await transaction.save()
64
+
65
+ this.logger.info(`Updated transaction status for ${transaction.transactionHash}`)
66
+ }
67
+ }
68
+
69
+ export default SyncTransactionStatusTask;
@@ -1,18 +1,30 @@
1
1
  import { BaseTask } from "./BaseTask";
2
- import SyncInteropXGatewayDepositEvents from "./InteropXGateway/SyncDepositEvents";
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 SyncInteropXGatewayDepositEvents({
8
- chainId: 43114
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
  }