Skip to content

Commit

Permalink
Merge branch 'main' into ud/cli-account
Browse files Browse the repository at this point in the history
  • Loading branch information
Unique-Divine authored Aug 24, 2024
2 parents 1d54f44 + 924f9c4 commit 34bd1bb
Show file tree
Hide file tree
Showing 13 changed files with 5,191 additions and 1,937 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#1997](https://github.com/NibiruChain/nibiru/pull/1997) - refactor(evm): Remove unnecessary params: "enable_call", "enable_create".
- [#2000](https://github.com/NibiruChain/nibiru/pull/2000) - refactor(evm): simplify ERC-20 keeper methods
- [#2001](https://github.com/NibiruChain/nibiru/pull/2001) - refactor(evm): simplify FunToken methods and tests
- [#2002](https://github.com/NibiruChain/nibiru/pull/2002) - feat(evm): Add the account query to the EVM command. Cover the CLI with tests.
- [#2003](https://github.com/NibiruChain/nibiru/pull/2003) - fix(evm): fix FunToken conversions between Cosmos and EVM
- [#2004](https://github.com/NibiruChain/nibiru/pull/2004) - refactor(evm)!: replace `HexAddr` with `EIP55Addr`
- [#2008](https://github.com/NibiruChain/nibiru/pull/2008) - refactor(evm): clean up precompile setups
- [#2002](https://github.com/NibiruChain/nibiru/pull/2002) - feat(evm): Add the account query to the EVM command. Cover the CLI with tests.
- [#2006](https://github.com/NibiruChain/nibiru/pull/2006) - test(evm): e2e tests for eth_* endpoints
- [#2008](https://github.com/NibiruChain/nibiru/pull/2008) - refactor(evm): clean up precompile setups
- [#2013](https://github.com/NibiruChain/nibiru/pull/2013) - chore(evm): Set appropriate gas value for the required gas of the "IFunToken.sol" precompile.
- [#2014](https://github.com/NibiruChain/nibiru/pull/2014) - feat(evm): Emit block bloom event in EndBlock hook.

#### Dapp modules: perp, spot, oracle, etc

Expand Down
5 changes: 4 additions & 1 deletion e2e/evm/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
module.exports = {
testEnvironment: 'node',
testMatch: ['**/test/**/*.test.js'],
transform: {
'^.+\\.(ts|tsx)?$': 'ts-jest',
},
testMatch: ['**/test/**/*.test.ts'],
verbose: true,
"maxWorkers": 1
};
2 changes: 1 addition & 1 deletion e2e/evm/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ gen-types:

# Runs the E2E tests
test:
bun test
npm test

# Format
fmt:
Expand Down
Loading

0 comments on commit 34bd1bb

Please sign in to comment.