├── .envrc.example ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum └── main.go /.envrc.example: -------------------------------------------------------------------------------- 1 | export NODE_ENDPOINT= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xpanoramix/eth-mempool-listener-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xpanoramix/eth-mempool-listener-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xpanoramix/eth-mempool-listener-go/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xpanoramix/eth-mempool-listener-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xpanoramix/eth-mempool-listener-go/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xpanoramix/eth-mempool-listener-go/HEAD/main.go --------------------------------------------------------------------------------