ethgo icon indicating copy to clipboard operation
ethgo copied to clipboard

Ethereum Golang API

Results 17 ethgo issues
Sort by recently updated
recently updated
newest added

The current `testutil` does not premine any accounts at genesis and uses the `dev` unlocked accounts to send transactions and fund other accounts with the `eth_sendTransaction` endpoint. There are two...

Can implement ethersjs on("pending",function())?

the following curl requests are not returned consistently from nodes block [1067050](https://etherscan.io/block/1067050) ``` curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionReceipt","params":["0xcbb8db2cec3fa38e2ff221462708252bbbe32abb57e5a43f402155880d2883e0"],"id":1}' ``` block [15627984](https://etherscan.io/block/15627984) ``` curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionReceipt","params":["0xdd002538bd3165c8aed8a7435f965420bca4406951e490190f4271302a4c5254"],"id":1}' ``` the error...

## fix https://github.com/umbracle/ethgo/issues/216 ## refactor https://github.com/huahuayu/ethgo/issues/1 ## dependency upgrade https://github.com/huahuayu/ethgo/issues/2

## Env Mac m1 macos 12.4 Docker Desktop 4.10.1 ## Issue When run `abi/encoding_test.go/TestEncoding(t *testing.T)` function The `testsuit/server.go` `NewTestServer()` created a geth client, but port 8545 can't be reached. ```go...

If it's nil, EstimateGas will return a "stack underflow" error.

look at the [code](https://github.com/umbracle/ethgo/blob/main/etherscan/etherscan.go#L44C1-L44C1) here, api pass in but not set to the Etherscan object.

[There](https://ethereum.github.io/execution-apis/api-documentation/) is a documentation of the ethereum api. I expected the library to implement all the necessary methods, e.g. eth_coinbase, that i didn't find [there](https://github.com/umbracle/ethgo/blob/main/jsonrpc/eth.go) Maybe you should implement a...