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
Currently, sdk pulls ledger from polkadot-js, then send those ledger to wasm, there should be some overhead between js and wasm. Related code: https://github.com/Manta-Network/sdk/blob/main/manta-js/package/src/api/index.js#L120
let result = await this.api.rpc.mantaPay.pull_ledger_diff( checkpoint, this.maxReceiversPullSize, this.maxSendersPullSize );
And some crates support wasm, like jsonrpsee/reqwests.
Before we move this part to wasm, we should know whether it's worth to do it. Knowing how much overhead between js and wasm is necessary.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, sdk pulls ledger from polkadot-js, then send those ledger to wasm, there should be some overhead between js and wasm.
Related code: https://github.com/Manta-Network/sdk/blob/main/manta-js/package/src/api/index.js#L120
And some crates support wasm, like jsonrpsee/reqwests.
Before we move this part to wasm, we should know whether it's worth to do it. Knowing how much overhead between js and wasm is necessary.
The text was updated successfully, but these errors were encountered: