mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-04 14:43:09 +00:00
17 lines
362 B
Nim
17 lines
362 B
Nim
import ./basics
|
|
import ./transaction
|
|
|
|
export basics
|
|
export transaction
|
|
|
|
push: {.upraises: [].}
|
|
|
|
type
|
|
Provider* = ref object of RootObj
|
|
|
|
method getBlockNumber*(provider: Provider): Future[UInt256] {.base.} =
|
|
doAssert false, "not implemented"
|
|
|
|
method call*(provider: Provider, tx: Transaction): Future[seq[byte]] {.base.} =
|
|
doAssert false, "not implemented"
|