Skip to content

Commit

Permalink
Remove the Tenderly preset from ./deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
bpierre committed Apr 10, 2024
1 parent 04321a7 commit d6524b1
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions contracts/utils/deploy-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ Arguments:
network presets. Available presets:
- local: Deploy to a local network
- mainnet: Deploy to the Ethereum mainnet
- tenderly-devnet: Deploy to a Tenderly devnet
- liquity-testnet: Deploy to the Liquity v2 testnet
Expand Down Expand Up @@ -63,19 +62,6 @@ export async function main() {
options.verifierUrl ??= "https://testnet.liquity.org/sourcify/server";
}

// network preset: tenderly-devnet
if (networkPreset === "tenderly-devnet") {
options.chainId ??= 1;
options.rpcUrl ??= (
await $`tenderly devnet spawn-rpc ${[
"--project",
"project",
"--template",
"liquity2",
]} 2>&1`.quiet()
).stdout.trim();
}

// network preset: mainnet
if (networkPreset === "mainnet") {
options.chainId ??= 1;
Expand Down

0 comments on commit d6524b1

Please sign in to comment.