From 23a8fd41f8f4ead703d4ba054f295d7c02cd8c0f Mon Sep 17 00:00:00 2001 From: Bruno Henz Date: Tue, 4 May 2021 15:29:12 -0300 Subject: [PATCH 1/3] Update version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 484ce72..30eb16a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "beehivedesktop", - "version": "1.0.3", + "version": "1.0.4", "description": "A decentralized Smartcash wallet.", "private": true, "author": "SmartCash", From 8eef16843924239c158cabab93ef3619dd040020 Mon Sep 17 00:00:00 2001 From: thesolarminer Date: Thu, 6 May 2021 19:51:33 -0500 Subject: [PATCH 2/3] Update Chat Fee --- src/application/lib/sapi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application/lib/sapi.js b/src/application/lib/sapi.js index 208b62c..f31609f 100644 --- a/src/application/lib/sapi.js +++ b/src/application/lib/sapi.js @@ -9,7 +9,7 @@ const { ipcRenderer } = window.require('electron'); const LOCKED = 'pubkeyhashlocked'; //const OP_RETURN_DEFAULT = 'Sent from SmartHub.'; const MIN_FEE = 0.001; -const MIN_FEE_CHAT = 0.002; +const MIN_FEE_CHAT = 0.005; const MIN_AMOUNT_TO_SEND = 0.001; const SAPI_SERVERS_KEY = 'sapiServers'; const random = require('random'); From 8a3d8dbee729dddf14290ee2499179754aa2e739 Mon Sep 17 00:00:00 2001 From: ArcherBullseye <36517538+ArcherBullseye@users.noreply.github.com> Date: Wed, 12 May 2021 12:55:53 -0400 Subject: [PATCH 3/3] Update Chat.controller.js Updating 'Snart' to 'Smart' --- src/presentation/pages/chat/Chat.controller.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/presentation/pages/chat/Chat.controller.js b/src/presentation/pages/chat/Chat.controller.js index d1ec85e..8bf685e 100644 --- a/src/presentation/pages/chat/Chat.controller.js +++ b/src/presentation/pages/chat/Chat.controller.js @@ -107,7 +107,7 @@ export const useChatController = () => { chatDispatch({ type: ACTION_TYPE.newChat, payload: false }); } catch (error) { - chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Chat messages require 0.006 Snart.' }); + chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Chat messages require 0.006 Smart.' }); } }; @@ -150,7 +150,7 @@ export const useChatController = () => { chatDispatch({ type: ACTION_TYPE.initialLoading, payload: false }); chatDispatch({ type: ACTION_TYPE.newChat, payload: false }); } catch (error) { - chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Chat invites require 0.011 Snart.' }); + chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Chat invites require 0.011 Smart.' }); } }; @@ -192,7 +192,7 @@ export const useChatController = () => { chatDispatch({ type: ACTION_TYPE.initialLoading, payload: false }); chatDispatch({ type: ACTION_TYPE.newChat, payload: false }); } catch (error) { - chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Accepting an invite require 0.006 Snart' }); + chatDispatch({ type: ACTION_TYPE.error, payload: 'Not enough funds. Accepting an invite require 0.006 Smart' }); } }