Compare commits

...

2 Commits

Author SHA1 Message Date
Tommy Verrall dfde3bb2e4 push up some more changes ahead of the wallet release too
- change versions
2025-06-24 16:08:44 +02:00
Tommy Verrall 4ef59bb95b fix import errors on develop 2025-06-24 16:03:19 +02:00
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "NymWallet"
version = "1.2.18"
version = "1.2.19"
description = "Nym Native Wallet"
authors = ["Nym Technologies SA"]
license = ""
+1 -1
View File
@@ -40,7 +40,7 @@
},
"productName": "NymWallet",
"mainBinaryName": "NymWallet",
"version": "1.2.18",
"version": "1.2.19",
"identifier": "net.nymtech.wallet",
"plugins": {
"updater": {
@@ -8,7 +8,7 @@ import { LoadingModal } from 'src/components/Modals/LoadingModal';
import { Results } from 'src/components/TestNode/Results';
import { ErrorModal } from 'src/components/Modals/ErrorModal';
import { PrintResults } from 'src/components/TestNode/PrintResults';
import { MAINNET_VALIDATOR_URL, QA_VALIDATOR_URL } from 'src/constants';
import { MAINNET_VALIDATOR_URL } from 'src/constants';
import { TestStatus } from 'src/components/TestNode/types';
import { isMixnode } from 'src/types';
@@ -63,7 +63,7 @@ export const NodeTestPage = () => {
const loadNodeTestClient = useCallback(async () => {
try {
const nodeTesterId = new Date().toISOString(); // make a new tester id for each session
const validator = network === 'MAINNET' ? MAINNET_VALIDATOR_URL : QA_VALIDATOR_URL;
const validator = network === 'MAINNET' ? MAINNET_VALIDATOR_URL : 'https://rpc.nymtech.net/api/';
const client = await createNodeTesterClient();
await client.tester.init(validator, nodeTesterId);
setNodeTestClient(client);