From e5f0a50011559d5a3e5ef76f0741b938b4a548fd Mon Sep 17 00:00:00 2001 From: sneurlax Date: Fri, 28 Jun 2024 21:18:18 -0500 Subject: [PATCH] add kNanoSwapRpcApiKey to windows prebuild --- scripts/prebuild.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prebuild.ps1 b/scripts/prebuild.ps1 index 80a6991b7..aa5492834 100644 --- a/scripts/prebuild.ps1 +++ b/scripts/prebuild.ps1 @@ -2,7 +2,7 @@ $KEYS = "..\lib\external_api_keys.dart" if (-not (Test-Path $KEYS)) { Write-Host "prebuild.ps1: creating template lib/external_api_keys.dart file" - "const kChangeNowApiKey = '';" + "`nconst kSimpleSwapApiKey = '';" | Out-File $KEYS -Encoding UTF8 + "const kChangeNowApiKey = '';" + "`nconst kSimpleSwapApiKey = '';" + "const kNanoSwapRpcApiKey = '';" | Out-File $KEYS -Encoding UTF8 } # Create template wallet test parameter files if they don't already exist