From 2305e08cc053ee8db156bb72e998daadaa9725fa Mon Sep 17 00:00:00 2001 From: Alex <71931113+af-afk@users.noreply.github.com> Date: Thu, 8 Feb 2024 14:38:18 +1030 Subject: [PATCH 1/4] Run everything on develop, sunset production (#2517) Co-authored-by: user --- .github/workflows/mainnet-db-migration-auto.yml | 2 +- .github/workflows/mainnet-microservices.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mainnet-db-migration-auto.yml b/.github/workflows/mainnet-db-migration-auto.yml index f71ddf43d..bdda30eb8 100644 --- a/.github/workflows/mainnet-db-migration-auto.yml +++ b/.github/workflows/mainnet-db-migration-auto.yml @@ -3,7 +3,7 @@ name: DB Migration - Mainnet (Auto) on: pull_request: branches: - - production + - develop types: - closed diff --git a/.github/workflows/mainnet-microservices.yml b/.github/workflows/mainnet-microservices.yml index ea5344883..177544eab 100644 --- a/.github/workflows/mainnet-microservices.yml +++ b/.github/workflows/mainnet-microservices.yml @@ -3,7 +3,7 @@ name: Microservices CI on: pull_request: branches: - - production + - develop types: - closed From cfe4a482a27da9a12a731d30888f80514b477eb5 Mon Sep 17 00:00:00 2001 From: Alex <71931113+af-afk@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:11:27 +0800 Subject: [PATCH 2/4] Develop dont explode on volume decode (#2534) * Don't die on a non fluid asset being used by a main contract * Fix the count for the emissions insertion --------- Co-authored-by: user From bc35c08f16b0618072a9ef8fb32cdeb2e54833be Mon Sep 17 00:00:00 2001 From: Alex <71931113+af-afk@users.noreply.github.com> Date: Tue, 13 Feb 2024 11:11:51 +0800 Subject: [PATCH 3/4] Develop manually reward users (#2539) * Manually reward some users * Manually reward some users who were bitten by bugs --------- Co-authored-by: user --- ...5-lootbox_manual_rewarding_some_people.sql | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 database/102-up-timescale/20240205142155-lootbox_manual_rewarding_some_people.sql diff --git a/database/102-up-timescale/20240205142155-lootbox_manual_rewarding_some_people.sql b/database/102-up-timescale/20240205142155-lootbox_manual_rewarding_some_people.sql new file mode 100644 index 000000000..eca0b2804 --- /dev/null +++ b/database/102-up-timescale/20240205142155-lootbox_manual_rewarding_some_people.sql @@ -0,0 +1,23 @@ + +-- migrate:up + +ALTER TYPE lootbox_source ADD VALUE 'manual_reward'; + +INSERT INTO lootbox (address, source, transaction_hash, referrer, awarded_time, volume, reward_tier, lootbox_count, application, epoch) VALUES + ('0x502254a79791c612af08d49d68449af38266f8dc', 'manual_reward', '', '', '2024-02-05 05:47:01.146448+00', 0, 3, 10, 'none', 'epoch_2'), + ('0x896c882e4c37132dc63fe442b1305f70a68f7cf7', 'manual_reward', '', '', '2024-02-05 05:47:01.146448+00', 0, 3, 10, 'none', 'epoch_2'), + ('0xe1ab77fa0c089dd578fa1e542e50d655a37c3b05', 'manual_reward', '', '', '2024-02-05 05:47:01.146448+00', 0, 3, 10, 'none', 'epoch_2'), + ('0xb59e6d31dd9d2c38b5b1bbfe019be46800b917bf', 'manual_reward', '', '', '2024-02-05 05:47:01.146448+00', 0, 3, 10, 'none', 'epoch_2'), + ('0x9de6107df383c348b18582b1a2e355491bbc1b5d', 'manual_reward', '', '', '2024-02-05 05:47:01.146448+00', 0, 3, 10, 'none', 'epoch_2'), + ('0x7a6f38594496617f61f8358912f4ea69fe33d02f', 'manual_reward', '', '', '2024-02-05 05:47:01.146448+00', 0, 4, 5, 'none', 'epoch_2'); + +-- migrate:down + +DELETE FROM lootbox WHERE + (address = '0x502254a79791c612af08d49d68449af38266f8dc' AND source = 'manual_reward' AND awarded_time = '2024-02-05 05:47:01.146448+00') OR + (address = '0x896c882e4c37132dc63fe442b1305f70a68f7cf7' AND source = 'manual_reward' AND awarded_time = '2024-02-05 05:47:01.146448+00') OR + (address = '0xe1ab77fa0c089dd578fa1e542e50d655a37c3b05' AND source = 'manual_reward' AND awarded_time = '2024-02-05 05:47:01.146448+00') OR + (address = '0xb59e6d31dd9d2c38b5b1bbfe019be46800b917bf' AND source = 'manual_reward' AND awarded_time = '2024-02-05 05:47:01.146448+00') OR + (address = '0x9de6107df383c348b18582b1a2e355491bbc1b5d' AND source = 'manual_reward' AND awarded_time = '2024-02-05 05:47:01.146448+00') OR + (address = '0x7a6f38594496617f61f8358912f4ea69fe33d02f' AND source = 'manual_reward' AND awarded_time = '2024-02-05 05:47:01.146448+00'); + From dcaa9ddc3c3f4f244f5f4974f80e501d379ca43e Mon Sep 17 00:00:00 2001 From: Alex <71931113+af-afk@users.noreply.github.com> Date: Wed, 14 Feb 2024 12:25:31 +0800 Subject: [PATCH 4/4] Update Ramses link (#2544) Co-authored-by: user --- web/app.fluidity.money/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app.fluidity.money/config.toml b/web/app.fluidity.money/config.toml index d3fc2dcae..4f2205cc5 100644 --- a/web/app.fluidity.money/config.toml +++ b/web/app.fluidity.money/config.toml @@ -356,7 +356,7 @@ fUSDC = "https://app.camelot.exchange/liquidity/?token1=0xaf88d065e77c8cC2239327 name= "Ramses" [liquidity_providers.arbitrum.providers.link] -fUSDC = "https://app.ramses.exchange/liquidity/v2/0xf73c87736008ad3af9973b357c97ab8c60d8ca63" +fUSDC = "https://app.ramses.exchange/liquidity/v2/0x2c9a8c5814bbd8eb4f3531efb836f3d1fa185f38" [[liquidity_providers.arbitrum.providers]] name= "uniswap"