From 754fcc2de755d7ba561233bd6de5c848d7ce33d0 Mon Sep 17 00:00:00 2001 From: Akamig Date: Wed, 5 Jun 2024 16:57:15 +0900 Subject: [PATCH 1/2] Fix: Increase swap upper bound to 100000 --- src/utils/bridgeFee.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/bridgeFee.ts b/src/utils/bridgeFee.ts index c2512b541..c125d60d4 100644 --- a/src/utils/bridgeFee.ts +++ b/src/utils/bridgeFee.ts @@ -1,7 +1,7 @@ import { Decimal } from "decimal.js"; export const BRIDGE_MIN = new Decimal(100); -export const BRIDGE_MAX = new Decimal(50000); +export const BRIDGE_MAX = new Decimal(100000); export const BASE_RATE = new Decimal(0.01); export const SURCHARGE_RATE = new Decimal(0.02); export const FIXED_THRESHOLD = new Decimal(1000); From 6f949e17f00a78f13771fde62440ee38f5d153fa Mon Sep 17 00:00:00 2001 From: Akamig Date: Wed, 5 Jun 2024 16:58:24 +0900 Subject: [PATCH 2/2] 2.6.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4bbc6716b..749cd6ec2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "NineChronicles", "productName": "Nine Chronicles", - "version": "2.6.1", + "version": "2.6.2", "description": "Game Launcher for Nine Chronicles", "author": "Planetarium ", "license": "GPL-3.0",