-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path05_proposalQueue.ts
91 lines (80 loc) · 2.69 KB
/
05_proposalQueue.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
// Usage: npx ts-node app/e2e/05_proposalQueue.ts
import { ethers } from "ethers";
import * as fs from "fs";
import "dotenv/config";
import {
HUB_SOLANA_MESSAGE_DISPATCHER_ADDRESS,
HUB_GOVERNOR_ADDRESS,
HUB_CHAIN_ID,
} from "../deploy/devnet/constants";
import input from "@inquirer/input";
const HubGovernorAbiPath = "./app/e2e/abi/HubGovernor.json";
const HubGovernorAbi = JSON.parse(fs.readFileSync(HubGovernorAbiPath, "utf8"));
const HubSolanaMessageDispatcherAbi = [
"function dispatch(bytes _payload) external payable",
];
const rpcUrl = process.env[`RPC_${HUB_CHAIN_ID}`];
if (!rpcUrl) {
throw new Error(`RPC endpoint not found for chain ${HUB_CHAIN_ID}`);
}
const ProposalStateNames = [
"Pending", // 0
"Active", // 1
"Canceled", // 2
"Defeated", // 3
"Succeeded", // 4
"Queued", // 5
"Expired", // 6
"Executed", // 7
];
async function proposalQueue(): Promise<void> {
try {
const provider = new ethers.JsonRpcProvider(rpcUrl);
const wallet = new ethers.Wallet(process.env.PRIVATE_KEY!, provider);
const contract = new ethers.Contract(
HUB_GOVERNOR_ADDRESS,
HubGovernorAbi,
wallet,
);
const proposalId = await input({ message: "Enter the proposal id:" });
let proposalIdHex = BigInt(proposalId).toString(16).padStart(64, "0");
// console.log("proposalIdHex:", proposalIdHex);
const proposalStateNumber = (
await contract.state.staticCall(proposalId)
).toString();
console.log(
"Proposal State:",
ProposalStateNames[parseInt(proposalStateNumber)],
);
console.log(
"proposalVotes(proposalId):",
await contract.proposalVotes.staticCall(proposalId),
);
const fileName = `./app/e2e/log/${proposalId.toString()}.json`;
if (!fs.existsSync(fileName))
throw new Error(`Proposal file not found: ${fileName}`);
const savedProposalData = JSON.parse(fs.readFileSync(fileName, "utf8"));
console.log("savedProposalData:", savedProposalData);
// encoding payload with solana calldata
const iface = new ethers.Interface(HubSolanaMessageDispatcherAbi);
const calldata = iface.encodeFunctionData("dispatch", [
savedProposalData.solanaPayloadHex,
]);
const descriptionHash = ethers.keccak256(
ethers.toUtf8Bytes(savedProposalData.proposalName),
);
const executeProposalPayload = [
[HUB_SOLANA_MESSAGE_DISPATCHER_ADDRESS],
[0],
[calldata],
descriptionHash,
];
console.log("Queueing a proposal...");
await contract.queue.staticCall(...executeProposalPayload);
const queue_tx = await contract.queue(...executeProposalPayload);
console.log(queue_tx);
} catch (error) {
console.error(error);
}
}
proposalQueue();