mirror of
https://github.com/logos-storage/nim-ethers.git
synced 2026-01-05 15:13:10 +00:00
10 lines
226 B
Nim
10 lines
226 B
Nim
|
|
import pkg/stew/byteutils
|
||
|
|
import ./basics
|
||
|
|
|
||
|
|
type Transaction* = object
|
||
|
|
to*: Address
|
||
|
|
data*: seq[byte]
|
||
|
|
|
||
|
|
func `$`*(transaction: Transaction): string =
|
||
|
|
"(to: " & $transaction.to & ", data: 0x" & $transaction.data.toHex & ")"
|