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;