Andrew Plaza
Andrew Plaza
@dependabot rebase
Just added a rot13 program (which works), will look into the fibonacci program, however. It seems to work at the beginning, suggests it may be something with data pointer increments
Note that the `ethers` crate provides an interface to `anvil`: https://docs.rs/ethers/latest/ethers/core/utils/struct.Anvil.html I know that alloy is supposed to replace it and ethers is being deprecated, but until there is a...
Good idea IMO. Would solidify what we the collaborators need to do, as well as make it clearer how users are to make their listing/pull request. Also, not cluttering up...
Hey! Sorry for confusion. There will be docs/examples incoming, i'll update the issue when they arrive :)
There's a nice binary search for metadata versions in substrate archive [here](https://github.com/paritytech/substrate-archive/blob/master/substrate-archive-backend/src/runtime_version_cache.rs) that finds where different metadata versions switch, if that helps at all. It was quite fast iirc. could...
Yup, SubstrateType is a stateful/Output version of RustTypeMarker (RustTypeMarker + bytestring in, SubstrateType out) Sounds like a good addition that would make the types more clear. In addition to the...
This is difficult to accomplish without re-building the `RuntimeMetadataPrefixed` struct for each metadata version and implementing the trait on that. `RuntimeMetadataPrefixed` has many nested datastructures within it that are often...
the deserialization works. I also added a couple methods returning iterators on `Registry` and one on `Interner`, so that the type definitions can be accessed when using type-metadata as a...
@weiznich `wasm-bindgen` futures aren't `Send`, but async-trait requires `Send` by default. So, for instance if I try returning the future created with a `wasm-bindgen` JS Export in `Connection::establish`, it will...