From cac59fa9810c8e83bfc0f5fa1e5523b47b28ade3 Mon Sep 17 00:00:00 2001 From: ronaldsg Date: Tue, 17 Dec 2024 13:35:44 -0500 Subject: [PATCH] Restore config for Flyover network and setting up LBC address for testnet --- .github/workflows/deploy_staging_TestNet_UI.yml | 2 +- src/common/services/FlyoverService.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy_staging_TestNet_UI.yml b/.github/workflows/deploy_staging_TestNet_UI.yml index b0e86668..fb959e85 100644 --- a/.github/workflows/deploy_staging_TestNet_UI.yml +++ b/.github/workflows/deploy_staging_TestNet_UI.yml @@ -52,7 +52,7 @@ jobs: VUE_APP_FAST_MINING_BLOCK=1 VUE_APP_AVERAGE_MINING_BLOCK=3 VUE_APP_SLOW_MINING_BLOCK=5 - VUE_APP_LBC_ADDRESS='0x18D8212bC00106b93070123f325021C723D503a3' + VUE_APP_LBC_ADDRESS='0xc2A630c053D12D63d32b025082f6Ba268db18300' VUE_APP_FLYOVER_PEGOUT_QUOTE_DIFF_PERCENTAGE=20 npm run-script build diff --git a/src/common/services/FlyoverService.ts b/src/common/services/FlyoverService.ts index 559844ef..97d839eb 100644 --- a/src/common/services/FlyoverService.ts +++ b/src/common/services/FlyoverService.ts @@ -63,9 +63,8 @@ export default class FlyoverService { connectionPromise .then((connection) => { this.flyover = new Flyover({ - network: 'Development', rskConnection: connection as BlockchainConnection, - // network: this.flyoverNetwork, + network: this.flyoverNetwork, captchaTokenResolver: this.tokenResolver.bind(this), disableChecksum: true, });