@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.
Files changed (96) hide show
  1. package/.env.example +2 -1
  2. package/.github/workflows/ci.yml +19 -0
  3. package/bin/interop-x +1 -1
  4. package/dist/package.json +74 -0
  5. package/dist/{abi → src/abi}/erc20.json +0 -0
  6. package/dist/{abi → src/abi}/gnosisSafe.json +0 -0
  7. package/dist/{abi → src/abi}/index.js +2 -4
  8. package/dist/src/abi/interopX.json +1436 -0
  9. package/dist/src/alias.js +10 -0
  10. package/dist/src/api/index.js +36 -0
  11. package/dist/src/config/index.js +31 -0
  12. package/dist/src/constants/addresses.js +15 -0
  13. package/dist/{constants → src/constants}/index.js +0 -0
  14. package/dist/{constants → src/constants}/tokens.js +62 -39
  15. package/dist/{db → src/db}/index.js +0 -0
  16. package/dist/{db → src/db}/models/index.js +0 -0
  17. package/dist/{db → src/db}/models/transaction.js +29 -9
  18. package/dist/{db → src/db}/sequelize.js +2 -1
  19. package/dist/src/gnosis/actions/index.js +9 -0
  20. package/dist/src/gnosis/actions/withdraw/index.js +114 -0
  21. package/dist/src/gnosis/index.js +20 -0
  22. package/dist/src/index.js +119 -0
  23. package/dist/{logger → src/logger}/index.js +0 -0
  24. package/dist/{net → src/net}/index.js +0 -0
  25. package/dist/{net → src/net}/peer/index.js +8 -3
  26. package/dist/{net → src/net}/pool/index.js +32 -9
  27. package/dist/{net → src/net}/protocol/dial/BaseDialProtocol.js +0 -0
  28. package/dist/{net → src/net}/protocol/dial/SignatureDialProtocol.js +21 -12
  29. package/dist/src/net/protocol/dial/TransactionStatusDialProtocol.js +30 -0
  30. package/dist/{net → src/net}/protocol/index.js +51 -1
  31. package/dist/src/tasks/AutoUpdateTask.js +70 -0
  32. package/dist/{tasks → src/tasks}/BaseTask.js +12 -4
  33. package/dist/src/tasks/InteropX/SyncLogSubmitEvents.js +84 -0
  34. package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +58 -0
  35. package/dist/src/tasks/index.js +34 -0
  36. package/dist/{typechain → src/typechain}/Erc20.js +0 -0
  37. package/dist/{typechain → src/typechain}/GnosisSafe.js +0 -0
  38. package/dist/{typechain/InteropBridgeToken.js → src/typechain/InteropX.js} +0 -0
  39. package/dist/{typechain → src/typechain}/common.js +0 -0
  40. package/dist/{typechain → src/typechain}/factories/Erc20__factory.js +0 -0
  41. package/dist/{typechain → src/typechain}/factories/GnosisSafe__factory.js +0 -0
  42. package/dist/src/typechain/factories/InteropX__factory.js +1928 -0
  43. package/dist/src/typechain/factories/index.js +12 -0
  44. package/dist/{typechain → src/typechain}/index.js +3 -5
  45. package/dist/{types.js → src/types.js} +0 -0
  46. package/dist/src/utils/index.js +195 -0
  47. package/package.json +23 -28
  48. package/patches/@ethersproject+properties+5.6.0.patch +13 -0
  49. package/src/abi/index.ts +2 -4
  50. package/src/abi/interopX.json +1436 -0
  51. package/src/alias.ts +6 -0
  52. package/src/api/index.ts +36 -0
  53. package/src/config/index.ts +17 -1
  54. package/src/constants/addresses.ts +3 -16
  55. package/src/constants/tokens.ts +63 -40
  56. package/src/db/models/transaction.ts +69 -25
  57. package/src/db/sequelize.ts +2 -1
  58. package/src/gnosis/actions/index.ts +5 -0
  59. package/src/gnosis/actions/withdraw/index.ts +155 -0
  60. package/src/gnosis/index.ts +19 -0
  61. package/src/index.ts +107 -7
  62. package/src/net/peer/index.ts +9 -7
  63. package/src/net/pool/index.ts +41 -11
  64. package/src/net/protocol/dial/SignatureDialProtocol.ts +23 -13
  65. package/src/net/protocol/dial/TransactionStatusDialProtocol.ts +33 -0
  66. package/src/net/protocol/index.ts +67 -1
  67. package/src/tasks/AutoUpdateTask.ts +82 -0
  68. package/src/tasks/BaseTask.ts +14 -4
  69. package/src/tasks/InteropX/SyncLogSubmitEvents.ts +136 -0
  70. package/src/tasks/Transactions/SyncTransactionStatusTask.ts +70 -0
  71. package/src/tasks/index.ts +17 -5
  72. package/src/typechain/InteropX.ts +1216 -0
  73. package/src/typechain/factories/InteropX__factory.ts +1932 -0
  74. package/src/typechain/factories/index.ts +1 -2
  75. package/src/typechain/index.ts +2 -4
  76. package/src/utils/index.ts +170 -10
  77. package/tsconfig.json +7 -2
  78. package/dist/abi/interopBridgeToken.json +0 -286
  79. package/dist/abi/interopXGateway.json +0 -184
  80. package/dist/config/index.js +0 -17
  81. package/dist/constants/addresses.js +0 -28
  82. package/dist/index.js +0 -43
  83. package/dist/tasks/InteropXGateway/SyncDepositEvents.js +0 -79
  84. package/dist/tasks/index.js +0 -27
  85. package/dist/typechain/InteropXGateway.js +0 -2
  86. package/dist/typechain/factories/InteropBridgeToken__factory.js +0 -459
  87. package/dist/typechain/factories/InteropXGateway__factory.js +0 -265
  88. package/dist/typechain/factories/index.js +0 -14
  89. package/dist/utils/index.js +0 -101
  90. package/src/abi/interopBridgeToken.json +0 -286
  91. package/src/abi/interopXGateway.json +0 -184
  92. package/src/tasks/InteropXGateway/SyncDepositEvents.ts +0 -114
  93. package/src/typechain/InteropBridgeToken.ts +0 -686
  94. package/src/typechain/InteropXGateway.ts +0 -407
  95. package/src/typechain/factories/InteropBridgeToken__factory.ts +0 -466
  96. 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;
@@ -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
  }