mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-05 15:13:10 +00:00
9 lines
176 B
Nim
9 lines
176 B
Nim
import ./basics
|
|
|
|
export basics
|
|
|
|
type Signer* = ref object of RootObj
|
|
|
|
method getAddress*(signer: Signer): Future[Address] {.base, async.} =
|
|
doAssert false, "not implemented"
|