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 c999b38 commit 0e0f770Copy full SHA for 0e0f770
packages/sdk/utils/clients.py
@@ -35,7 +35,6 @@ async def populated_transaction(
35
transaction_payload = {
36
"nonce": nonce,
37
"from": account,
38
- # "chainId": self.chain_id,
39
}
40
41
if value is not None:
@@ -48,11 +47,9 @@ class WalletClient(PublicClient):
48
47
def __init__(
49
self,
50
rpc_url: str,
51
- chain_id: int,
52
private_key: str,
53
):
54
super().__init__(rpc_url)
55
- self.chain_id = chain_id
56
self.account = self.w3.eth.account.from_key(private_key)
57
58
async def populated_transaction(
0 commit comments