-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbridge-script.ts
250 lines (210 loc) · 7.14 KB
/
bridge-script.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
// Usage: npx ts-node app/deploy/devnet/tests/bridge-script.ts
import {
EthCallData,
EthCallWithFinalityQueryRequest,
PerChainQueryRequest,
QueryRequest,
signaturesToEvmStruct,
QueryResponse,
signaturesToSolanaArray,
} from "@wormhole-foundation/wormhole-query-sdk";
import axios from "axios";
import { ethers } from "ethers";
import select from "@inquirer/select";
import input from "@inquirer/input";
import "dotenv/config";
import { Keypair } from "@solana/web3.js";
import { Connection } from "@solana/web3.js";
import {
CORE_BRIDGE_PID,
HUB_PROPOSAL_METADATA_ADDRESS,
RPC_NODE,
} from "../constants";
import { getWormholeBridgeData } from "../../../helpers/wormholeBridgeConfig";
import { deriveGuardianSetKey } from "../../../helpers/guardianSet";
const API_KEY = process.env.WORMHOLE_API_KEY as string;
const scripts: {
[key: string]: (
chain: number,
proposalId: string,
contractAddress: string,
) => Promise<string>;
} = {
proposal: async (chain, proposalId, contractAddress) => {
const rpc = process.env[`RPC_${chain}`];
if (!rpc) {
throw new Error(`RPC endpoint not found for chain ${chain}`);
}
const encodedSignature = encodeSignature("getProposalMetadata(uint256)");
console.log("encodedSignature:", encodedSignature);
const encodedParameters = new ethers.AbiCoder().encode(
["uint256"],
[proposalId],
);
console.log("encodedParameters:", encodedParameters);
const calldata: EthCallData = {
to: contractAddress,
data: encodeCalldata(encodedSignature, encodedParameters),
};
const latestBlock = await getLatestBlock(rpc);
const result = await getWormholeQuery(chain, latestBlock, calldata);
console.log("Query response: ", result);
const queryResponse = QueryResponse.from(Buffer.from(result.bytes, "hex"));
console.log("queryResponse:", queryResponse);
const solRequest = queryResponse.request.requests[0].query;
const solResponse = queryResponse.responses[0].response;
console.log("solRequest:", solRequest);
console.log("solResponse:", solResponse);
const signaturesKeypair = Keypair.generate();
const signatureData = signaturesToSolanaArray(result.signatures);
const ethProposalResponseBytes = Buffer.from(result.bytes, "hex");
const proposalIdArray = Buffer.from(encodedParameters, "hex");
const connection = new Connection(RPC_NODE);
const info = await getWormholeBridgeData(connection, CORE_BRIDGE_PID);
let guardianSetIndex = info.guardianSetIndex;
const guardianSet = deriveGuardianSetKey(
CORE_BRIDGE_PID,
guardianSetIndex,
);
console.log(`
In Solana:
1) save signatures in solana account:
result.signatures: ${result.signatures}
const signatureData = signaturesToSolanaArray(result.signatures);
const randomSeed = crypto.randomBytes(32);
program.methods
.postSignatures(signatureData, signatureData.length, Array.from(randomSeed))
.accounts({ payer: this.userPublicKey() })
.rpc();
2) call addProposal instruction:
const ethProposalResponseBytes = Buffer.from(result.bytes, "hex");
const proposalIdArray = Buffer.from(encodedParameters, "hex");
guardianSetIndex: ${guardianSetIndex}
guardianSet: ${guardianSet}
const proposalAccount = PublicKey.findProgramAddressSync(
[Buffer.from("proposal"), proposalIdArray],
program.programId,
)[0];
const [guardianSignaturesPda] = await PublicKey.findProgramAddress(
[
Buffer.from("guardian_signatures"),
this.userPublicKey().toBuffer(),
randomSeed,
],
program.programId
);
program.methods
.addProposal(
ethProposalResponseBytes,
proposalIdArray,
guardianSetIndex,
)
.accountsPartial({
proposal: proposalAccount,
guardianSignatures: guardianSignaturesPda,
guardianSet: guardianSet,
});
`);
return `In EVM chains: you can now call addProposal in evm with the following parameters:\n_queryResponseRaw: 0x${result.bytes}\n_signatures: ${JSON.stringify(signaturesToEvmStruct(result.signatures))}`;
},
votes: async (chain, proposalId, contractAddress) => {
const rpc = process.env[`RPC_${chain}`];
if (!rpc) {
throw new Error(`RPC endpoint not found for chain ${chain}`);
}
const encodedSignature = encodeSignature("proposalVotes(uint256)");
const encodedParameters = new ethers.AbiCoder().encode(
["uint256"],
[proposalId],
);
const calldata: EthCallData = {
to: contractAddress,
data: encodeCalldata(encodedSignature, encodedParameters),
};
const latestBlock = await getLatestBlock(rpc);
const result = await getWormholeQuery(chain, latestBlock, calldata);
return `You can now call crossChainEVMVote with the following parameters:\n_queryResponseRaw: 0x${result.bytes}\n_signatures: ${JSON.stringify(signaturesToEvmStruct(result.signatures))}`;
},
};
async function main() {
const bridgeType = await select({
message: "What would you like to bridge?",
choices: [
{
name: "proposal",
value: "proposal",
},
{
name: "votes",
value: "votes",
},
],
});
const chain = await select({
message: "What chain are you bridging from?",
choices: [
{ value: 10002, name: "sepolia" },
{ value: 2, name: "ethereum mainnet" },
{ value: 4, name: "binance smart chain" },
{ value: 5, name: "polygon" },
{ value: 6, name: "avalanche" },
{ value: 14, name: "celo" },
{ value: 23, name: "arbitrum" },
{ value: 24, name: "optimism" },
{ value: 25, name: "gnosis" },
{ value: 30, name: "base" },
{ value: 34, name: "scroll" },
{ value: 35, name: "mantle" },
{ value: 36, name: "blast" },
{ value: 10003, name: "arbitrum sepolia" },
{ value: 10005, name: "optimism sepolia" },
],
});
const proposalId = await input({ message: "Enter the proposal id:" });
// const contractAddress = await input({
// message: "Enter the contract address:",
// });
const contractAddress = HUB_PROPOSAL_METADATA_ADDRESS;
console.log(await scripts[bridgeType](chain, proposalId, contractAddress));
}
main();
function encodeSignature(signature: string): string {
return ethers.id(signature).substring(0, 10);
}
function encodeCalldata(signature: string, parameters: string): string {
return signature + parameters.substring(2);
}
async function getLatestBlock(rpc: string): Promise<number> {
return (
await axios.post(rpc, {
method: "eth_getBlockByNumber",
params: ["finalized", false],
id: 1,
jsonrpc: "2.0",
})
).data?.result?.number;
}
async function getWormholeQuery(
chain: number,
latestBlock: number,
calldata: EthCallData,
) {
const request = new QueryRequest(
0, // nonce
[
new PerChainQueryRequest(
chain, // Ethereum Wormhole Chain ID
new EthCallWithFinalityQueryRequest(latestBlock, "finalized", [
calldata,
]),
),
],
).serialize();
return (
await axios.post(
"https://testnet.query.wormhole.com/v1/query",
{ bytes: Buffer.from(request).toString("hex") },
{ headers: { "X-API-Key": API_KEY } },
)
).data;
}