Remove en/decoding advice from readme

This commit is contained in:
Eric Mastro 2022-09-14 16:55:47 +10:00
parent 4baab0bc52
commit 1515580440
No known key found for this signature in database
GPG Key ID: 141E3048D95A4E63
1 changed files with 0 additions and 14 deletions

View File

@ -119,20 +119,6 @@ type
MyEvent = object of Event
a {.indexed.}: DistinctAlias
b: DistinctAlias # also allowed for non-indexed fields
## The below funcs generally need to be included for ABI
## encoding/decoding purposes when implementing distinct types.
func toArray(value: DistinctAlias): array[32, byte] =
array[32, byte](value)
func encode*(encoder: var AbiEncoder, value: DistinctAlias) =
encoder.write(value.toArray)
func decode*(decoder: var AbiDecoder,
T: type DistinctAlias): ?!T =
let d = ?decoder.read(type array[32, byte])
success DistinctAlias(d)
```
You can now subscribe to Transfer events by calling `subscribe` on the contract