mirror of
https://github.com/codex-storage/nim-ethers.git
synced 2025-02-13 20:06:29 +00:00
12 lines
205 B
Nim
12 lines
205 B
Nim
import ./basics
|
|
|
|
export basics
|
|
|
|
push: {.upraises: [].}
|
|
|
|
type
|
|
Provider* = ref object of RootObj
|
|
|
|
method getBlockNumber*(provider: Provider): Future[UInt256] {.base.} =
|
|
doAssert false, "not implemented"
|