Hi team, we are running stellar code in a sandbox, and in our production env we are prohibit to inject any additional modules into this sandbox.
In following code you can see we try to get .publicKey() from a keypair, this will throw an error
Failed to execute script. TypeError [ERR_INVALID_ARG_TYPE]: The "list[1]" argument must be an instance of Buffer or Uint8Array. Received an instance of Object, this is due to in sandbox env could not identify Unit8Array so it been treated as an object here.
Hi team, we are running stellar code in a sandbox, and in our production env we are prohibit to inject any additional modules into this sandbox.
In following code you can see we try to get
.publicKey()
from a keypair, this will throw an errorFailed to execute script. TypeError [ERR_INVALID_ARG_TYPE]: The "list[1]" argument must be an instance of Buffer or Uint8Array. Received an instance of Object
, this is due to in sandbox env could not identify Unit8Array so it been treated as an object here.We require minimal change within this pr, so it could still concat with Buffer. Thank you ~