peg

Results 14 comments of peg

thanks for the response! looks like we definately want secure buffers. i think the confusion is coming from the following. if i do this: ``` const sodium = require('sodium-native') var...

that's good news. so the problem is only cosmetic, and we can go ahead and use secure buffers! nice one!

This looks great! As a social recovery project we would love to see more standards, and we would consider adopting some of these for [our current project](https://gitlab.com/dark-crystal-web3/dark-crystal-web3-design-document). In case its...

Update - i started trying to write a program for this and i cannot get `subxt` to compile with `cargo component`: Cargo.toml: ```toml [dependencies] entropy-programs-core = { workspace = true...

@JesseAbram suggested using `substrate-api-client` instead of `subxt`. I can confirm that `substrate-api-client` does compile in a program when default features are disabled. But it does not appear to have the...

I tried writing a test that would decode a partial balance transfer extrinsic (ignoring problems with compiling things for cargo-component for now). Here the extrinsic is created: https://github.com/entropyxyz/entropy-core/blob/46a36cf0ef9504141a617b876b8edc09778f1bb2/crates/client/src/client.rs#L378 Here we...

Had a look at this today together with @HCastano and made some progress towards being able to decode a balance transfer call data. This isn't the full signed payload, but...

Ah great this should make testing this much simpler > > However, if you notice @ameba23 the extrinsic produced by PJS Apps does differ from the one in your test....

Still stuck on this error when attempting to decode a balance transfer call: `"Could not decode MultiAddress, variant doesn't exist" ` I noticed there is both a `sp_runtime::MultiAddress` and a...

Ah you mean actually re-create the transaction inside the program, now i get it. Yep that is a very good idea. But its going to be more needy in terms...