Skip to content

Commit 33a5642

Browse files
author
inazarov
committed
Change node url
1 parent b4e4a4f commit 33a5642

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { BroadcastOptions, SignerOptions } from '.';
22

33
export const DEFAULT_OPTIONS: SignerOptions = {
4-
NODE_URL: 'https://nodes.wavesplatform.com',
4+
NODE_URL: 'https://nodes.wavesnodes.com',
55
LOG_LEVEL: 'production',
66
};
77

src/types/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export interface SignerOptions {
241241
/**
242242
* Урл ноды с которой будет работать библиотека
243243
* Байт сети получаем из урла ноды (из последнего блока)
244-
* @default https://nodes.wavesplatform.com
244+
* @default https://nodes.wavesnodes.com
245245
*/
246246
NODE_URL: string;
247247
/**

test/TestProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { TRANSACTION_TYPE } from '@waves/waves-transactions/dist/transactions';
1515
export class TestProvider implements Provider {
1616
private options: ConnectOptions = {
1717
NETWORK_BYTE: NETWORK_BYTE,
18-
NODE_URL: 'https://nodes.wavesplatform.com',
18+
NODE_URL: 'https://nodes.wavesnodes.com',
1919
};
2020
private readonly seed: string;
2121
public readonly user: UserData;

test/test-env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fetch from 'node-fetch';
22
import { waitTime } from './utils';
33

44
export const NETWORK_BYTE = 87;
5-
export const NODE_URL = 'https://nodes.wavesplatform.com';
5+
export const NODE_URL = 'https://nodes.wavesnodes.com';
66
export const MOCK_URL = 'https://mock.com';
77
export const ACCOUNTS = {
88
SIMPLE: {

0 commit comments

Comments
 (0)