rooooooooob
rooooooooob
You can use it directly from rust as well. The documentation was written more for web users as those comprise most of the people using the library but it's totally...
Yeah, as you saw I guess with your edit we have ```rust #[cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))] pub type JsError = JsValue; #[cfg(not(all(target_arch = "wasm32", not(target_os = "emscripten"))))] #[derive(Debug,...
>Thanks for all those precious explanation, I may have some more questions later, is there any discord or telegram for dev? @SebastienGllmt @vsubhuman
I'm going to link to #276 here so that people inquiring about rust native usage can help tell us what they would like to see potentially.
I'm not sure what exactly is being asked here, but I'm also not familiar with all the functionality nami exposes(`nami.transaction`). If you parse the bytes out of those `cborHex` fields...
>To be more specific, I want to know how to convert cborHex(e.g. 582009d11fd26816c747afec7c80ca775490d3b91d0ef8d6c4dee963219ec1fed3c1 ) to bech32 format(e.g. xprv1wqf6xk9fym8u99qk8ec5l3khk7q4ed00d6ftvz59q6tju6vsgetpnvy0lcmyqdmrah8qj6yrmh0zygzn8smx8zuk6rh8te3248dun8dal8vjzjxj84v4dkx85m0k3lmas40n3n08yv5t9pp7jzgfxyvz4vh6j3e7) As I meantioned you'll have to extract the bytestring from within that...
@eric248550 >I want to generate "rootkey" from "skey" and "vkey", Could you give a bit more info about what you mean by `rootKey`? Are you referring to the docs? What...
These examples are very, very outdated. It's better to use the stuff in the docs as they're also a lot more fleshed out. We do have a pending PR in...
It's worth noting that `Value` as of the Mary hardfork isn't necessarily just a ADA value, as it can contain multiassets (e.g. NFTs) as well. If you want to extract...
also @xocdr all the JS code is automatically generated from the rust codebase located in `rust/src/`. Most of it is in `lib.rs` but `Value` is in `util.rs`. The method/type names...