@sentio/sdk 2.31.0-rc.6 → 2.31.0-rc.7
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/lib/utils/index.d.ts +1 -1
- package/lib/utils/index.d.ts.map +1 -1
- package/lib/utils/index.js +1 -1
- package/lib/utils/index.js.map +1 -1
- package/package.json +3 -3
- package/src/utils/index.ts +1 -1
package/lib/utils/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './conversion.js';
|
|
2
2
|
export * as token from './token.js';
|
|
3
3
|
export * from './dex-price.js';
|
|
4
|
-
export { getPriceByType, getPriceClient, getPriceBySymbol } from './price.js';
|
|
4
|
+
export { getPriceByType, getPriceClient, getPriceBySymbol, getCoinsThatHasPrice } from './price.js';
|
|
5
5
|
export * from './call.js';
|
|
6
6
|
//# sourceMappingURL=index.d.ts.map
|
package/lib/utils/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA;AACnC,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA;AACnC,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,YAAY,CAAA;AACnG,cAAc,WAAW,CAAA"}
|
package/lib/utils/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './conversion.js';
|
|
2
2
|
export * as token from './token.js';
|
|
3
3
|
export * from './dex-price.js';
|
|
4
|
-
export { getPriceByType, getPriceClient, getPriceBySymbol } from './price.js';
|
|
4
|
+
export { getPriceByType, getPriceClient, getPriceBySymbol, getCoinsThatHasPrice } from './price.js';
|
|
5
5
|
export * from './call.js';
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/lib/utils/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA;AACnC,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,OAAO,KAAK,KAAK,MAAM,YAAY,CAAA;AACnC,cAAc,gBAAgB,CAAA;AAC9B,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,YAAY,CAAA;AACnG,cAAc,WAAW,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sentio/sdk",
|
|
3
|
-
"version": "2.31.0-rc.
|
|
3
|
+
"version": "2.31.0-rc.7",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"typedoc": "^0.25.0",
|
|
74
74
|
"utility-types": "^3.10.0",
|
|
75
75
|
"yaml": "^2.2.1",
|
|
76
|
-
"@sentio/protos": "2.31.0-rc.
|
|
77
|
-
"@sentio/runtime": "^2.31.0-rc.
|
|
76
|
+
"@sentio/protos": "2.31.0-rc.7",
|
|
77
|
+
"@sentio/runtime": "^2.31.0-rc.7"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"tsup": "npm:@sentio/tsup@^6.7.2"
|
package/src/utils/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './conversion.js'
|
|
2
2
|
export * as token from './token.js'
|
|
3
3
|
export * from './dex-price.js'
|
|
4
|
-
export { getPriceByType, getPriceClient, getPriceBySymbol } from './price.js'
|
|
4
|
+
export { getPriceByType, getPriceClient, getPriceBySymbol, getCoinsThatHasPrice } from './price.js'
|
|
5
5
|
export * from './call.js'
|