stepit

Results 10 issues of stepit

I'm trying to use gophernotes to test some Cosmos SDK functionality. In particular, I would like to run in a notebook this test: https://github.com/cosmos/cosmos-sdk/blob/main/store/iavl/store_test.go#L316 but when I run the import:...

# Description This PR migrate tests for the epochs module. Other than that, it will: - Add the custom genesis setter for the epochs module - Introduce an error in...

The macro [`fn_execute`](https://github.com/osmosis-labs/test-tube/blob/main/packages/test-tube/src/module/macros.rs) change the visibility of the created function when `pub` is not specified. ```rust ($name:ident: $req:ty[$type_url:expr] => $res:ty) => { pub fn $name( &self, msg: $req, signer: &$crate::SigningAccount,...

# Description This PR introduce the possibility to add custom EIPs to the VM. ## Requirements - Not modify go-ethereum types visibility - Separation of Evmos EIPs from Ethereum EIPs...

tests

# Description This PR has the purpose of allowing the Evmos core to introduce custom EIP. ## Steps - [ ] Geth VM Move the implementation of the EVM from...

proto
CI
tests
precompile
feature

## Description Fix `fn_execute` macro by removing `pub` visibilitity when not specified. ## Issue Closes #54

- Add test for check fees in EVM ante - Add support to test network to use custom decimals. - Add base and EVM coin in test network config. -...

CI
tests
precompile

### Summary Currently, addresses for WEVMOS in mainnet and testnet are handled with this function: ```go func GetWEVMOSContractHex(chainID string) string { id := strings.Split(chainID, "-")[0] address, found := chainsWEVMOSHex[id] //...

### Summary In the function `IsAvailableStaticPrecompile` the native Ethereum precompiles considered are always those associated with the Berlin rule: ```go func (k Keeper) IsAvailableStaticPrecompile(params *types.Params, address common.Address) bool { return...