@galacticcouncil/sdk 0.8.0-beta.2 → 0.8.0-beta.3
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/build/index.cjs +2 -2
- package/build/index.mjs +1 -1
- package/build/types/pool/PoolClient.d.ts +4 -4
- package/package.json +1 -1
|
@@ -13,11 +13,11 @@ export declare abstract class PoolClient extends BalanceClient {
|
|
|
13
13
|
protected abstract subscribePoolChange(pool: PoolBase): UnsubscribePromise;
|
|
14
14
|
getPools(): Promise<PoolBase[]>;
|
|
15
15
|
subscribe(): Promise<VoidFn[]>;
|
|
16
|
+
private subscribeLog;
|
|
16
17
|
unsubscribe(): void;
|
|
17
18
|
private hasShareAsset;
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
private
|
|
19
|
+
private subscribeTokensPoolBalance;
|
|
20
|
+
private subscribeSharePoolBalance;
|
|
21
|
+
private subscribeSystemPoolBalance;
|
|
21
22
|
private updateBalanceCallback;
|
|
22
|
-
private updateBalanceLog;
|
|
23
23
|
}
|
package/package.json
CHANGED