Source code for multiversx_sdk.core.interfaces

from typing import Protocol

from multiversx_sdk.core.address import Address


[docs] class INetworkConfig(Protocol): min_gas_limit: int gas_per_data_byte: int gas_price_modifier: float
[docs] class IAccount(Protocol): @property def address(self) -> Address: ...
[docs] def sign(self, data: bytes) -> bytes: ...