Skip to content

Commit def9010

Browse files
committed
chore: switch to kuest eip712 module
1 parent 7b7fa8c commit def9010

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

py_order_utils/builders/base_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from ..signer import Signer
22
from ..utils import normalize_address, prepend_zx
3-
from poly_eip712_structs import make_domain, EIP712Struct
3+
from kuest_eip712_structs import make_domain, EIP712Struct
44
from eth_utils import keccak
55

66

py_order_utils/model/order.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from ..constants import ZERO_ADDRESS
44
from .signatures import EOA
5-
from poly_eip712_structs import Address, EIP712Struct, Uint
5+
from kuest_eip712_structs import Address, EIP712Struct, Uint
66

77

88
@dataclass

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
eth-account===0.13.0
22
eth-utils===4.1.1
3-
poly_eip712_structs==0.0.1
4-
pytest==8.2.2
3+
kuest_eip712_structs @ git+https://github.com/kuestcom/py-eip712-structs@main
4+
pytest==8.2.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
install_requires=[
1818
"eth-utils>=4.1.1",
1919
"eth-account>=0.13.0",
20-
"poly-eip712-structs",
20+
"kuest-eip712-structs",
2121
"pytest",
2222
],
2323
package_data={

0 commit comments

Comments
 (0)