@algorandfoundation/algokit-utils 9.0.0 → 9.0.1-beta.1

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.
@@ -1063,11 +1063,9 @@ class AppClient {
1063
1063
  return new Map(await Promise.all(boxNames
1064
1064
  .filter((b) => binaryStartsWith(b.nameRaw, prefix))
1065
1065
  .map(async (b) => {
1066
- const encodedKey = Buffer.concat([prefix, b.nameRaw]);
1067
- const base64Key = Buffer.from(encodedKey).toString('base64');
1068
1066
  return [
1069
1067
  getABIDecodedValue(b.nameRaw.slice(prefix.length), metadata.keyType, that._appSpec.structs),
1070
- getABIDecodedValue(await that.getBoxValue(Buffer.from(base64Key, 'base64')), metadata.valueType, that._appSpec.structs),
1068
+ getABIDecodedValue(await that.getBoxValue(b.nameRaw), metadata.valueType, that._appSpec.structs),
1071
1069
  ];
1072
1070
  })));
1073
1071
  },