@sodax/sdk 0.0.1-rc.11 → 0.0.1-rc.13

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/README.md CHANGED
@@ -24,7 +24,7 @@ The Sodax SDK provides a comprehensive interface for interacting with the Sodax
24
24
 
25
25
 
26
26
  ## Installation
27
-
27
+
28
28
  ```bash
29
29
  # Using npm
30
30
  npm install @sodax/sdk
@@ -62,7 +62,7 @@ How to setup local development
62
62
  ## Intent Solver Endpoints
63
63
 
64
64
  Current Intent Solver API endpoints:
65
- - **Production (mainnet)**: "https://sodax-solver.iconblockchain.xyz"
65
+ - **Production (mainnet)**: "https://sodax-solver-staging.iconblockchain.xyz"
66
66
  - **Staging** (mainnet): "https://sodax-solver-staging.iconblockchain.xyz"
67
67
 
68
68
  **Note** Staging endpoint contains features to be potentially released and is subject to frequent change!
@@ -135,7 +135,7 @@ const partnerFeeAmount = {
135
135
  // example of custom solver config
136
136
  const customSolverConfig = {
137
137
  intentsContract: '0x6382D6ccD780758C5e8A6123c33ee8F4472F96ef',
138
- solverApiEndpoint: 'https://sodax-solver.iconblockchain.xyz',
138
+ solverApiEndpoint: 'https://sodax-solver-staging.iconblockchain.xyz',
139
139
  partnerFee: partnerFeePercentage, // or partnerFeeAmount
140
140
  } satisfies SolverConfigParams;
141
141