update remerkleable, union support
This commit is contained in:
parent
d71c50f656
commit
d11586122f
2
setup.py
2
setup.py
|
@ -1017,7 +1017,7 @@ setup(
|
||||||
"py_ecc==5.2.0",
|
"py_ecc==5.2.0",
|
||||||
"milagro_bls_binding==1.6.3",
|
"milagro_bls_binding==1.6.3",
|
||||||
"dataclasses==0.6",
|
"dataclasses==0.6",
|
||||||
"remerkleable==0.1.19",
|
"remerkleable==0.1.20",
|
||||||
RUAMEL_YAML_VERSION,
|
RUAMEL_YAML_VERSION,
|
||||||
"lru-dict==1.1.6",
|
"lru-dict==1.1.6",
|
||||||
MARKO_VERSION,
|
MARKO_VERSION,
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
# Ignore linter: This module makes importing SSZ types easy, and hides away the underlying library from the spec.
|
# Ignore linter: This module makes importing SSZ types easy, and hides away the underlying library from the spec.
|
||||||
|
|
||||||
from remerkleable.complex import Container, Vector, List
|
from remerkleable.complex import Container, Vector, List
|
||||||
|
from remerkleable.union import Union
|
||||||
from remerkleable.basic import boolean, bit, uint, byte, uint8, uint16, uint32, uint64, uint128, uint256
|
from remerkleable.basic import boolean, bit, uint, byte, uint8, uint16, uint32, uint64, uint128, uint256
|
||||||
from remerkleable.bitfields import Bitvector, Bitlist
|
from remerkleable.bitfields import Bitvector, Bitlist
|
||||||
from remerkleable.byte_arrays import ByteVector, Bytes1, Bytes4, Bytes8, Bytes32, Bytes48, Bytes96, ByteList
|
from remerkleable.byte_arrays import ByteVector, Bytes1, Bytes4, Bytes8, Bytes32, Bytes48, Bytes96, ByteList
|
||||||
|
|
Loading…
Reference in New Issue