Wodann
Wodann
- When and how should proposals be ratified? - Who participate in the decision process? - Where should the decision process be recorded? - How long should proposals be open...
Leading up to the Rust All-Hands 2020, I'd like to compile a document of proposals that we as the gamedev wg would like to raise - whether we are able...
Implements an MVP of rethnet with: - revm - non-forking database - napi interface - first mocha test of rethnet working in Node.js - GitHub CI To do: - [...
At hardhat we support the ability to call contracts from another contract when developing your own smart contract. So far we've been using `ethereumjs`, which supports this behaviour. We're rewriting...
At hardhat we've so far been using `ethereumjs`, but we're rewriting parts to Rust and are using `revm` to do so. One of the features that `ethereumjs` supports but is...
I tried generating Rust bindings for this `openrpc.json`: https://raw.githubusercontent.com/ethereum/execution-apis/v1.0.0-beta.1/refs-openrpc.json; but it resulted in invalid Rust code. The problems I'm seeing: - [ ] duplicate Rust types (https://github.com/open-rpc/typings/issues/42 mentions this having...
The code contains a [TODO](https://github.com/eqrion/cbindgen/blob/bb00d1c4a8e53c56880586987f0e1512fb252b9a/src/bindgen/ir/constant.rs#L220) for adding byte string support. Is it on the roadmap and/or what would a preferred implementation look like? My use case looks something like this:...
Currently, Mun only allows functions to be defined independent from a struct. We want to be able to associate functions with a struct type, as such: ```mun pub struct Foo...