@talismn/chaindata-provider 1.3.8 → 1.4.0
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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +128 -122
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +128 -122
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -3564,10 +3564,11 @@ type ChaindataProviderOptions = {
|
|
|
3564
3564
|
persistedStorage?: ChaindataStorage | Promise<ChaindataStorage | undefined>;
|
|
3565
3565
|
customChaindata$?: Observable<CustomChaindata> | CustomChaindata;
|
|
3566
3566
|
dynamicTokens$?: ReplaySubject<Token[]>;
|
|
3567
|
+
chaindataSlimUrl?: string;
|
|
3567
3568
|
};
|
|
3568
3569
|
declare class ChaindataProvider implements IChaindataProvider {
|
|
3569
3570
|
#private;
|
|
3570
|
-
constructor({ persistedStorage, customChaindata$, dynamicTokens$, }?: ChaindataProviderOptions);
|
|
3571
|
+
constructor({ persistedStorage, customChaindata$, dynamicTokens$, chaindataSlimUrl, }?: ChaindataProviderOptions);
|
|
3571
3572
|
/**
|
|
3572
3573
|
* Subscribe to this observable and save its contents somewhere persistent.
|
|
3573
3574
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -3564,10 +3564,11 @@ type ChaindataProviderOptions = {
|
|
|
3564
3564
|
persistedStorage?: ChaindataStorage | Promise<ChaindataStorage | undefined>;
|
|
3565
3565
|
customChaindata$?: Observable<CustomChaindata> | CustomChaindata;
|
|
3566
3566
|
dynamicTokens$?: ReplaySubject<Token[]>;
|
|
3567
|
+
chaindataSlimUrl?: string;
|
|
3567
3568
|
};
|
|
3568
3569
|
declare class ChaindataProvider implements IChaindataProvider {
|
|
3569
3570
|
#private;
|
|
3570
|
-
constructor({ persistedStorage, customChaindata$, dynamicTokens$, }?: ChaindataProviderOptions);
|
|
3571
|
+
constructor({ persistedStorage, customChaindata$, dynamicTokens$, chaindataSlimUrl, }?: ChaindataProviderOptions);
|
|
3571
3572
|
/**
|
|
3572
3573
|
* Subscribe to this observable and save its contents somewhere persistent.
|
|
3573
3574
|
*
|