@cetusprotocol/aggregator-sdk 0.0.0-experimental-20241018181235 → 0.0.0-experimental-20241018181434
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/transaction/deepbook_v3.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -6008,7 +6008,7 @@ var Bluemove = class {
|
|
|
6008
6008
|
// src/transaction/deepbook_v3.ts
|
|
6009
6009
|
var DeepbookV3 = class {
|
|
6010
6010
|
constructor(env) {
|
|
6011
|
-
this.deepbookV3Config = env === 0 /* Mainnet */ ? "
|
|
6011
|
+
this.deepbookV3Config = env === 0 /* Mainnet */ ? "0xa0c3e61f2f57045942f498cdc38c6347bd2e09e04a85ac33b866b84de5b5b141" : "0xe19b5d072346cae83a037d4e3c8492068a74410a74e5830b3a68012db38296aa";
|
|
6012
6012
|
this.deepCoinType = env === 0 /* Mainnet */ ? "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP" : "0x36dbef866a1d62bf7328989a10fb2f07d769f4ee587c0de4a0a256e57e0a58a8::deep::DEEP";
|
|
6013
6013
|
}
|
|
6014
6014
|
swap(client, txb, path, inputCoin, deepbookv3DeepFee) {
|
package/dist/index.mjs
CHANGED
|
@@ -6006,7 +6006,7 @@ var Bluemove = class {
|
|
|
6006
6006
|
// src/transaction/deepbook_v3.ts
|
|
6007
6007
|
var DeepbookV3 = class {
|
|
6008
6008
|
constructor(env) {
|
|
6009
|
-
this.deepbookV3Config = env === 0 /* Mainnet */ ? "
|
|
6009
|
+
this.deepbookV3Config = env === 0 /* Mainnet */ ? "0xa0c3e61f2f57045942f498cdc38c6347bd2e09e04a85ac33b866b84de5b5b141" : "0xe19b5d072346cae83a037d4e3c8492068a74410a74e5830b3a68012db38296aa";
|
|
6010
6010
|
this.deepCoinType = env === 0 /* Mainnet */ ? "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP" : "0x36dbef866a1d62bf7328989a10fb2f07d769f4ee587c0de4a0a256e57e0a58a8::deep::DEEP";
|
|
6011
6011
|
}
|
|
6012
6012
|
swap(client, txb, path, inputCoin, deepbookv3DeepFee) {
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@ export class DeepbookV3 implements Dex {
|
|
|
19
19
|
constructor(env: Env) {
|
|
20
20
|
this.deepbookV3Config =
|
|
21
21
|
env === Env.Mainnet
|
|
22
|
-
? "
|
|
22
|
+
? "0xa0c3e61f2f57045942f498cdc38c6347bd2e09e04a85ac33b866b84de5b5b141"
|
|
23
23
|
: "0xe19b5d072346cae83a037d4e3c8492068a74410a74e5830b3a68012db38296aa"
|
|
24
24
|
this.deepCoinType =
|
|
25
25
|
env === Env.Mainnet
|