From c19a94373335ceac6f2881f56ffdc4b737a159a3 Mon Sep 17 00:00:00 2001 From: Alex Braz <alexjavabraz@gmail.com> Date: Thu, 17 Oct 2024 18:12:57 -0300 Subject: [PATCH 1/3] adding configuration changes --- .github/workflows/deploy_MainNet_UI.yml | 3 +++ .github/workflows/deploy_TestNet_UI.yml | 3 +++ .github/workflows/deploy_staging_MainNet_UI.yml | 3 +++ .github/workflows/deploy_staging_TestNet_UI.yml | 3 +++ 4 files changed, 12 insertions(+) diff --git a/.github/workflows/deploy_MainNet_UI.yml b/.github/workflows/deploy_MainNet_UI.yml index 26f3073e..7f2b4074 100644 --- a/.github/workflows/deploy_MainNet_UI.yml +++ b/.github/workflows/deploy_MainNet_UI.yml @@ -48,6 +48,9 @@ jobs: VUE_APP_PEGOUT_MAX_AMOUNT_ALLOWED_IN_RBTC=10 VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005 VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 + VUE_APP_FAST_MINING_BLOCK=1 + VUE_APP_AVERAGE_MINING_BLOCK=1 + VUE_APP_SLOW_MINING_BLOCK=1 VUE_APP_LBC_ADDRESS='0xAA9cAf1e3967600578727F975F283446A3Da6612' npm run-script build diff --git a/.github/workflows/deploy_TestNet_UI.yml b/.github/workflows/deploy_TestNet_UI.yml index 818fe5f2..ebad27f0 100644 --- a/.github/workflows/deploy_TestNet_UI.yml +++ b/.github/workflows/deploy_TestNet_UI.yml @@ -48,6 +48,9 @@ jobs: VUE_APP_PEGOUT_MAX_AMOUNT_ALLOWED_IN_RBTC=10 VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005 VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 + VUE_APP_FAST_MINING_BLOCK=1 + VUE_APP_AVERAGE_MINING_BLOCK=1 + VUE_APP_SLOW_MINING_BLOCK=1 VUE_APP_LBC_ADDRESS='0xc2A630c053D12D63d32b025082f6Ba268db18300' npm run-script build diff --git a/.github/workflows/deploy_staging_MainNet_UI.yml b/.github/workflows/deploy_staging_MainNet_UI.yml index 64b4330b..d88a707d 100644 --- a/.github/workflows/deploy_staging_MainNet_UI.yml +++ b/.github/workflows/deploy_staging_MainNet_UI.yml @@ -48,6 +48,9 @@ jobs: VUE_APP_PEGOUT_MAX_AMOUNT_ALLOWED_IN_RBTC=10 VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005 VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 + VUE_APP_FAST_MINING_BLOCK=1 + VUE_APP_AVERAGE_MINING_BLOCK=1 + VUE_APP_SLOW_MINING_BLOCK=1 VUE_APP_LBC_ADDRESS='0xAA9cAf1e3967600578727F975F283446A3Da6612' npm run-script build diff --git a/.github/workflows/deploy_staging_TestNet_UI.yml b/.github/workflows/deploy_staging_TestNet_UI.yml index ed0ac4c4..3f41ed46 100644 --- a/.github/workflows/deploy_staging_TestNet_UI.yml +++ b/.github/workflows/deploy_staging_TestNet_UI.yml @@ -48,6 +48,9 @@ jobs: VUE_APP_PEGOUT_MAX_AMOUNT_ALLOWED_IN_RBTC=10 VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005 VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 + VUE_APP_FAST_MINING_BLOCK=1 + VUE_APP_AVERAGE_MINING_BLOCK=1 + VUE_APP_SLOW_MINING_BLOCK=1 VUE_APP_LBC_ADDRESS='0xc2A630c053D12D63d32b025082f6Ba268db18300' npm run-script build From 5987cfe61601d4c352cca38ab323a1de592a6909 Mon Sep 17 00:00:00 2001 From: Alex Braz <alexjavabraz@gmail.com> Date: Thu, 17 Oct 2024 18:37:29 -0300 Subject: [PATCH 2/3] adjusting fees --- .github/workflows/deploy_TestNet_UI.yml | 4 ++-- .github/workflows/deploy_staging_MainNet_UI.yml | 4 ++-- .github/workflows/deploy_staging_TestNet_UI.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy_TestNet_UI.yml b/.github/workflows/deploy_TestNet_UI.yml index ebad27f0..66592cb7 100644 --- a/.github/workflows/deploy_TestNet_UI.yml +++ b/.github/workflows/deploy_TestNet_UI.yml @@ -49,8 +49,8 @@ jobs: VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005 VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 VUE_APP_FAST_MINING_BLOCK=1 - VUE_APP_AVERAGE_MINING_BLOCK=1 - VUE_APP_SLOW_MINING_BLOCK=1 + VUE_APP_AVERAGE_MINING_BLOCK=3 + VUE_APP_SLOW_MINING_BLOCK=4 VUE_APP_LBC_ADDRESS='0xc2A630c053D12D63d32b025082f6Ba268db18300' npm run-script build diff --git a/.github/workflows/deploy_staging_MainNet_UI.yml b/.github/workflows/deploy_staging_MainNet_UI.yml index d88a707d..6066ed1f 100644 --- a/.github/workflows/deploy_staging_MainNet_UI.yml +++ b/.github/workflows/deploy_staging_MainNet_UI.yml @@ -49,8 +49,8 @@ jobs: VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005 VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 VUE_APP_FAST_MINING_BLOCK=1 - VUE_APP_AVERAGE_MINING_BLOCK=1 - VUE_APP_SLOW_MINING_BLOCK=1 + VUE_APP_AVERAGE_MINING_BLOCK=3 + VUE_APP_SLOW_MINING_BLOCK=4 VUE_APP_LBC_ADDRESS='0xAA9cAf1e3967600578727F975F283446A3Da6612' npm run-script build diff --git a/.github/workflows/deploy_staging_TestNet_UI.yml b/.github/workflows/deploy_staging_TestNet_UI.yml index 3f41ed46..d360c0fb 100644 --- a/.github/workflows/deploy_staging_TestNet_UI.yml +++ b/.github/workflows/deploy_staging_TestNet_UI.yml @@ -49,8 +49,8 @@ jobs: VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005 VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 VUE_APP_FAST_MINING_BLOCK=1 - VUE_APP_AVERAGE_MINING_BLOCK=1 - VUE_APP_SLOW_MINING_BLOCK=1 + VUE_APP_AVERAGE_MINING_BLOCK=3 + VUE_APP_SLOW_MINING_BLOCK=4 VUE_APP_LBC_ADDRESS='0xc2A630c053D12D63d32b025082f6Ba268db18300' npm run-script build From 03572559eedab9784961f77197018824bdd35682 Mon Sep 17 00:00:00 2001 From: Alex Braz <alexjavabraz@gmail.com> Date: Thu, 17 Oct 2024 18:39:17 -0300 Subject: [PATCH 3/3] adjusting fees --- .github/workflows/deploy_MainNet_UI.yml | 4 ++-- .github/workflows/deploy_TestNet_UI.yml | 2 +- .github/workflows/deploy_staging_MainNet_UI.yml | 2 +- .github/workflows/deploy_staging_TestNet_UI.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy_MainNet_UI.yml b/.github/workflows/deploy_MainNet_UI.yml index 7f2b4074..63cb478e 100644 --- a/.github/workflows/deploy_MainNet_UI.yml +++ b/.github/workflows/deploy_MainNet_UI.yml @@ -49,8 +49,8 @@ jobs: VUE_APP_PEGIN_MIN_AMOUNT_ALLOWED_IN_BTC=0.005 VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 VUE_APP_FAST_MINING_BLOCK=1 - VUE_APP_AVERAGE_MINING_BLOCK=1 - VUE_APP_SLOW_MINING_BLOCK=1 + VUE_APP_AVERAGE_MINING_BLOCK=3 + VUE_APP_SLOW_MINING_BLOCK=5 VUE_APP_LBC_ADDRESS='0xAA9cAf1e3967600578727F975F283446A3Da6612' npm run-script build diff --git a/.github/workflows/deploy_TestNet_UI.yml b/.github/workflows/deploy_TestNet_UI.yml index 66592cb7..e54d7f7e 100644 --- a/.github/workflows/deploy_TestNet_UI.yml +++ b/.github/workflows/deploy_TestNet_UI.yml @@ -50,7 +50,7 @@ jobs: VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 VUE_APP_FAST_MINING_BLOCK=1 VUE_APP_AVERAGE_MINING_BLOCK=3 - VUE_APP_SLOW_MINING_BLOCK=4 + VUE_APP_SLOW_MINING_BLOCK=5 VUE_APP_LBC_ADDRESS='0xc2A630c053D12D63d32b025082f6Ba268db18300' npm run-script build diff --git a/.github/workflows/deploy_staging_MainNet_UI.yml b/.github/workflows/deploy_staging_MainNet_UI.yml index 6066ed1f..40c33dc7 100644 --- a/.github/workflows/deploy_staging_MainNet_UI.yml +++ b/.github/workflows/deploy_staging_MainNet_UI.yml @@ -50,7 +50,7 @@ jobs: VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 VUE_APP_FAST_MINING_BLOCK=1 VUE_APP_AVERAGE_MINING_BLOCK=3 - VUE_APP_SLOW_MINING_BLOCK=4 + VUE_APP_SLOW_MINING_BLOCK=5 VUE_APP_LBC_ADDRESS='0xAA9cAf1e3967600578727F975F283446A3Da6612' npm run-script build diff --git a/.github/workflows/deploy_staging_TestNet_UI.yml b/.github/workflows/deploy_staging_TestNet_UI.yml index d360c0fb..24256e66 100644 --- a/.github/workflows/deploy_staging_TestNet_UI.yml +++ b/.github/workflows/deploy_staging_TestNet_UI.yml @@ -50,7 +50,7 @@ jobs: VUE_APP_PEGIN_MAX_AMOUNT_ALLOWED_IN_BTC=10 VUE_APP_FAST_MINING_BLOCK=1 VUE_APP_AVERAGE_MINING_BLOCK=3 - VUE_APP_SLOW_MINING_BLOCK=4 + VUE_APP_SLOW_MINING_BLOCK=5 VUE_APP_LBC_ADDRESS='0xc2A630c053D12D63d32b025082f6Ba268db18300' npm run-script build