mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-02-09 13:23:29 +00:00
3907ca4095
* Add get active slot /slots/{slotId} to REST api, use utils/json - Add endpoint /slots/{slotId} to get an active SalesAgent from the Sales module. Used in integration tests to test when a sale has reached a certain state. Those integration test changes will be included in a larger PR, coming later. - Add OpenAPI changes for new endpoint and associated components - Use utils/json instead of nim-json-serialization. Required exemption of imports from several packages that export nim-json-serialization by default. * Only except `toJson` from import/export of chronicles
30 lines
662 B
Nim
30 lines
662 B
Nim
import pkg/ethers
|
|
import pkg/chronicles
|
|
|
|
import ../../sales
|
|
import ./interactions
|
|
|
|
export sales
|
|
export chronicles except toJson
|
|
|
|
type
|
|
HostInteractions* = ref object of ContractInteractions
|
|
sales*: Sales
|
|
|
|
proc new*(
|
|
_: type HostInteractions,
|
|
clock: Clock,
|
|
sales: Sales
|
|
): HostInteractions =
|
|
## Create a new HostInteractions instance
|
|
##
|
|
HostInteractions(clock: clock, sales: sales)
|
|
|
|
method start*(self: HostInteractions) {.async.} =
|
|
await procCall ContractInteractions(self).start()
|
|
await self.sales.start()
|
|
|
|
method stop*(self: HostInteractions) {.async.} =
|
|
await self.sales.stop()
|
|
await procCall ContractInteractions(self).start()
|