2021-11-25 09:33:32 +01:00
|
|
|
Contract ABI
|
|
|
|
============
|
|
|
|
|
|
|
|
Implements encoding of parameters according to the Ethereum
|
|
|
|
[Contract ABI Specification][1].
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
Use the [Nimble][2] package manager to add `contractabi` to an existing project.
|
|
|
|
Add the following to its .nimble file:
|
|
|
|
|
|
|
|
```nim
|
|
|
|
requires "https://github.com/status-im/nim-contract-abi >= 0.1.0 & < 0.2.0"
|
|
|
|
```
|
|
|
|
|
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
|
|
|
```nim
|
|
|
|
import contractabi
|
|
|
|
|
|
|
|
# encode unsigned integers, booleans, enums
|
|
|
|
AbiEncoder.encode(42'u8)
|
|
|
|
|
|
|
|
# encode uint256
|
2021-12-01 17:44:14 +01:00
|
|
|
import stint
|
2021-11-25 09:33:32 +01:00
|
|
|
AbiEncoder.encode(42.u256)
|
|
|
|
|
|
|
|
# encode byte arrays and sequences
|
|
|
|
AbiEncoder.encode([1'u8, 2'u8, 3'u8])
|
|
|
|
AbiEncoder.encode(@[1'u8, 2'u8, 3'u8])
|
|
|
|
|
|
|
|
# encode tuples
|
2021-12-01 10:58:23 +01:00
|
|
|
AbiEncoder.encode( (42'u8, @[1'u8, 2'u8, 3'u8], true) )
|
2021-12-01 11:46:45 +01:00
|
|
|
|
|
|
|
# decode values of different types
|
|
|
|
AbiDecoder.decode(bytes, uint8)
|
|
|
|
AbiDecoder.decode(bytes, UInt256)
|
|
|
|
AbiDecoder.decode(bytes, array[3, uint8])
|
|
|
|
AbiDecoder.decode(bytes, seq[uint8])
|
|
|
|
|
|
|
|
# decode tuples
|
|
|
|
AbiDecoder.decode(bytes, (uint32, bool, seq[byte]) )
|
2021-12-01 17:44:14 +01:00
|
|
|
|
|
|
|
# add support for encoding of custom types
|
|
|
|
import questionable/results
|
|
|
|
|
|
|
|
type CustomType = object
|
|
|
|
a: uint16
|
|
|
|
b: string
|
|
|
|
|
|
|
|
func encode(encoder: var AbiEncoder, custom: CustomType) =
|
|
|
|
encoder.write( (custom.a, custom.b) )
|
|
|
|
|
|
|
|
func decode(decoder: var AbiDecoder, T: type CustomType): ?!T =
|
|
|
|
let (a, b) = ?decoder.read( (uint16, string) )
|
|
|
|
success CustomType(a: a, b: b)
|
|
|
|
|
2021-11-25 09:33:32 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
[1]: https://docs.soliditylang.org/en/latest/abi-spec.html
|
|
|
|
[2]: https://github.com/nim-lang/nimble
|