Federico Kunze
|
20e9b2ede3
|
rpc: event websocket subscription (#308)
* rpc: event websocket subscription
* rpc: use tendermint event subscriptions
* new log events
* filter evm transactions
* filter logs
* wip: refactor filters
* remove custom BlockNumber
* wip: refactor rpc
* HeaderByNumber and HeaderByHash
* update Tendermint event system
* update Filter
* update EventSystem
* fix lint issues
* update rpc filters
* upgrade to tendermint v0.33.4
* update filters
* fix unsubscription
* updates wip
* initialize channels
* cleanup go routines
* pass ResultEvent channel on subscription
* error channel
* add block filter changes test
* add eventCh loop
* pass funcs in select go func, block filter working
* cleanup
* lint
* NewFilter and GetFilterChanges working
* eth_getLogs working
* lint
* lint
* cleanup
* remove logs and minor fixes
* changelog
* address @noot comments
* revert BlockNumber removal
Co-authored-by: noot <elizabethjbinks@gmail.com>
|
2020-07-03 11:40:00 -04:00 |
|
noot
|
e9c494cf71
|
rpc: return 0 nonce if account doesn't exist (#345)
* add EnsureExists check to GetTransactionCount
* cleanup, return 0 as nonce if account doesn't exist
* update changelog
* update changelog
|
2020-06-26 14:15:54 -04:00 |
|
Federico Kunze
|
988ee53a59
|
rpc: implement eth_coinbase (#325)
* rpc: implement eth_coinbase
* changelog
* address comments from review
* changelog
|
2020-06-08 12:43:37 -04:00 |
|
Federico Kunze
|
427e96c1de
|
evm: various fixes (#319)
* evm: use prefix stores, move SetBlockBloom to EndBlock, bug fixes
* add logs to genesis state
* log tests
* commit and finalize on InitGenesis
* validate TransactionLogs
* changelog
* fix test-import
* fix lint
* add more tests
|
2020-06-04 06:40:21 -04:00 |
|
Federico Kunze
|
3526ac12b2
|
evm: GenesisAccount validation (#317)
* evm: GenesisAccount validation
* changelog
* fix tests
* typo
|
2020-05-28 17:22:41 -04:00 |
|
Federico Kunze
|
16df7725c5
|
evm: add missing genesis fields and export genesis state logic (#255)
* evm: export genesis state
* x/evm: split keeper.go
* x/evm: retrieve storage from address
* changelog
* fixes
* add check for nil logs
* update validation func
* fixes
* fix non-determinism
* stop storage iteration
* remove error return value
* update changelog
* fix test
* lint
|
2020-05-18 15:21:12 -04:00 |
|
Federico Kunze
|
d3c802f99e
|
x/evm: logger (#272)
* x/evm: logger
* changelog
* go mod verify and tidy
* typo
|
2020-04-29 23:36:30 -04:00 |
|
Federico Kunze
|
7c5e0afb09
|
SDK modules simulations (#269)
* SDK modules simulations
* changelog
* changelog
|
2020-04-29 11:48:44 -04:00 |
|
Federico Kunze
|
4d609b2a22
|
bump Cosmos SDK version to v0.38.2 (#183)
* evm: move Keeper and Querier to /keeper package
* keeper: update keeper_test.go
* fix format
* evm: use aliased types
* bump SDK version to v0.38.1
* app: updates from new version
* errors: switch sdk.Error -> error
* errors: switch sdk.Error -> error. Continuation
* more fixes
* update app/
* update keys and client pkgs
* build
* fix tests
* lint
* minor changes
* changelog
* address @austinbell comments
* Fix keyring usage in rpc API and CLI
* fix keyring
* break line
* Misc cleanup (#188)
* evm: move Begin and EndBlock to abci.go
* evm: use expected keeper interfaces
* app: use EthermintApp for integration and unit test setup
* evm: remove count type; update codec
* go mod verify
* evm: rename msgs for consistency
* evm: events
* minor cleanup
* lint
* ante: update tests
* changelog
* nolint
* evm: update statedb to create ethermint Account instead of BaseAccount
* fix importer test
* address @austinabell comments
* update README
* changelog
* evm: update codec
* fix event sender
* store logs in keeper after transition (#210)
* add some comments
* begin log handler test
* update TransitionCSDB to return ReturnData
* use rlp for result data encode/decode
* update tests
* implement SetBlockLogs
* implement GetBlockLogs
* test log set/get
* update keeper get/set logs to use hash as key
* fix test
* move logsKey to csdb
* attempt to fix test
* attempt to fix test
* attempt to fix test
* lint
* lint
* lint
* save logs after handling msg
* update k.Logs
* cleanup
* remove unused
* fix issues
* comment out handler test
* address comments
* lint
* fix handler test
* address comments
* use amino
* lint
* address comments
* merge
* fix encoding bug
* minor fix
* rpc: error handling
* rpc: simulate only returns gasConsumed
* rpc: error ineffassign
* go: bump version to 1.14 and SDK version to latest master
* rpc: fix simulation return value
* breaking changes from SDK
* sdk: breaking changes; build
* tests: fixes
* minor fix
* proto: ethermint types attempt
* proto: define EthAccount proto type and extend sdk std.Codec
* evm: fix panic on handler test
* evm: minor state object changes
* cleanup
* tests: update test-importer
* fix pubkey registration
* lint
* cleanup
* more test checks for importer
* minor change
* codec fixes
* rm init func
* fix importer test build
* fix marshaling for TxDecoder
* use amino codec for evm
* fix marshaling for SimulationResponse
* use jsonpb for unmarshaling
* fix method handler crashed
* return err on VerifySig
* switch stateObject balance to sdk.Int
* fixes to codec and encoding
* cleanup
* set tmhash -> ethhash in state transition
* add tmhash->ethereumhash to csdb.GetLogs
* attempt to fix tests
* update GetLogs to switch with Has
* ante panic
* diff changes
* update SetLogs
* evm/cli: use ethermint codec
* use LengthPrefixed for encoding
* add check for nil *big.Int
* add balance to UpdateAccounts
* fix previous balance
* fix balance bug
* prevent panic on make test-import
Co-authored-by: austinabell <austinabell8@gmail.com>
Co-authored-by: noot <36753753+noot@users.noreply.github.com>
Co-authored-by: noot <elizabethjbinks@gmail.com>
|
2020-04-22 15:26:01 -04:00 |
|
Austin Abell
|
33ab63ef15
|
update web3 transaction hash from RLP (#250)
* remove ethereum hash of web3 transaction type (always amino hash)
* Update changelog
|
2020-04-13 19:08:43 -04:00 |
|
noot
|
199484fc2e
|
eth_getFilterLogs, eth_getLogs implementation (#248)
|
2020-04-13 15:18:50 -04:00 |
|
noot
|
db4cee7eac
|
eth_newBlockFilter and related functionality (#232)
* add filter types for block, pending tx, log
* implement pollForBlocks for block filters
* implement getFilterChanges for block filter
* implement uninstall filter by stopping polling
|
2020-04-07 16:00:06 -04:00 |
|
Federico Kunze
|
da9157e406
|
upgrade changes cleanup (#236)
* changes from update version
* app changes
* cmd changes
* build and send tx
* fix tests
* eth_rpc fixes
* lint
* add WithEventManager to handler ctx
* changelog
* go mod verify and tidy
|
2020-04-01 15:49:21 -03:00 |
|
Federico Kunze
|
30f34e6c59
|
evm: move Keeper and Querier to /keeper package (#182)
* evm: move Keeper and Querier to /keeper package
* keeper: update keeper_test.go
* fix format
* evm: use aliased types
* add comments from review
* changelog
|
2020-03-09 10:17:23 -03:00 |
|
Federico Kunze
|
b6af79638c
|
add CHANGELOG.md (#184)
* add CHANGELOG.md
* update PR template
|
2020-03-06 20:00:03 -03:00 |
|