We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1671fd0 commit a96b68dCopy full SHA for a96b68d
src/arkiv/utils.py
@@ -5,8 +5,8 @@
5
import logging
6
from typing import Any
7
8
+import brotli # type: ignore[import-untyped]
9
import rlp # type: ignore[import-untyped]
-import zstd # type: ignore[import-untyped]
10
from eth_typing import BlockNumber, ChecksumAddress, HexStr
11
from hexbytes import HexBytes
12
from web3 import Web3
@@ -195,7 +195,7 @@ def to_tx_params(
195
196
# Merge provided tx_params with encoded transaction data
197
data = rlp_encode_transaction(operations)
198
- data_compressed = zstd.compress(data)
+ data_compressed = brotli.compress(data)
199
200
tx_params |= {
201
"to": STORAGE_ADDRESS,
0 commit comments