@dhedge/v2-sdk 2.2.3 → 2.2.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/dist/v2-sdk.cjs.development.js +3 -3
- package/dist/v2-sdk.cjs.development.js.map +1 -1
- package/dist/v2-sdk.cjs.production.min.js +1 -1
- package/dist/v2-sdk.cjs.production.min.js.map +1 -1
- package/dist/v2-sdk.esm.js +3 -3
- package/dist/v2-sdk.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/config.ts +4 -4
- package/src/test/dytm.test.ts +0 -5
package/package.json
CHANGED
package/src/config.ts
CHANGED
|
@@ -62,7 +62,7 @@ export const routerAddress: AddressDappNetworkMap = {
|
|
|
62
62
|
[Dapp.ODOS]: "0x0D05a7D3448512B78fa8A9e46c4872C88C4a0D05",
|
|
63
63
|
[Dapp.PENDLE]: "0x888888888889758F76e7103c6CbF23ABbF58F946",
|
|
64
64
|
[Dapp.KYBERSWAP]: "0x6131B5fae19EA4f9D964eAc0408E4408b66337b5",
|
|
65
|
-
[Dapp.DYTM]: "
|
|
65
|
+
[Dapp.DYTM]: ""
|
|
66
66
|
},
|
|
67
67
|
[Network.BASE]: {
|
|
68
68
|
[Dapp.ONEINCH]: "0x111111125421ca6dc452d289314280a0f8842a65",
|
|
@@ -80,7 +80,7 @@ export const routerAddress: AddressDappNetworkMap = {
|
|
|
80
80
|
[Dapp.ONEINCH]: "0x111111125421ca6dc452d289314280a0f8842a65",
|
|
81
81
|
[Dapp.KYBERSWAP]: "0x6131B5fae19EA4f9D964eAc0408E4408b66337b5",
|
|
82
82
|
[Dapp.ONDO]: "0xde41399145F23936b03dD1474eC16c1519c0DC2a",
|
|
83
|
-
[Dapp.DYTM]: "
|
|
83
|
+
[Dapp.DYTM]: "0x0ff1ceB93DbADfB13722058D60c4B8cD122b06ea"
|
|
84
84
|
},
|
|
85
85
|
[Network.PLASMA]: {
|
|
86
86
|
[Dapp.AAVEV3]: "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
|
|
@@ -288,9 +288,9 @@ export const dytmContractAddresses: Readonly<Partial<
|
|
|
288
288
|
>
|
|
289
289
|
>> = {
|
|
290
290
|
[Network.ARBITRUM]: {
|
|
291
|
-
Periphery: "
|
|
291
|
+
Periphery: ""
|
|
292
292
|
},
|
|
293
293
|
[Network.ETHEREUM]: {
|
|
294
|
-
Periphery: "
|
|
294
|
+
Periphery: "0xfA03F9Ce907006133a0E77796a31c40AC22151d5"
|
|
295
295
|
}
|
|
296
296
|
};
|
package/src/test/dytm.test.ts
CHANGED
|
@@ -230,11 +230,6 @@ const testDytm = ({ network, wallet, provider }: TestingRunParams) => {
|
|
|
230
230
|
});
|
|
231
231
|
};
|
|
232
232
|
|
|
233
|
-
testingHelper({
|
|
234
|
-
network: Network.ARBITRUM,
|
|
235
|
-
testingRun: testDytm
|
|
236
|
-
});
|
|
237
|
-
|
|
238
233
|
testingHelper({
|
|
239
234
|
network: Network.ETHEREUM,
|
|
240
235
|
testingRun: testDytm
|