fetchStorage static method

Future<Uint8List?> fetchStorage(
  1. Provider provider,
  2. Uint8List storageKey
)

Returns the multisig storage from the chain.

If the storage does not exist, it will return null.

Implementation

static Future<Uint8List?> fetchStorage(
    Provider provider, Uint8List storageKey) async {
  return await StateApi(provider).getStorage(storageKey);
}