@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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/utils/coin.ts +0 -1
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 "
|
|
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 "
|
|
6186
|
+
return "0xeffc8ae61f439bb34c9b905ff8f29ec56873dcedf81c7123ff2f1f67c45ec302";
|
|
6187
6187
|
} else {
|
|
6188
6188
|
return "0x0";
|
|
6189
6189
|
}
|
package/package.json
CHANGED
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 "
|
|
336
|
+
return "0xeffc8ae61f439bb34c9b905ff8f29ec56873dcedf81c7123ff2f1f67c45ec302"
|
|
337
337
|
} else {
|
|
338
338
|
return "0x0"
|
|
339
339
|
}
|
package/src/utils/coin.ts
CHANGED