|
@@ -98,9 +98,11 @@ export const getStorageBucket = (
|
|
|
: api.query.storage.storageBucketById(bucketId)) as Promise<StorageBucket>;
|
|
|
|
|
|
export const getStorageBuckets = (
|
|
|
- api: ApiPromise
|
|
|
-): Promise<Map<StorageBucketId, StorageBucket>> =>
|
|
|
- api.query.storage.storageBucketById.entries() as any;
|
|
|
+ api: ApiPromise
|
|
|
+): Promise<Map<StorageBucketId, StorageBucket>> => api.query.storage.storageBucketById.entries<StorageBucket>().then((entries) => entries.map(([{
|
|
|
+ args: [id],
|
|
|
+ }, bucket]) => [id, bucket]
|
|
|
+)) as Promise<Map<StorageBucketId, StorageBucket>>
|
|
|
|
|
|
// distribution
|
|
|
export const getDistributionFamilyNumber = (api: ApiPromise): Promise<number> =>
|