* abi-gen/test: recompile contract fixtures for 3.0 It seems this hadn't been done since the merge with the 3.0 branch. * Sync `monorepo$ yarn test` exclusions to CI config * sra-spec: correct typo * contract-wrappers: TODO after coord.-server update * utils: fix typo in comment * Refactor networkId to chainId everywhere * Update CHANGELOGs
43 lines
834 B
Python
43 lines
834 B
Python
from typing import Dict, List, Optional, Union
|
|
|
|
from web3.contract import Contract
|
|
from web3.providers.base import BaseProvider
|
|
|
|
|
|
class Web3:
|
|
class HTTPProvider(BaseProvider):
|
|
...
|
|
|
|
def __init__(self, provider: BaseProvider) -> None: ...
|
|
|
|
@staticmethod
|
|
def sha3(
|
|
primitive: Optional[Union[bytes, int, None]] = None,
|
|
text: Optional[str] = None,
|
|
hexstr: Optional[str] = None
|
|
) -> bytes: ...
|
|
|
|
class net:
|
|
version: str
|
|
...
|
|
|
|
class Eth:
|
|
@staticmethod
|
|
def contract(address: str, abi: Dict) -> Contract: ...
|
|
chainId: int
|
|
...
|
|
|
|
eth: Eth
|
|
|
|
class geth:
|
|
class personal:
|
|
@staticmethod
|
|
def listAccounts() -> List[str]:
|
|
...
|
|
...
|
|
...
|
|
|
|
provider: BaseProvider
|
|
|
|
...
|