@optimex-xyz/market-maker-sdk 0.5.3 → 0.5.4
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 +6 -6
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,15 +104,15 @@ sequenceDiagram
|
|
|
104
104
|
|
|
105
105
|
### 2.1. API Environments
|
|
106
106
|
|
|
107
|
-
| Environment | Description |
|
|
108
|
-
| ---------------- | -------------------------------------------------------------------- |
|
|
109
|
-
| `dev` | Development environment with test networks and staging services |
|
|
110
|
-
| `pre-production` | Pre-production environment with mainnet networks for testing before release |
|
|
111
|
-
| `production` | Production environment with mainnet networks and production services |
|
|
107
|
+
| Environment | Description |
|
|
108
|
+
| ---------------- | -------------------------------------------------------------------- |
|
|
109
|
+
| `dev` | Development environment with test networks and staging services |
|
|
110
|
+
| `pre-production` | Pre-production environment with mainnet networks for testing before release |
|
|
111
|
+
| `production` | Production environment with mainnet networks and production services |
|
|
112
112
|
|
|
113
113
|
- Solver URLs: Each environment has dedicated API endpoints
|
|
114
114
|
|
|
115
|
-
- RPC Endpoints: L2 RPC endpoints
|
|
115
|
+
- RPC Endpoints: L2 RPC endpoints
|
|
116
116
|
|
|
117
117
|
- Router Addresses: Smart contract addresses for routing transactions
|
|
118
118
|
|
package/dist/index.js
CHANGED
|
@@ -81,18 +81,18 @@ var environments = {
|
|
|
81
81
|
},
|
|
82
82
|
prelive: {
|
|
83
83
|
backendUrl: "https://pre-api.optimex.xyz",
|
|
84
|
-
rpcUrl: "https://bitfi-
|
|
84
|
+
rpcUrl: "https://rpc-bitfi-p00c4t1rul.t.conduit.xyz",
|
|
85
85
|
routerAddress: "0x272599CE3602A49B580A5C4a4d3C1067E30248D2",
|
|
86
86
|
paymentAddressMap: {
|
|
87
|
-
ethereum: "
|
|
87
|
+
ethereum: "0x0A497AC4261E37FA4062762C23Cf3cB642C839b8"
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
production: {
|
|
91
91
|
backendUrl: "https://api.optimex.xyz",
|
|
92
|
-
rpcUrl: "https://bitfi-
|
|
92
|
+
rpcUrl: "https://rpc-bitfi-p00c4t1rul.t.conduit.xyz",
|
|
93
93
|
routerAddress: "0x272599CE3602A49B580A5C4a4d3C1067E30248D2",
|
|
94
94
|
paymentAddressMap: {
|
|
95
|
-
ethereum: "
|
|
95
|
+
ethereum: "0x0A497AC4261E37FA4062762C23Cf3cB642C839b8"
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -16,18 +16,18 @@ var environments = {
|
|
|
16
16
|
},
|
|
17
17
|
prelive: {
|
|
18
18
|
backendUrl: "https://pre-api.optimex.xyz",
|
|
19
|
-
rpcUrl: "https://bitfi-
|
|
19
|
+
rpcUrl: "https://rpc-bitfi-p00c4t1rul.t.conduit.xyz",
|
|
20
20
|
routerAddress: "0x272599CE3602A49B580A5C4a4d3C1067E30248D2",
|
|
21
21
|
paymentAddressMap: {
|
|
22
|
-
ethereum: "
|
|
22
|
+
ethereum: "0x0A497AC4261E37FA4062762C23Cf3cB642C839b8"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
production: {
|
|
26
26
|
backendUrl: "https://api.optimex.xyz",
|
|
27
|
-
rpcUrl: "https://bitfi-
|
|
27
|
+
rpcUrl: "https://rpc-bitfi-p00c4t1rul.t.conduit.xyz",
|
|
28
28
|
routerAddress: "0x272599CE3602A49B580A5C4a4d3C1067E30248D2",
|
|
29
29
|
paymentAddressMap: {
|
|
30
|
-
ethereum: "
|
|
30
|
+
ethereum: "0x0A497AC4261E37FA4062762C23Cf3cB642C839b8"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
};
|