-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Crisgarner
committed
Jul 7, 2023
1 parent
200aa95
commit 2497956
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// run with | ||
// npx hardhat run ./scripts/CIP-22.ts --network hardhat | ||
import hre, { deployments, network, hardhatArguments } from "hardhat"; | ||
import { | ||
castVote, | ||
createProposal, | ||
executeProposal, | ||
fundMultisign, | ||
queueProposal, | ||
} from "./utils"; | ||
import { BigNumber } from "ethers"; | ||
|
||
async function main() { | ||
const ethers = hre.ethers; | ||
let multisig = "0xa70b638B70154EdfCbb8DbbBd04900F328F32c35"; | ||
let ctxAmount = ethers.utils.parseEther("195625"); | ||
let ethAmount = ethers.utils.parseEther("7.3") | ||
let ctx = await deployments.get("Ctx"); | ||
let ctxContract = await ethers.getContractAt("Ctx", ctx.address); | ||
|
||
const abi = new ethers.utils.AbiCoder(); | ||
const targets = [multisig, ctx.address]; | ||
const values = [ethAmount, BigNumber.from(0)]; | ||
const signatures = ["", "transfer(address,uint256)"]; | ||
const calldatas = [ | ||
"0x000000000000000000000000000000000000000000000000000000000000000000000000", | ||
abi.encode(["address", "uint256"], [multisig, ctxAmount]), | ||
]; | ||
const description = | ||
"CIP-22: 2023 Operating Expenditures Treasury Transfers for Q3"; | ||
console.log(targets); | ||
console.log(values.toString()); | ||
console.log(signatures); | ||
console.log(calldatas); | ||
console.log(description); | ||
|
||
let ctxbalance = await ctxContract.balanceOf(multisig); | ||
console.log("multisig old CTX balance", ethers.utils.formatEther(ctxbalance)); | ||
let ethBalance = await ethers.provider.getBalance(multisig); | ||
console.log("multisig old ETH balance", ethers.utils.formatEther(ethBalance)); | ||
if (hardhatArguments.network === "hardhat") { | ||
//Fund Multisign with ETH | ||
await fundMultisign("10000000000000000000"); | ||
|
||
// Create Proposal | ||
await createProposal(targets, values, signatures, calldatas, description); | ||
|
||
// Vote | ||
await castVote(13, true); | ||
|
||
// Wait to queue | ||
await queueProposal(13); | ||
|
||
// Execute transaction | ||
await executeProposal(13); | ||
|
||
// Validate Results | ||
console.log("==================Check Results=================="); | ||
|
||
ctxbalance = await ctxContract.balanceOf(multisig); | ||
console.log( | ||
"multisig new CTX balance", | ||
ethers.utils.formatEther(ctxbalance) | ||
); | ||
ethBalance = await ethers.provider.getBalance(multisig); | ||
console.log( | ||
"multisig new ETH balance", | ||
ethers.utils.formatEther(ethBalance) | ||
); | ||
} | ||
} | ||
|
||
main() | ||
.then(() => process.exit(0)) | ||
.catch((error) => { | ||
console.error(error); | ||
process.exit(1); | ||
}); |