From 5e6e7a317528ee27389583b426b8f716075475be Mon Sep 17 00:00:00 2001 From: YaroShkvorets Date: Sun, 29 Dec 2024 00:32:52 -0500 Subject: [PATCH] adjust proxy message --- packages/cli/src/commands/add.ts | 2 +- packages/cli/src/commands/init.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/src/commands/add.ts b/packages/cli/src/commands/add.ts index a3d1bd17..ac0405e4 100644 --- a/packages/cli/src/commands/add.ts +++ b/packages/cli/src/commands/add.ts @@ -113,7 +113,7 @@ export default class AddCommand extends Command { ); if (impl) { const useImplementation = await prompt.confirm( - `Proxy contract detected. Index implementation contract at ${impl}?`, + `Proxy contract detected. Use current implementation contract ABI at ${impl}?`, true, ); diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/init.ts index bcdcaf27..30c5fef6 100644 --- a/packages/cli/src/commands/init.ts +++ b/packages/cli/src/commands/init.ts @@ -636,7 +636,7 @@ async function processInitForm( initDebugger.extend('processInitForm')("proxyImplementation: '%s'", impl); if (impl) { const useImplementation = await prompt.confirm( - `Proxy contract detected. Index implementation contract at ${impl}?`, + `Proxy contract detected. Use current implementation contract ABI at ${impl}?`, true, );