@dydxprotocol/v4-client-js 1.12.3 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -2
- package/__native__/__ios__/v4-native-client.js +6759 -6759
- package/build/examples/native_examples.js +1 -1
- package/build/src/clients/constants.d.ts +2 -2
- package/build/src/clients/constants.js +3 -3
- package/build/tsconfig.tsbuildinfo +1 -1
- package/examples/native_examples.ts +1 -1
- package/package.json +1 -1
- package/src/clients/constants.ts +2 -2
|
@@ -26,7 +26,7 @@ async function test(): Promise<void> {
|
|
|
26
26
|
const paramsInJson = `{
|
|
27
27
|
"endpointUrls":[
|
|
28
28
|
"https://dydx-testnet.nodefleet.org",
|
|
29
|
-
"https://test-dydx.kingnodes.com",
|
|
29
|
+
"https://test-dydx-rpc.kingnodes.com",
|
|
30
30
|
"https://dydx-rpc.liquify.com/api=8878132/dydx"
|
|
31
31
|
],
|
|
32
32
|
"chainId":"dydx-testnet-4"
|
package/package.json
CHANGED
package/src/clients/constants.ts
CHANGED
|
@@ -30,7 +30,7 @@ export enum IndexerApiHost {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
export enum IndexerWSHost {
|
|
33
|
-
TESTNET = 'wss://dydx
|
|
33
|
+
TESTNET = 'wss://indexer.v4testnet.dydx.exchange/v4/ws',
|
|
34
34
|
STAGING = 'wss://indexer.v4staging.dydx.exchange/v4/ws',
|
|
35
35
|
LOCAL = 'ws://localhost:3003',
|
|
36
36
|
// For the deployment by DYDX token holders
|
|
@@ -42,7 +42,7 @@ export enum FaucetApiHost {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
export enum ValidatorApiHost {
|
|
45
|
-
TESTNET = 'https://test-dydx.kingnodes.com',
|
|
45
|
+
TESTNET = 'https://test-dydx-rpc.kingnodes.com',
|
|
46
46
|
STAGING = 'https://validator.v4staging.dydx.exchange',
|
|
47
47
|
LOCAL = 'http://localhost:26657',
|
|
48
48
|
// For the deployment by DYDX token holders
|