mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-08 08:53:45 +00:00
16 lines
296 B
Nim
16 lines
296 B
Nim
import pkg/ethers
|
|
import ../clock
|
|
import ../marketplace
|
|
import ../market
|
|
|
|
export clock
|
|
|
|
type ContractInteractions* = ref object of RootObj
|
|
clock*: Clock
|
|
|
|
method start*(self: ContractInteractions) {.async, base.} =
|
|
discard
|
|
|
|
method stop*(self: ContractInteractions) {.async, base.} =
|
|
discard
|