We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buffer is node.js specific and is not supported in browsers. Right now users must polyfill Buffer in order to use @aztec/aztec.js.
Buffer
@aztec/aztec.js
Steps to fix:
@types/node
buffer
import { Buffer } from "buffer"
Optionally, replace Buffer with Uint8Array where possible: function parameters and return values, Bufferable type, etc.
Uint8Array
Bufferable
The text was updated successfully, but these errors were encountered:
@rahul-kothari please track in #8881
Sorry, something went wrong.
No branches or pull requests
Buffer
is node.js specific and is not supported in browsers. Right now users must polyfill Buffer in order to use@aztec/aztec.js
.Steps to fix:
@types/node
from dependenciesbuffer
to dependenciesimport { Buffer } from "buffer"
in every file that usesBuffer
Optionally, replace
Buffer
withUint8Array
where possible: function parameters and return values,Bufferable
type, etc.The text was updated successfully, but these errors were encountered: