Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add marionette support to python library #80

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions python/src/skale_contracts/projects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
from .config_controller import ConfigControllerProject as ConfigController
from .context import ContextProject as Context
from .etherbase import EtherbaseProject as Etherbase
from .marionette import MarionetteProject as Marionette
from .paymaster import PaymasterProject as Paymaster
from .ima import \
MainnetImaProject as MainnetIma, \
SchainImaProject as SchainIma
from .skale_manager import SkaleManagerProject as SkaleManager
from .skale_allocator import SkaleAllocatorProject as SkaleAllocator

__all__ = ['ConfigController', 'Context', 'Etherbase', 'MainnetIma',
'Paymaster', 'SchainIma', 'SkaleAllocator', 'SkaleManager']
__all__ = ['ConfigController', 'Context', 'Etherbase', 'Marionette',
'MainnetIma', 'Paymaster', 'SchainIma', 'SkaleAllocator',
'SkaleManager']
56 changes: 56 additions & 0 deletions python/src/skale_contracts/projects/marionette.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
"""Module connects marionette project to the SKALE contracts library"""

from __future__ import annotations
from typing import TYPE_CHECKING
from eth_utils.address import to_canonical_address

from skale_contracts.constants import PREDEPLOYED_ALIAS
from skale_contracts.instance import Instance
from skale_contracts.project import Project

if TYPE_CHECKING:
from eth_typing import Address, ChecksumAddress


class MarionetteInstance(Instance):
"""Represents instance of marionette"""

PREDEPLOYED: dict[str, Address] = {
name: to_canonical_address(address) for name, address in {
'Marionette':
'0xD2c0DeFACe000000000000000000000000000000'
}.items()}

def get_contract_address(
self,
name: str,
*args: str | Address | ChecksumAddress
) -> Address:
if name in self.PREDEPLOYED:
return self.PREDEPLOYED[name]
raise RuntimeError(f"Can't get address of {name} contract")


class MarionetteProject(Project):
"""Represents marionette project"""

@staticmethod
def name() -> str:
return 'marionette'

def get_instance(self, alias_or_address: str) -> Instance:
if alias_or_address == PREDEPLOYED_ALIAS:
return self.create_instance(
MarionetteInstance.PREDEPLOYED['Marionette']
)
return super().get_instance(alias_or_address)

@property
def github_repo(self) -> str:
return 'https://github.com/skalenetwork/marionette/'

def create_instance(self, address: Address) -> Instance:
return MarionetteInstance(self, address)

def get_abi_filename(self, version: str) -> str:
return f'marionette-{version}-abi.json'
Loading