This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix packaging (#1) * use find packages * bump version * add test mocks to package * bump version * gsed -> sed * fix scripts * add mock utils * add changelog notes
- Loading branch information
1 parent
14c89ec
commit 27b0554
Showing
14 changed files
with
316 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v0.0.1 | ||
v0.0.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# The MIT License (MIT) | ||
# Copyright © 2023 Opentensor Technologies | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
# documentation files (the “Software”), to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | ||
# and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
# the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
# DEALINGS IN THE SOFTWARE. | ||
|
||
from .wallet_mock import MockWallet as MockWallet | ||
from .keyfile_mock import MockKeyfile as MockKeyfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
# The MIT License (MIT) | ||
|
||
# Copyright © 2021 Yuma Rao | ||
# Copyright © 2022 Opentensor Foundation | ||
# Copyright © 2023 Opentensor Technologies | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
# documentation files (the “Software”), to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | ||
# and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
# the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
# DEALINGS IN THE SOFTWARE. | ||
|
||
from bittensor_wallet import serialized_keypair_to_keyfile_data, Keyfile | ||
from bittensor_wallet import Keypair | ||
|
||
class MockKeyfile( Keyfile ): | ||
""" Defines an interface to a mocked keyfile object (nothing is created on device) keypair is treated as non encrypted and the data is just the string version. | ||
""" | ||
def __init__( self, path: str ): | ||
super().__init__( path ) | ||
|
||
self._mock_keypair = Keypair.create_from_mnemonic( mnemonic = 'arrive produce someone view end scout bargain coil slight festival excess struggle' ) | ||
self._mock_data = serialized_keypair_to_keyfile_data( self._mock_keypair ) | ||
|
||
def __str__(self): | ||
if not self.exists_on_device(): | ||
return "Keyfile (empty, {})>".format( self.path ) | ||
if self.is_encrypted(): | ||
return "Keyfile (encrypted, {})>".format( self.path ) | ||
else: | ||
return "Keyfile (decrypted, {})>".format( self.path ) | ||
|
||
def __repr__(self): | ||
return self.__str__() | ||
|
||
@property | ||
def keypair( self ) -> 'Keypair': | ||
return self._mock_keypair | ||
|
||
@property | ||
def data( self ) -> bytes: | ||
return bytes(self._mock_data) | ||
|
||
@property | ||
def keyfile_data( self ) -> bytes: | ||
return bytes( self._mock_data) | ||
|
||
def set_keypair ( self, keypair: 'Keypair', encrypt: bool = True, overwrite: bool = False, password:str = None): | ||
self._mock_keypair = keypair | ||
self._mock_data = serialized_keypair_to_keyfile_data( self._mock_keypair ) | ||
|
||
def get_keypair(self, password: str = None) -> 'Keypair': | ||
return self._mock_keypair | ||
|
||
def make_dirs( self ): | ||
return | ||
|
||
def exists_on_device( self ) -> bool: | ||
return True | ||
|
||
def is_readable( self ) -> bool: | ||
return True | ||
|
||
def is_writable( self ) -> bool: | ||
return True | ||
|
||
def is_encrypted ( self ) -> bool: | ||
return False | ||
|
||
def encrypt( self, password: str = None): | ||
raise ValueError('Cannot encrypt a mock keyfile') | ||
|
||
def decrypt( self, password: str = None): | ||
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# The MIT License (MIT) | ||
# Copyright © 2023 Opentensor Technologies | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
# documentation files (the “Software”), to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | ||
# and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
# the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
# DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
from typing import Optional | ||
|
||
from Crypto.Hash import keccak | ||
|
||
|
||
from bittensor_wallet import __ss58_format__ | ||
|
||
from .. import MockWallet | ||
from ...keypair_impl import Keypair | ||
|
||
|
||
def get_mock_wallet(coldkey: "Keypair" = None, hotkey: "Keypair" = None): | ||
wallet = MockWallet( | ||
name = 'mock_wallet', | ||
hotkey = 'mock', | ||
path = '/tmp/mock_wallet', | ||
) | ||
|
||
if not coldkey: | ||
coldkey = Keypair.create_from_mnemonic(Keypair.generate_mnemonic()) | ||
if not hotkey: | ||
hotkey = Keypair.create_from_mnemonic(Keypair.generate_mnemonic()) | ||
|
||
wallet.set_coldkey(coldkey, encrypt=False, overwrite=True) | ||
wallet.set_coldkeypub(coldkey, encrypt=False, overwrite=True) | ||
wallet.set_hotkey(hotkey, encrypt=False, overwrite=True) | ||
|
||
return wallet | ||
|
||
def get_mock_keypair( uid: int, test_name: Optional[str] = None ) -> Keypair: | ||
""" | ||
Returns a mock keypair from a uid and optional test_name. | ||
If test_name is not provided, the uid is the only seed. | ||
If test_name is provided, the uid is hashed with the test_name to create a unique seed for the test. | ||
""" | ||
if test_name is not None: | ||
hashed_test_name: bytes = keccak.new(digest_bits=256, data=test_name.encode('utf-8')).digest() | ||
hashed_test_name_as_int: int = int.from_bytes(hashed_test_name, byteorder='big', signed=False) | ||
uid = uid + hashed_test_name_as_int | ||
|
||
return Keypair.create_from_seed( seed_hex = int.to_bytes(uid, 32, 'big', signed=False), ss58_format = __ss58_format__) | ||
|
||
def get_mock_hotkey( uid: int ) -> str: | ||
return get_mock_keypair(uid).ss58_address | ||
|
||
def get_mock_coldkey( uid: int ) -> str: | ||
return get_mock_keypair(uid).ss58_address |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# The MIT License (MIT) | ||
|
||
# Copyright © 2021 Yuma Rao | ||
# Copyright © 2022 Opentensor Foundation | ||
# Copyright © 2023 Opentensor Technologies | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
# documentation files (the “Software”), to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | ||
# and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
# the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
# DEALINGS IN THE SOFTWARE. | ||
|
||
import os | ||
import bittensor | ||
import bittensor_wallet | ||
|
||
from .keyfile_mock import MockKeyfile | ||
|
||
class MockWallet(bittensor_wallet.Wallet): | ||
""" | ||
Mocked Version of the bittensor wallet class, meant to be used for testing | ||
""" | ||
def __init__( | ||
self, | ||
**kwargs, | ||
): | ||
r""" Init bittensor wallet object containing a hot and coldkey. | ||
Args: | ||
_mock (required=True, default=False): | ||
If true creates a mock wallet with random keys. | ||
""" | ||
super().__init__(**kwargs) | ||
# For mocking. | ||
self._is_mock = True | ||
self._mocked_coldkey_keyfile = None | ||
self._mocked_hotkey_keyfile = None | ||
|
||
print("---- MOCKED WALLET INITIALIZED- ---") | ||
|
||
@property | ||
def hotkey_file(self) -> 'bittensor_wallet.Keyfile': | ||
if self._is_mock: | ||
if self._mocked_hotkey_keyfile == None: | ||
self._mocked_hotkey_keyfile = MockKeyfile(path='MockedHotkey') | ||
return self._mocked_hotkey_keyfile | ||
else: | ||
wallet_path = os.path.expanduser(os.path.join(self.path, self.name)) | ||
hotkey_path = os.path.join(wallet_path, "hotkeys", self.hotkey_str) | ||
return bittensor.keyfile( path = hotkey_path ) | ||
|
||
@property | ||
def coldkey_file(self) -> 'bittensor_wallet.Keyfile': | ||
if self._is_mock: | ||
if self._mocked_coldkey_keyfile == None: | ||
self._mocked_coldkey_keyfile = MockKeyfile(path='MockedColdkey') | ||
return self._mocked_coldkey_keyfile | ||
else: | ||
wallet_path = os.path.expanduser(os.path.join(self.path, self.name)) | ||
coldkey_path = os.path.join(wallet_path, "coldkey") | ||
return bittensor.keyfile( path = coldkey_path ) | ||
|
||
@property | ||
def coldkeypub_file(self) -> 'bittensor_wallet.Keyfile': | ||
if self._is_mock: | ||
if self._mocked_coldkey_keyfile == None: | ||
self._mocked_coldkey_keyfile = MockKeyfile(path='MockedColdkeyPub') | ||
return self._mocked_coldkey_keyfile | ||
else: | ||
wallet_path = os.path.expanduser(os.path.join(self.path, self.name)) | ||
coldkeypub_path = os.path.join(wallet_path, "coldkeypub.txt") | ||
return bittensor_wallet.Keyfile( path = coldkeypub_path ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.