From 88383caaff1eb88cac0d77316c7173b95ab004c8 Mon Sep 17 00:00:00 2001 From: Pierre Bertet Date: Thu, 11 Apr 2024 09:53:46 +0100 Subject: [PATCH] Remove the Tenderly preset from ./deploy (#105) --- contracts/utils/deploy-cli.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/contracts/utils/deploy-cli.ts b/contracts/utils/deploy-cli.ts index 46dc2001..a7db6e93 100644 --- a/contracts/utils/deploy-cli.ts +++ b/contracts/utils/deploy-cli.ts @@ -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 @@ -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;