@liberfi.io/types 0.4.26 → 0.4.27
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/api/index.d.mts +7 -0
- package/dist/api/index.d.ts +7 -0
- package/package.json +2 -2
package/dist/api/index.d.mts
CHANGED
|
@@ -2081,6 +2081,13 @@ interface ISubscribeClient {
|
|
|
2081
2081
|
* @returns subscription
|
|
2082
2082
|
*/
|
|
2083
2083
|
subscribeNewTokens(chain: Chain, callback: (data: Array<TokenSubscribed>) => void): ISubscription;
|
|
2084
|
+
/**
|
|
2085
|
+
* Subscribe to new token metadata updates.
|
|
2086
|
+
* @param chain chain id
|
|
2087
|
+
* @param callback receives incremental token metadata updates
|
|
2088
|
+
* @returns subscription
|
|
2089
|
+
*/
|
|
2090
|
+
subscribeNewTokensMetadata(chain: Chain, callback: (data: Array<TokenSubscribed>) => void): ISubscription;
|
|
2084
2091
|
/**
|
|
2085
2092
|
* Subscribe to `New Pools` real-time updates.
|
|
2086
2093
|
* @param chain chain id
|
package/dist/api/index.d.ts
CHANGED
|
@@ -2081,6 +2081,13 @@ interface ISubscribeClient {
|
|
|
2081
2081
|
* @returns subscription
|
|
2082
2082
|
*/
|
|
2083
2083
|
subscribeNewTokens(chain: Chain, callback: (data: Array<TokenSubscribed>) => void): ISubscription;
|
|
2084
|
+
/**
|
|
2085
|
+
* Subscribe to new token metadata updates.
|
|
2086
|
+
* @param chain chain id
|
|
2087
|
+
* @param callback receives incremental token metadata updates
|
|
2088
|
+
* @returns subscription
|
|
2089
|
+
*/
|
|
2090
|
+
subscribeNewTokensMetadata(chain: Chain, callback: (data: Array<TokenSubscribed>) => void): ISubscription;
|
|
2084
2091
|
/**
|
|
2085
2092
|
* Subscribe to `New Pools` real-time updates.
|
|
2086
2093
|
* @param chain chain id
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liberfi.io/types",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.27",
|
|
4
4
|
"description": "Liberfi React SDK types",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"tsup": "^8.5.0",
|
|
26
26
|
"typedoc": "^0.28.12",
|
|
27
|
-
"tsconfig": "0.1.
|
|
27
|
+
"tsconfig": "0.1.210"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|