@optimex-xyz/market-maker-sdk 0.9.1 → 0.10.1
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 +0 -2
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,8 +10,6 @@
|
|
|
10
10
|
> - For PMMs older version you can update to v0.8.0 without needing to change anything
|
|
11
11
|
> - If you need to use the Router, please use the values provided in the environment configuration section
|
|
12
12
|
|
|
13
|
-
> **Note**: If you prefer using the SDK instead of direct API integration, please refer to the [PMM SDK Integration Guide](sdk-integration.md).
|
|
14
|
-
|
|
15
13
|
A comprehensive guide for implementing Private Market Makers (PMMs) in the cross-chain trading network. This documentation covers the required integration points between PMMs and our solver backend, enabling cross-chain liquidity provision and settlement.
|
|
16
14
|
|
|
17
15
|
## Table of Contents
|
package/dist/index.js
CHANGED
|
@@ -96,25 +96,25 @@ module.exports = __toCommonJS(index_exports);
|
|
|
96
96
|
var environments = {
|
|
97
97
|
development: {
|
|
98
98
|
backendUrl: "https://api-dev.bitdex.xyz",
|
|
99
|
-
rpcUrl: "https://
|
|
100
|
-
protocolFetcherProxyAddress: "
|
|
99
|
+
rpcUrl: "https://base-sepolia-rpc.publicnode.com",
|
|
100
|
+
protocolFetcherProxyAddress: "0x7E11D5523a2e94CEB6e19ab2f5350dBA769D6F25",
|
|
101
101
|
isTestnet: true
|
|
102
102
|
},
|
|
103
103
|
staging: {
|
|
104
104
|
backendUrl: "https://api-stg.bitdex.xyz",
|
|
105
|
-
rpcUrl: "https://
|
|
105
|
+
rpcUrl: "https://base-sepolia-rpc.publicnode.com",
|
|
106
106
|
protocolFetcherProxyAddress: "0x7c07151ca4DFd93F352Ab9B132A95866697c38c2",
|
|
107
107
|
isTestnet: true
|
|
108
108
|
},
|
|
109
109
|
prelive: {
|
|
110
110
|
backendUrl: "https://pre-api.optimex.xyz",
|
|
111
|
-
rpcUrl: "https://rpc.
|
|
111
|
+
rpcUrl: "https://base-rpc.publicnode.com",
|
|
112
112
|
protocolFetcherProxyAddress: "0xFDEd4CEf9aE1E03D0BeF161262a266c1c157a32b",
|
|
113
113
|
isTestnet: false
|
|
114
114
|
},
|
|
115
115
|
production: {
|
|
116
116
|
backendUrl: "https://api.optimex.xyz",
|
|
117
|
-
rpcUrl: "https://rpc.
|
|
117
|
+
rpcUrl: "https://base-rpc.publicnode.com",
|
|
118
118
|
protocolFetcherProxyAddress: "0xFDEd4CEf9aE1E03D0BeF161262a266c1c157a32b",
|
|
119
119
|
isTestnet: false
|
|
120
120
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -8,25 +8,25 @@ var __export = (target, all) => {
|
|
|
8
8
|
var environments = {
|
|
9
9
|
development: {
|
|
10
10
|
backendUrl: "https://api-dev.bitdex.xyz",
|
|
11
|
-
rpcUrl: "https://
|
|
12
|
-
protocolFetcherProxyAddress: "
|
|
11
|
+
rpcUrl: "https://base-sepolia-rpc.publicnode.com",
|
|
12
|
+
protocolFetcherProxyAddress: "0x7E11D5523a2e94CEB6e19ab2f5350dBA769D6F25",
|
|
13
13
|
isTestnet: true
|
|
14
14
|
},
|
|
15
15
|
staging: {
|
|
16
16
|
backendUrl: "https://api-stg.bitdex.xyz",
|
|
17
|
-
rpcUrl: "https://
|
|
17
|
+
rpcUrl: "https://base-sepolia-rpc.publicnode.com",
|
|
18
18
|
protocolFetcherProxyAddress: "0x7c07151ca4DFd93F352Ab9B132A95866697c38c2",
|
|
19
19
|
isTestnet: true
|
|
20
20
|
},
|
|
21
21
|
prelive: {
|
|
22
22
|
backendUrl: "https://pre-api.optimex.xyz",
|
|
23
|
-
rpcUrl: "https://rpc.
|
|
23
|
+
rpcUrl: "https://base-rpc.publicnode.com",
|
|
24
24
|
protocolFetcherProxyAddress: "0xFDEd4CEf9aE1E03D0BeF161262a266c1c157a32b",
|
|
25
25
|
isTestnet: false
|
|
26
26
|
},
|
|
27
27
|
production: {
|
|
28
28
|
backendUrl: "https://api.optimex.xyz",
|
|
29
|
-
rpcUrl: "https://rpc.
|
|
29
|
+
rpcUrl: "https://base-rpc.publicnode.com",
|
|
30
30
|
protocolFetcherProxyAddress: "0xFDEd4CEf9aE1E03D0BeF161262a266c1c157a32b",
|
|
31
31
|
isTestnet: false
|
|
32
32
|
}
|