@metamask-previews/assets-controller 8.3.2-preview-c5f8cd0af → 8.3.2-preview-4808a4122
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/CHANGELOG.md +0 -4
- package/dist/AssetsController.cjs.map +1 -1
- package/dist/AssetsController.d.cts +2 -2
- package/dist/AssetsController.d.cts.map +1 -1
- package/dist/AssetsController.d.mts +2 -2
- package/dist/AssetsController.d.mts.map +1 -1
- package/dist/AssetsController.mjs.map +1 -1
- package/dist/data-sources/RpcDataSource.cjs +15 -2
- package/dist/data-sources/RpcDataSource.cjs.map +1 -1
- package/dist/data-sources/RpcDataSource.d.cts +2 -2
- package/dist/data-sources/RpcDataSource.d.cts.map +1 -1
- package/dist/data-sources/RpcDataSource.d.mts +2 -2
- package/dist/data-sources/RpcDataSource.d.mts.map +1 -1
- package/dist/data-sources/RpcDataSource.mjs +15 -2
- package/dist/data-sources/RpcDataSource.mjs.map +1 -1
- package/dist/data-sources/StakedBalanceDataSource.cjs +27 -1
- package/dist/data-sources/StakedBalanceDataSource.cjs.map +1 -1
- package/dist/data-sources/StakedBalanceDataSource.d.cts.map +1 -1
- package/dist/data-sources/StakedBalanceDataSource.d.mts.map +1 -1
- package/dist/data-sources/StakedBalanceDataSource.mjs +27 -1
- package/dist/data-sources/StakedBalanceDataSource.mjs.map +1 -1
- package/dist/data-sources/evm-rpc-services/services/BalanceFetcher.d.cts +2 -2
- package/dist/data-sources/evm-rpc-services/services/BalanceFetcher.d.mts +2 -2
- package/dist/data-sources/evm-rpc-services/services/StakedBalanceFetcher.d.cts +2 -2
- package/dist/data-sources/evm-rpc-services/services/StakedBalanceFetcher.d.mts +2 -2
- package/dist/data-sources/evm-rpc-services/services/TokenDetector.d.cts +2 -2
- package/dist/data-sources/evm-rpc-services/services/TokenDetector.d.mts +2 -2
- package/package.json +1 -1
|
@@ -27,8 +27,8 @@ export type DetectionPollingInput = {
|
|
|
27
27
|
*/
|
|
28
28
|
export type OnDetectionUpdateCallback = (result: TokenDetectionResult) => void;
|
|
29
29
|
declare const TokenDetector_base: (abstract new (...args: any[]) => {
|
|
30
|
-
readonly "__#
|
|
31
|
-
"__#
|
|
30
|
+
readonly "__#17@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
31
|
+
"__#17@#intervalLength": number | undefined;
|
|
32
32
|
setIntervalLength(intervalLength: number): void;
|
|
33
33
|
getIntervalLength(): number | undefined;
|
|
34
34
|
_startPolling(input: DetectionPollingInput): void;
|
|
@@ -27,8 +27,8 @@ export type DetectionPollingInput = {
|
|
|
27
27
|
*/
|
|
28
28
|
export type OnDetectionUpdateCallback = (result: TokenDetectionResult) => void;
|
|
29
29
|
declare const TokenDetector_base: (abstract new (...args: any[]) => {
|
|
30
|
-
readonly "__#
|
|
31
|
-
"__#
|
|
30
|
+
readonly "__#17@#intervalIds": Record<string, NodeJS.Timeout>;
|
|
31
|
+
"__#17@#intervalLength": number | undefined;
|
|
32
32
|
setIntervalLength(intervalLength: number): void;
|
|
33
33
|
getIntervalLength(): number | undefined;
|
|
34
34
|
_startPolling(input: DetectionPollingInput): void;
|
package/package.json
CHANGED