@instadapp/interop-x 0.0.0-dev.4349539 → 0.0.0-dev.48c6eec
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/dist/package.json +13 -12
- package/dist/src/abi/index.js +2 -4
- package/dist/src/abi/interopXContract.json +454 -0
- package/dist/src/alias.js +10 -0
- package/dist/src/api/index.js +3 -0
- package/dist/src/constants/addresses.js +7 -7
- package/dist/src/constants/index.js +0 -1
- package/dist/src/constants/tokens.js +62 -39
- package/dist/src/db/models/transaction.js +27 -11
- package/dist/src/gnosis/actions/index.js +9 -0
- package/dist/src/gnosis/actions/withdraw/index.js +115 -0
- package/dist/src/gnosis/index.js +20 -0
- package/dist/src/index.js +8 -19
- package/dist/src/net/protocol/dial/SignatureDialProtocol.js +9 -10
- package/dist/src/net/protocol/dial/{SignatureDialProtocol.1.js → TransactionStatusDialProtocol.js} +2 -0
- package/dist/src/net/protocol/index.js +17 -7
- package/dist/src/tasks/{InteropXGateway/ProcessDepositEvents.js → InteropXContract/ProcessBridgeRequestEvents.js} +61 -52
- package/dist/src/tasks/InteropXContract/SyncBridgeCommittedEvents.js +93 -0
- package/dist/src/tasks/InteropXContract/SyncBridgeRequestEvents.js +78 -0
- package/dist/src/tasks/InteropXContract/SyncBridgeRequestSentEvents.js +90 -0
- package/dist/src/tasks/Transactions/SyncTransactionStatusTask.js +6 -2
- package/dist/src/tasks/index.js +16 -19
- package/dist/src/typechain/{InteropBridgeToken.js → InteropXContract.js} +0 -0
- package/dist/src/typechain/factories/InteropXContract__factory.js +635 -0
- package/dist/src/typechain/factories/index.js +3 -5
- package/dist/src/typechain/index.js +3 -5
- package/dist/src/utils/index.js +44 -89
- package/package.json +13 -12
- package/src/abi/index.ts +2 -4
- package/src/abi/interopXContract.json +454 -0
- package/src/alias.ts +6 -0
- package/src/api/index.ts +3 -0
- package/src/constants/addresses.ts +8 -8
- package/src/constants/index.ts +0 -1
- package/src/constants/tokens.ts +63 -40
- package/src/db/models/transaction.ts +76 -27
- 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 +7 -18
- package/src/net/protocol/dial/SignatureDialProtocol.ts +11 -13
- package/src/net/protocol/dial/{SignatureDialProtocol.1.ts → TransactionStatusDialProtocol.ts} +3 -1
- package/src/net/protocol/index.ts +17 -7
- package/src/tasks/{InteropBridge/ProcessWithdrawEvents.ts → InteropXContract/ProcessBridgeRequestEvents.ts} +89 -94
- package/src/tasks/InteropXContract/SyncBridgeCommittedEvents.ts +125 -0
- package/src/tasks/InteropXContract/SyncBridgeRequestEvents.ts +115 -0
- package/src/tasks/InteropXContract/SyncBridgeRequestSentEvents.ts +121 -0
- package/src/tasks/Transactions/SyncTransactionStatusTask.ts +6 -2
- package/src/tasks/index.ts +21 -20
- package/src/typechain/InteropXContract.ts +680 -0
- package/src/typechain/factories/InteropXContract__factory.ts +642 -0
- package/src/typechain/factories/index.ts +1 -2
- package/src/typechain/index.ts +2 -4
- package/src/utils/index.ts +82 -126
- package/tsconfig.json +7 -2
- package/dist/src/abi/interopBridgeToken.json +0 -286
- package/dist/src/abi/interopXGateway.json +0 -184
- package/dist/src/constants/itokens.js +0 -13
- package/dist/src/tasks/InteropBridge/ProcessWithdrawEvents.js +0 -146
- package/dist/src/tasks/InteropBridge/SyncWithdrawEvents.js +0 -69
- package/dist/src/tasks/InteropXGateway/SyncDepositEvents.js +0 -74
- package/dist/src/typechain/InteropXGateway.js +0 -2
- package/dist/src/typechain/factories/InteropBridgeToken__factory.js +0 -459
- package/dist/src/typechain/factories/InteropXGateway__factory.js +0 -265
- package/src/abi/interopBridgeToken.json +0 -286
- package/src/abi/interopXGateway.json +0 -184
- package/src/constants/itokens.ts +0 -10
- package/src/tasks/InteropBridge/SyncWithdrawEvents.ts +0 -119
- package/src/tasks/InteropXGateway/ProcessDepositEvents.ts +0 -243
- package/src/tasks/InteropXGateway/SyncDepositEvents.ts +0 -124
- 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
@@ -1,40 +1,75 @@
|
|
1
1
|
import { sequelize } from '@/db/sequelize'
|
2
2
|
import { CreationOptional, InferAttributes, InferCreationAttributes, Model, DataTypes } from 'sequelize';
|
3
3
|
|
4
|
+
export interface IPositionTokenInfo{
|
5
|
+
amount: string;
|
6
|
+
sourceToken: string;
|
7
|
+
targetToken: string;
|
8
|
+
}
|
9
|
+
|
10
|
+
export interface IPosition {
|
11
|
+
supply: IPositionTokenInfo[];
|
12
|
+
withdraw: IPositionTokenInfo[];
|
13
|
+
}
|
14
|
+
|
4
15
|
export class Transaction extends Model<InferAttributes<Transaction>, InferCreationAttributes<Transaction>> {
|
5
16
|
declare id: CreationOptional<number>;
|
6
17
|
|
7
18
|
declare transactionHash: string;
|
8
|
-
|
9
|
-
declare
|
10
|
-
declare
|
19
|
+
|
20
|
+
declare actionId: string;
|
21
|
+
declare bridger: string;
|
22
|
+
declare requestTransactionHash: string;
|
11
23
|
|
12
|
-
declare
|
13
|
-
declare submitBlockNumber: number;
|
24
|
+
declare requestBlockNumber: number;
|
14
25
|
|
15
26
|
declare sourceChainId: number;
|
16
27
|
declare sourceTransactionHash: CreationOptional<string>;
|
17
28
|
declare sourceBlockNumber: CreationOptional<number>;
|
18
|
-
declare sourceStatus: string
|
29
|
+
declare sourceStatus: CreationOptional<string>;
|
19
30
|
declare sourceErrors: CreationOptional<string[]>;
|
31
|
+
declare sourceLogs: CreationOptional<any[]>;
|
20
32
|
declare sourceCreatedAt: CreationOptional<Date>;
|
21
33
|
declare sourceDelayUntil: CreationOptional<Date>;
|
22
34
|
|
23
35
|
declare targetChainId: number;
|
24
36
|
declare targetTransactionHash: CreationOptional<string>;
|
25
37
|
declare targetBlockNumber: CreationOptional<number>;
|
26
|
-
declare targetStatus: string
|
38
|
+
declare targetStatus: CreationOptional<string>;
|
27
39
|
declare targetErrors: CreationOptional<string[]>;
|
40
|
+
declare targetLogs: CreationOptional<any[]>;
|
28
41
|
declare targetCreatedAt: CreationOptional<Date>;
|
29
42
|
declare targetDelayUntil: CreationOptional<Date>;
|
30
43
|
|
31
|
-
declare
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
44
|
+
declare requestEvent: {
|
45
|
+
actionId: string;
|
46
|
+
bridger: string;
|
47
|
+
metadata: string;
|
48
|
+
position: IPosition;
|
49
|
+
sourceChainId: number;
|
50
|
+
targetChainId: number;
|
51
|
+
};
|
52
|
+
declare requestSentEvent: CreationOptional<{
|
53
|
+
actionId: string;
|
54
|
+
bridger: string;
|
55
|
+
metadata: string;
|
56
|
+
position: IPosition;
|
57
|
+
sourceChainId: number;
|
58
|
+
targetChainId: number;
|
59
|
+
requestTransactionHash: string;
|
60
|
+
}>;
|
61
|
+
declare committedEvent: CreationOptional<{
|
62
|
+
actionId: string;
|
63
|
+
bridger: string;
|
64
|
+
metadata: string;
|
65
|
+
position: IPosition;
|
66
|
+
sourceChainId: number;
|
67
|
+
targetChainId: number;
|
68
|
+
requestTransactionHash: string;
|
69
|
+
}>;
|
70
|
+
declare completedEvent: CreationOptional<any>;
|
71
|
+
|
72
|
+
declare status: CreationOptional<string>;
|
38
73
|
|
39
74
|
declare createdAt: CreationOptional<Date>;
|
40
75
|
declare updatedAt: CreationOptional<Date>;
|
@@ -47,23 +82,28 @@ Transaction.init({
|
|
47
82
|
primaryKey: true
|
48
83
|
},
|
49
84
|
|
50
|
-
|
51
|
-
|
85
|
+
requestTransactionHash: DataTypes.NUMBER,
|
86
|
+
requestBlockNumber: DataTypes.NUMBER,
|
52
87
|
|
53
88
|
transactionHash: DataTypes.STRING,
|
54
|
-
|
55
|
-
|
56
|
-
from: DataTypes.STRING,
|
57
|
-
to: DataTypes.STRING,
|
89
|
+
actionId: DataTypes.STRING,
|
90
|
+
bridger: DataTypes.STRING,
|
58
91
|
|
59
92
|
sourceChainId: DataTypes.NUMBER,
|
60
93
|
sourceTransactionHash: DataTypes.STRING,
|
61
94
|
sourceBlockNumber: DataTypes.NUMBER,
|
62
|
-
sourceStatus:
|
95
|
+
sourceStatus: {
|
96
|
+
type: DataTypes.STRING,
|
97
|
+
defaultValue: 'uninitialised'
|
98
|
+
},
|
63
99
|
sourceErrors: {
|
64
100
|
type: DataTypes.JSON,
|
65
101
|
// defaultValue: [],
|
66
102
|
},
|
103
|
+
sourceLogs: {
|
104
|
+
type: DataTypes.JSON,
|
105
|
+
// defaultValue: [],
|
106
|
+
},
|
67
107
|
sourceCreatedAt: {
|
68
108
|
type: DataTypes.DATE,
|
69
109
|
defaultValue: Date.now()
|
@@ -73,19 +113,28 @@ Transaction.init({
|
|
73
113
|
targetChainId: DataTypes.NUMBER,
|
74
114
|
targetTransactionHash: DataTypes.STRING,
|
75
115
|
targetBlockNumber: DataTypes.NUMBER,
|
76
|
-
targetStatus:
|
116
|
+
targetStatus: {
|
117
|
+
type: DataTypes.STRING,
|
118
|
+
defaultValue: 'uninitialised'
|
119
|
+
},
|
77
120
|
targetErrors: {
|
78
121
|
type: DataTypes.JSON,
|
79
122
|
// defaultValue: [],
|
80
123
|
},
|
124
|
+
targetLogs: {
|
125
|
+
type: DataTypes.JSON,
|
126
|
+
// defaultValue: [],
|
127
|
+
},
|
81
128
|
targetCreatedAt: DataTypes.DATE,
|
82
129
|
targetDelayUntil: DataTypes.DATE,
|
83
130
|
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
131
|
+
requestEvent: {
|
132
|
+
type: DataTypes.JSON,
|
133
|
+
allowNull: false
|
134
|
+
},
|
135
|
+
requestSentEvent: DataTypes.JSON,
|
136
|
+
committedEvent: DataTypes.JSON,
|
137
|
+
completedEvent: DataTypes.JSON,
|
89
138
|
|
90
139
|
status: {
|
91
140
|
type: DataTypes.STRING,
|
@@ -0,0 +1,155 @@
|
|
1
|
+
import abi from "@/abi";
|
2
|
+
import config from "@/config";
|
3
|
+
import { addresses, tokens } from "@/constants";
|
4
|
+
import { Transaction } from "@/db";
|
5
|
+
import { Erc20, InteropXContract } from "@/typechain";
|
6
|
+
import { ChainId } from "@/types";
|
7
|
+
import { getContract, getRpcProviderUrl, LiquidityError } from "@/utils";
|
8
|
+
import { BigNumber, ethers } from "ethers";
|
9
|
+
import { MetaTransaction, OperationType } from "ethers-multisend";
|
10
|
+
|
11
|
+
|
12
|
+
const getBridgeAmounts = async (user: string, tokens: string[], chainId: ChainId) => {
|
13
|
+
const sourceChainProvider = new ethers.providers.JsonRpcProvider(getRpcProviderUrl(chainId));
|
14
|
+
const sourceWallet = new ethers.Wallet(config.privateKey, sourceChainProvider);
|
15
|
+
const contractAddress = addresses[chainId].interopXContract;
|
16
|
+
const contract = getContract<InteropXContract>(contractAddress, abi.interopXContract, sourceWallet);
|
17
|
+
const data = await contract.getBridgeAmounts(user, tokens);
|
18
|
+
|
19
|
+
|
20
|
+
return data.map((item, index) => ({
|
21
|
+
token: tokens[index],
|
22
|
+
deposit: item.deposit,
|
23
|
+
withdraw: item.withdraw,
|
24
|
+
}))
|
25
|
+
}
|
26
|
+
|
27
|
+
export default async function (transaction: Transaction, type: 'source' | 'target') {
|
28
|
+
const transactions: MetaTransaction[] = [];
|
29
|
+
const logs: any[] = [];
|
30
|
+
|
31
|
+
if (transaction.actionId !== 'withdraw') {
|
32
|
+
throw new Error(`Invalid action: ${transaction.actionId}`)
|
33
|
+
}
|
34
|
+
|
35
|
+
if (type !== 'source') {
|
36
|
+
throw new Error(`[WIP] Type not supported: ${type}`)
|
37
|
+
}
|
38
|
+
|
39
|
+
if (transaction.sourceStatus === 'pending') {
|
40
|
+
throw Error('Source transaction already processesing')
|
41
|
+
}
|
42
|
+
|
43
|
+
if (transaction.sourceStatus === 'pending') {
|
44
|
+
throw Error('Source transaction already processed')
|
45
|
+
}
|
46
|
+
|
47
|
+
if (!transaction.requestEvent) {
|
48
|
+
throw Error('Something went wrong, source transaction has no request event')
|
49
|
+
}
|
50
|
+
|
51
|
+
const { actionId, bridger, position, sourceChainId, targetChainId, metadata } = transaction.requestEvent;
|
52
|
+
|
53
|
+
const sourceChainProvider = new ethers.providers.JsonRpcProvider(getRpcProviderUrl(sourceChainId as ChainId));
|
54
|
+
const sourceWallet = new ethers.Wallet(config.privateKey, sourceChainProvider);
|
55
|
+
const contractAddress = addresses[sourceChainId].interopXContract;
|
56
|
+
const contract = getContract<InteropXContract>(contractAddress, abi.interopXContract, sourceWallet);
|
57
|
+
|
58
|
+
const sourceToken = tokens[sourceChainId].find(t => t.address.toLowerCase() === position.withdraw[0].sourceToken.toLowerCase());
|
59
|
+
|
60
|
+
if (!sourceToken) {
|
61
|
+
throw Error('Source token not found')
|
62
|
+
}
|
63
|
+
|
64
|
+
const targetToken = tokens[targetChainId].find(t => t.address.toLowerCase() === position.withdraw[0].targetToken.toLowerCase());
|
65
|
+
|
66
|
+
if (!targetToken) {
|
67
|
+
throw Error('Target token not found')
|
68
|
+
}
|
69
|
+
|
70
|
+
if (!sourceToken.aliases.some(alias => targetToken.aliases.includes(alias))) {
|
71
|
+
throw Error('Source and target token must be the same')
|
72
|
+
}
|
73
|
+
|
74
|
+
const networks: ChainId[] = [137, 43114];
|
75
|
+
const networkUserData = {}
|
76
|
+
for (const network of networks) {
|
77
|
+
networkUserData[network] = await getBridgeAmounts(bridger, tokens[network].map(t => t.address), network)
|
78
|
+
}
|
79
|
+
|
80
|
+
for (const tokenSymbol of ["dai", "usdc", "usdt", "eth", "wbtc"]) {
|
81
|
+
let totalDeposit = BigNumber.from(0)
|
82
|
+
let totalWithdraw = BigNumber.from(0)
|
83
|
+
|
84
|
+
for (const network of networks) {
|
85
|
+
// on avax might we have 2 usdc/usdt tokens
|
86
|
+
const matchedTokens = tokens[network].filter(t => t.aliases.includes(tokenSymbol));
|
87
|
+
|
88
|
+
for (const matchedToken of matchedTokens) {
|
89
|
+
const data = networkUserData[network].find(t => t.token.toLowerCase() === matchedToken.address.toLowerCase());
|
90
|
+
|
91
|
+
if (data) {
|
92
|
+
totalDeposit = totalDeposit.add(data.deposit)
|
93
|
+
totalWithdraw = totalWithdraw.add(data.withdraw)
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
// on Mainent add weth too
|
98
|
+
if (tokenSymbol === "eth" && network === 1) {
|
99
|
+
const weth = tokens[1].find(t => t.symbol === 'WETH');
|
100
|
+
|
101
|
+
if (weth) {
|
102
|
+
const data = networkUserData[1].find(t => t.token.toLowerCase() === weth.address.toLowerCase());
|
103
|
+
|
104
|
+
if (data) {
|
105
|
+
totalDeposit = totalDeposit.add(data.deposit)
|
106
|
+
totalWithdraw = totalWithdraw.add(data.withdraw)
|
107
|
+
}
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
if (totalWithdraw.gt(totalDeposit)) {
|
113
|
+
throw Error(`if withdraw > deposit, user has debt and we can't process the withdraw and reject it`)
|
114
|
+
}
|
115
|
+
|
116
|
+
if (totalWithdraw.lt(totalDeposit)) {
|
117
|
+
throw Error('Something went wrong')
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
let balance = BigNumber.from(0);
|
122
|
+
|
123
|
+
if (position.withdraw[0].sourceToken.toLowerCase() === '0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE'.toLowerCase()) {
|
124
|
+
balance = await sourceChainProvider.getBalance(bridger);
|
125
|
+
|
126
|
+
} else {
|
127
|
+
const erc20 = getContract<Erc20>(position.withdraw[0].sourceToken, abi.erc20, sourceChainProvider);
|
128
|
+
balance = await erc20.balanceOf(addresses[sourceChainId].gnosisSafe);
|
129
|
+
}
|
130
|
+
|
131
|
+
if (balance.lt(position.withdraw[0].amount)) {
|
132
|
+
throw new LiquidityError()
|
133
|
+
}
|
134
|
+
|
135
|
+
|
136
|
+
const { data } = await contract.populateTransaction.withdrawRequested(
|
137
|
+
actionId,
|
138
|
+
bridger,
|
139
|
+
position.withdraw[0].sourceToken,
|
140
|
+
position.withdraw[0].targetToken,
|
141
|
+
position.withdraw[0].amount,
|
142
|
+
targetChainId,
|
143
|
+
transaction.requestTransactionHash,
|
144
|
+
metadata,
|
145
|
+
);
|
146
|
+
|
147
|
+
transactions.push({
|
148
|
+
to: contractAddress,
|
149
|
+
data: data!,
|
150
|
+
value: '0',
|
151
|
+
operation: OperationType.Call,
|
152
|
+
});
|
153
|
+
|
154
|
+
return { transactions, logs }
|
155
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { Transaction } from "@/db";
|
2
|
+
import { encodeMulti } from "ethers-multisend";
|
3
|
+
import actions from "./actions";
|
4
|
+
|
5
|
+
export const buildGnosisAction = async (transaction: Transaction, type: 'source' | 'target') => {
|
6
|
+
// type = type || (transaction.sourceStatus === 'success' ? 'target' : 'source')
|
7
|
+
|
8
|
+
if (actions.hasOwnProperty(transaction.actionId)) {
|
9
|
+
|
10
|
+
const { transactions, logs } = await actions[transaction.actionId](transaction, type);
|
11
|
+
|
12
|
+
return {
|
13
|
+
data: encodeMulti(transactions).data,
|
14
|
+
logs
|
15
|
+
};
|
16
|
+
}
|
17
|
+
|
18
|
+
throw new Error(`Unknown action: ${transaction.actionId}`);
|
19
|
+
}
|
package/src/index.ts
CHANGED
@@ -1,22 +1,7 @@
|
|
1
|
-
import
|
1
|
+
import './alias'
|
2
2
|
import expandHomeDir from "expand-home-dir";
|
3
3
|
import fs from 'fs-extra'
|
4
|
-
moduleAlias.addAliases({
|
5
|
-
"@/": __dirname + "/",
|
6
|
-
"@/logger": __dirname + "/logger",
|
7
|
-
"@/tasks": __dirname + "/tasks",
|
8
|
-
"@/utils": __dirname + "/utils",
|
9
|
-
"@/api": __dirname + "/api",
|
10
|
-
"@/net": __dirname + "/net",
|
11
|
-
"@/db": __dirname + "/db",
|
12
|
-
"@/config": __dirname + "/config",
|
13
|
-
"@/types": __dirname + "/types",
|
14
|
-
"@/abi": __dirname + "/abi",
|
15
|
-
"@/constants": __dirname + "/constants",
|
16
|
-
"@/typechain": __dirname + "/typechain"
|
17
|
-
})
|
18
4
|
|
19
|
-
moduleAlias();
|
20
5
|
import dotenv from "dotenv";
|
21
6
|
import chalk from 'chalk';
|
22
7
|
import { ethers } from "ethers";
|
@@ -44,7 +29,7 @@ const printUsage = () => {
|
|
44
29
|
|
45
30
|
console.log()
|
46
31
|
|
47
|
-
console.log(' PRIVATE_KEY=abcd1234 interop-x
|
32
|
+
console.log(' PRIVATE_KEY=abcd1234 interop-x Start the node with the given private key')
|
48
33
|
console.log(' PRIVATE_KEY=abcd1234 STAGING=true interop-x Start the node in staging mode')
|
49
34
|
console.log(' PRIVATE_KEY=abcd1234 AUTO_UPDATE=true interop-x Start the node in auto update mode')
|
50
35
|
console.log(' PRIVATE_KEY=abcd1234 API_HOST=0.0.0.0 API_PORT=8080 interop-x Start the node with custom API host and port')
|
@@ -104,7 +89,9 @@ async function main() {
|
|
104
89
|
|
105
90
|
const tasks = new Tasks()
|
106
91
|
|
107
|
-
|
92
|
+
setTimeout(() => {
|
93
|
+
tasks.start();
|
94
|
+
}, 10000)
|
108
95
|
|
109
96
|
startApiServer()
|
110
97
|
|
@@ -129,10 +116,12 @@ async function main() {
|
|
129
116
|
transaction.sourceStatus = payload.data.sourceStatus
|
130
117
|
transaction.sourceTransactionHash = payload.data.sourceTransactionHash
|
131
118
|
transaction.sourceErrors = payload.data.sourceErrors
|
119
|
+
transaction.sourceLogs = payload.data.sourceLogs
|
132
120
|
|
133
121
|
transaction.targetStatus = payload.data.targetStatus
|
134
122
|
transaction.targetTransactionHash = payload.data.targetTransactionHash
|
135
123
|
transaction.targetErrors = payload.data.targetErrors
|
124
|
+
transaction.targetLogs = payload.data.targetLogs
|
136
125
|
|
137
126
|
transaction.status = payload.data.status
|
138
127
|
|
@@ -2,12 +2,13 @@ import { BaseDialProtocol } from "./BaseDialProtocol";
|
|
2
2
|
import wait from "waait";
|
3
3
|
import config from "@/config";
|
4
4
|
import { Transaction } from "@/db";
|
5
|
-
import {
|
5
|
+
import { signGnosisSafeTx } from "@/utils";
|
6
6
|
import { addresses } from "@/constants";
|
7
7
|
import { ChainId } from "@/types";
|
8
|
+
import { buildGnosisAction } from "@/gnosis";
|
8
9
|
|
9
10
|
export interface ISignatureRequest {
|
10
|
-
type: 'source' | 'target'
|
11
|
+
type: 'source' | 'target',
|
11
12
|
transactionHash: string
|
12
13
|
safeTxGas: string
|
13
14
|
safeNonce: string
|
@@ -25,6 +26,10 @@ export class SignatureDialProtocol extends BaseDialProtocol<ISignatureRequest, I
|
|
25
26
|
}
|
26
27
|
|
27
28
|
async response(data: ISignatureRequest): Promise<ISignatureResponse> {
|
29
|
+
console.log({
|
30
|
+
tag: 'SignatureDialProtocol',
|
31
|
+
data
|
32
|
+
})
|
28
33
|
const signer = config.wallet;
|
29
34
|
|
30
35
|
let transaction: Transaction | null;
|
@@ -46,19 +51,12 @@ export class SignatureDialProtocol extends BaseDialProtocol<ISignatureRequest, I
|
|
46
51
|
error: 'Event not found'
|
47
52
|
};
|
48
53
|
}
|
49
|
-
|
50
|
-
console.log("signing:", {
|
51
|
-
to: addresses[transaction.targetChainId].multisend,
|
52
|
-
data: await buildDataForTransaction(transaction, data.type),
|
53
|
-
chainId: transaction.targetChainId as ChainId,
|
54
|
-
safeTxGas: data.safeTxGas,
|
55
|
-
nonce: data.safeNonce,
|
56
|
-
});
|
54
|
+
const { data: gnosisData } = await buildGnosisAction(transaction, data.type);
|
57
55
|
|
58
56
|
const signedData = await signGnosisSafeTx({
|
59
|
-
to: addresses[transaction.
|
60
|
-
data:
|
61
|
-
chainId: transaction.
|
57
|
+
to: addresses[transaction.sourceChainId].multisend,
|
58
|
+
data: gnosisData,
|
59
|
+
chainId: transaction.sourceChainId as ChainId,
|
62
60
|
safeTxGas: data.safeTxGas,
|
63
61
|
nonce: data.safeNonce,
|
64
62
|
}, { signer });
|
package/src/net/protocol/dial/{SignatureDialProtocol.1.ts → TransactionStatusDialProtocol.ts}
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { BaseDialProtocol } from "./BaseDialProtocol";
|
2
2
|
import { Transaction } from "@/db";
|
3
3
|
|
4
|
-
export class TransactionStatusDialProtocol extends BaseDialProtocol<string, Pick<Transaction, 'transactionHash' | 'sourceStatus' | 'sourceTransactionHash' | 'sourceErrors' | 'targetStatus' | 'targetTransactionHash' | 'targetErrors' | 'status'> | null> {
|
4
|
+
export class TransactionStatusDialProtocol extends BaseDialProtocol<string, Pick<Transaction, 'transactionHash' | 'sourceStatus' | 'sourceTransactionHash' | 'sourceErrors' | 'sourceLogs' | 'targetStatus' | 'targetTransactionHash' | 'targetErrors' | 'targetLogs' | 'status'> | null> {
|
5
5
|
protected timeout = 30000;
|
6
6
|
|
7
7
|
constructor(libp2p) {
|
@@ -20,10 +20,12 @@ export class TransactionStatusDialProtocol extends BaseDialProtocol<string, Pick
|
|
20
20
|
sourceStatus: transaction.sourceStatus,
|
21
21
|
sourceTransactionHash: transaction.sourceTransactionHash,
|
22
22
|
sourceErrors: transaction.sourceErrors,
|
23
|
+
sourceLogs: transaction.sourceLogs,
|
23
24
|
|
24
25
|
targetStatus: transaction.targetStatus,
|
25
26
|
targetTransactionHash: transaction.targetTransactionHash,
|
26
27
|
targetErrors: transaction.targetErrors,
|
28
|
+
targetLogs: transaction.targetLogs,
|
27
29
|
|
28
30
|
status: transaction.status,
|
29
31
|
}
|
@@ -6,7 +6,7 @@ import { IPeerInfo, peerPool } from "..";
|
|
6
6
|
import config from "@/config";
|
7
7
|
import { Event } from "@/types";
|
8
8
|
import { Transaction } from "@/db";
|
9
|
-
import { TransactionStatusDialProtocol } from "./dial/
|
9
|
+
import { TransactionStatusDialProtocol } from "./dial/TransactionStatusDialProtocol";
|
10
10
|
|
11
11
|
export interface ProtocolOptions {
|
12
12
|
/* Handshake timeout in ms (default: 8000) */
|
@@ -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 {
|
@@ -66,25 +66,35 @@ class Protocol extends EventEmitter {
|
|
66
66
|
Buffer.from(transaction.transactionHash),
|
67
67
|
|
68
68
|
Buffer.from(transaction.sourceStatus),
|
69
|
-
Buffer.from(transaction.sourceTransactionHash),
|
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
|
-
Buffer.from(transaction.targetTransactionHash),
|
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
|
-
sourceTransactionHash: sourceTransactionHash.toString(),
|
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(),
|
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
|
}),
|