@cetusprotocol/aggregator-sdk 0.1.1 → 0.1.2

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 CHANGED
@@ -6185,7 +6185,7 @@ var AggregatorClient5 = class {
6185
6185
  }
6186
6186
  publishedAt() {
6187
6187
  if (this.env === 0 /* Mainnet */) {
6188
- return "0x9fd702cf1a8db5a2e99be20be6750d22ec75c30d57e3d9ccbc37c9b4ad7bef21";
6188
+ return "0xeffc8ae61f439bb34c9b905ff8f29ec56873dcedf81c7123ff2f1f67c45ec302";
6189
6189
  } else {
6190
6190
  return "0x0";
6191
6191
  }
package/dist/index.mjs CHANGED
@@ -6183,7 +6183,7 @@ var AggregatorClient5 = class {
6183
6183
  }
6184
6184
  publishedAt() {
6185
6185
  if (this.env === 0 /* Mainnet */) {
6186
- return "0x9fd702cf1a8db5a2e99be20be6750d22ec75c30d57e3d9ccbc37c9b4ad7bef21";
6186
+ return "0xeffc8ae61f439bb34c9b905ff8f29ec56873dcedf81c7123ff2f1f67c45ec302";
6187
6187
  } else {
6188
6188
  return "0x0";
6189
6189
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cetusprotocol/aggregator-sdk",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "sideEffects": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/client.ts CHANGED
@@ -333,7 +333,7 @@ export class AggregatorClient {
333
333
 
334
334
  publishedAt(): string {
335
335
  if (this.env === Env.Mainnet) {
336
- return "0x9fd702cf1a8db5a2e99be20be6750d22ec75c30d57e3d9ccbc37c9b4ad7bef21"
336
+ return "0xeffc8ae61f439bb34c9b905ff8f29ec56873dcedf81c7123ff2f1f67c45ec302"
337
337
  } else {
338
338
  return "0x0"
339
339
  }
package/src/utils/coin.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { SuiZeroCoinFn } from "../const"
2
1
  import { CoinAsset } from "../types/sui"
3
2
  import { CoinUtils } from "../types/CoinAssist"
4
3
  import { TransactionErrorCode } from "../errors"