Tiago Carvalho
Tiago Carvalho
## Describe your changes ## Indicate on which release or other PRs this topic is based on #2478 ## Checklist before merging to `draft` - [ ] I have added...
## Describe your changes Since all Ethereum e2e tests use a single validator node, they're nice candidates to convert to integration tests, which are way more reliable, consume less resources...
Validating the denomination of amounts of a certain token type requires performing an RPC query. The nature of this information is static, though, so it should be cached indefinitely for...
Currently, `init-network` generates a `${chain_id}.tar.gz` file containing network config toml files and a wasm checksums json file. It should also (optionally) contain the wasm files pointed to by the checksums...
Use lazy collections to store votes on tallies.
There is a race condition in the tx broadcaster. It's possible to request the ledger to shut down, while the shell is still comitting. Meanwhile, the broadcaster receives a shutdown...
## Describe your changes Emit core events (i.e. `namada_core::event::Event`) from tx wasms. To this end, we leverage IBC's existing wasm infrastructure. ~~**NOTE:** IBC e2e tests are expected to fail, just...
## Describe your changes Erase protocol specific details from the core API of events in Namada. Submodules should be responsible for defining custom events, which can be converted into core...
- [ ] Disable custom wasm execution in dry ran txs. - [ ] Remove `TxCustom` from the sdk args.
Currently, the raw bytes of some values in Namada (e.g. VP and TX wasm code) are written to storage instead of their borsh serialized byte array. This poses a challenge...