Repository URL to install this package:
|
Version:
1.19.2+sf.0 ▾
|
from typing import TypeVar
from brownie.network.account import Accounts
from brownie.network.transaction import TransactionReceipt
# NETWORK
# Account
AccountsType = TypeVar("AccountsType", bound=Accounts)
# Transactions
TransactionReceiptType = TypeVar("TransactionReceiptType", bound=TransactionReceipt)