Skip to content

Commit

Permalink
Change merkle scripts to use base
Browse files Browse the repository at this point in the history
  • Loading branch information
youngkidwarrior committed Oct 26, 2024
1 parent 26df5b1 commit 220feaa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test:cov": "forge coverage --report lcov",
"lint": "forge fmt --check && solhint {script,src,test}/**/*.sol",
"lint:fix": "forge fmt && solhint --fix {script,src,test}/**/*.sol",
"dev:deploy-send-merkle-drop": "forge script ./packages/contracts/script/DeploySendMerkleDrop.s.sol:DeploySendMerkleDropScript -vvvv --fork-url http://localhost:8545 --sender 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 --broadcast",
"dev:deploy-send-merkle-drop": "forge script ./packages/contracts/script/DeploySendMerkleDrop.s.sol:DeploySendMerkleDropScript -vvvv --fork-url http://localhost:8546 --sender 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 --broadcast",
"dev:create-tranche": "echo Not implemented yet && exit 1",
"dev:anvil-base-node": "bun run ./script/anvil-base-node.ts",
"dev:anvil-add-send-merkle-drop-fixtures": "bun run ./script/anvil-add-send-merkle-drop-fixtures.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $.verbose = true
* This script is used to deploy the SendMerkleDrop contract and add a tranche to the airdrop. It should be adapted as things are deployed to mainnet.
*/

const AIRDROP_MULTISIG_SAFE = '0x077c4E5983e5c495599C1Eb5c1511A52C538eB50'
const AIRDROP_MULTISIG_SAFE = '0xD3DCFf1823714a4399AD2927A3800686D4CEB53A'

void (async function main() {
console.log(chalk.blue('Enable auto-mining...'))
Expand Down Expand Up @@ -80,9 +80,9 @@ void (async function main() {
throw distributionError
}

console.log(chalk.red('TODO(@0xBigBoss) move this to the trpc API'))
process.exit(1)
return
// console.log(chalk.red('TODO(@0xBigBoss) move this to the trpc API'))
// process.exit(1)
// return

// biome-ignore lint/correctness/noUnreachable: still cooking
console.log(chalk.blue('Geting distribution merkle root from API'))
Expand Down

0 comments on commit 220feaa

Please sign in to comment.