Compare commits

...

3 Commits

Author SHA1 Message Date
benedettadavico e04c759c14 changelog update and version bump 2023-08-23 17:12:46 +02:00
Jędrzej Stuczyński 9d22387b18 [hotfix]: don't assign invalid fields when crossing the JS boundary (#3805)
* [hotfix]: don't assign invalid fields when crossing the JS boundary

* eslint
2023-08-23 16:11:27 +01:00
Tommy Verrall 6254656ab6 Merge pull request #3797 from nymtech/release/v1.1.28
Release/v1.1.28
2023-08-22 13:56:36 +02:00
5 changed files with 11 additions and 5 deletions
+6
View File
@@ -2,6 +2,12 @@
## [Unreleased]
## [v1.2.8] (2023-08-23)
- [hotfix]: don't assign invalid fields when crossing the JS boundary ([#3805])
[#3805]: https://github.com/nymtech/nym/pull/3805
## [1.2.7] (2023-08-17)
- release due to schema changes in the contract
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nymproject/nym-wallet-app",
"version": "1.2.7",
"version": "1.2.8",
"main": "index.js",
"license": "MIT",
"scripts": {
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "nym_wallet"
version = "1.2.7"
version = "1.2.8"
description = "Nym Native Wallet"
authors = ["Nym Technologies SA"]
license = ""
+1 -1
View File
@@ -1,7 +1,7 @@
{
"package": {
"productName": "nym-wallet",
"version": "1.2.7"
"version": "1.2.8"
},
"build": {
"distDir": "../dist",
+2 -2
View File
@@ -4,12 +4,13 @@ import { toPercentFloatString } from '../../utils';
export function mixnodeToTauri(data: MixnodeData): MixNode {
return {
...data,
mix_port: data.mixPort,
http_api_port: data.httpApiPort,
verloc_port: data.verlocPort,
sphinx_key: data.sphinxKey,
identity_key: data.identityKey,
version: data.version,
host: data.host,
};
}
@@ -25,7 +26,6 @@ export function costParamsToTauri(data: MixnodeAmount): MixNodeCostParams {
export function gatewayToTauri(data: GatewayData): Gateway {
return {
...data,
host: data.host,
version: data.version,
mix_port: data.mixPort,