2020-11-18 15:15:57 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
import re
|
2022-06-13 20:33:09 +00:00
|
|
|
import time
|
2020-11-18 15:15:57 +00:00
|
|
|
|
2022-06-13 20:33:09 +00:00
|
|
|
from common import (MAINNET_WALLET_PATH, MORPH_ENDPOINT,
|
|
|
|
NEO_MAINNET_ENDPOINT, NEOFS_CONTRACT, MAINNET_SINGLE_ADDR)
|
2022-06-09 13:08:11 +00:00
|
|
|
import rpc_client
|
2022-06-13 20:33:09 +00:00
|
|
|
import contract
|
|
|
|
import converters
|
2022-06-24 10:36:02 +00:00
|
|
|
from wallet import nep17_transfer
|
2021-12-16 06:51:26 +00:00
|
|
|
from wrappers import run_sh_with_passwd_contract
|
2022-06-13 20:33:09 +00:00
|
|
|
from converters import load_wallet
|
2022-06-24 10:36:02 +00:00
|
|
|
from neo3 import wallet
|
2022-06-13 20:33:09 +00:00
|
|
|
|
|
|
|
from robot.api.deco import keyword
|
|
|
|
from robot.api import logger
|
|
|
|
from robot.libraries.BuiltIn import BuiltIn
|
|
|
|
|
2020-11-18 15:15:57 +00:00
|
|
|
|
2021-04-20 09:51:53 +00:00
|
|
|
ROBOT_AUTO_KEYWORDS = False
|
2020-11-18 15:15:57 +00:00
|
|
|
|
2021-08-25 17:08:54 +00:00
|
|
|
MORPH_TOKEN_POWER = 12
|
2022-06-13 20:33:09 +00:00
|
|
|
EMPTY_PASSWORD = ''
|
|
|
|
MAINNET_WALLET_PASS = 'one'
|
|
|
|
TX_PERSIST_TIMEOUT = 15 #seconds
|
|
|
|
|
|
|
|
NEOGO_CLI_EXEC = BuiltIn().get_variable_value("${NEOGO_CLI_EXEC}")
|
2021-08-25 17:08:54 +00:00
|
|
|
|
2022-06-13 20:33:09 +00:00
|
|
|
morph_rpc_cli = rpc_client.RPCClient(MORPH_ENDPOINT)
|
2021-08-25 17:08:54 +00:00
|
|
|
mainnet_rpc_cli = rpc_client.RPCClient(NEO_MAINNET_ENDPOINT)
|
2020-11-18 15:15:57 +00:00
|
|
|
|
|
|
|
|
2020-11-30 10:33:05 +00:00
|
|
|
@keyword('Withdraw Mainnet Gas')
|
2022-06-24 10:36:02 +00:00
|
|
|
def withdraw_mainnet_gas(wlt: str, amount: int):
|
|
|
|
address = _address_from_wallet(wlt, EMPTY_PASSWORD)
|
|
|
|
scripthash = wallet.Account.address_to_script_hash(address)
|
|
|
|
|
2021-01-17 11:55:10 +00:00
|
|
|
cmd = (
|
2022-06-13 20:33:09 +00:00
|
|
|
f"{NEOGO_CLI_EXEC} contract invokefunction -w {wlt} -a {address} "
|
2021-01-17 11:55:10 +00:00
|
|
|
f"-r {NEO_MAINNET_ENDPOINT} {NEOFS_CONTRACT} withdraw {scripthash} "
|
2021-05-26 14:14:46 +00:00
|
|
|
f"int:{amount} -- {scripthash}:Global"
|
2021-01-17 11:55:10 +00:00
|
|
|
)
|
2020-11-18 15:15:57 +00:00
|
|
|
|
|
|
|
logger.info(f"Executing command: {cmd}")
|
2021-12-16 06:51:26 +00:00
|
|
|
out = (run_sh_with_passwd_contract('', cmd, expect_confirmation=True)).decode('utf-8')
|
2020-11-18 15:15:57 +00:00
|
|
|
logger.info(f"Command completed with output: {out}")
|
2020-11-29 00:46:53 +00:00
|
|
|
m = re.match(r'^Sent invocation transaction (\w{64})$', out)
|
|
|
|
if m is None:
|
2020-11-30 10:43:19 +00:00
|
|
|
raise Exception("Can not get Tx.")
|
2020-11-29 00:46:53 +00:00
|
|
|
tx = m.group(1)
|
2022-06-13 20:33:09 +00:00
|
|
|
if not transaction_accepted(tx):
|
|
|
|
raise RuntimeError(f"TX {tx} hasn't been processed")
|
2020-11-18 15:15:57 +00:00
|
|
|
|
|
|
|
|
2022-06-13 20:33:09 +00:00
|
|
|
def transaction_accepted(tx_id: str):
|
2020-11-18 15:15:57 +00:00
|
|
|
"""
|
2022-06-13 20:33:09 +00:00
|
|
|
This function returns True in case of accepted TX.
|
|
|
|
Args:
|
|
|
|
tx_id(str): transaction ID
|
|
|
|
Returns:
|
|
|
|
(bool)
|
2020-11-18 15:15:57 +00:00
|
|
|
"""
|
|
|
|
|
2021-08-25 17:08:54 +00:00
|
|
|
try:
|
2022-06-13 20:33:09 +00:00
|
|
|
for _ in range(0, TX_PERSIST_TIMEOUT):
|
|
|
|
time.sleep(1)
|
|
|
|
resp = mainnet_rpc_cli.get_transaction_height(tx_id)
|
|
|
|
if resp is not None:
|
|
|
|
logger.info(f"TX is accepted in block: {resp}")
|
|
|
|
return True
|
2022-06-24 10:36:02 +00:00
|
|
|
except Exception as out:
|
|
|
|
logger.info(f"request failed with error: {out}")
|
|
|
|
raise out
|
2022-06-13 20:33:09 +00:00
|
|
|
return False
|
2020-11-18 15:15:57 +00:00
|
|
|
|
|
|
|
|
2021-05-07 12:14:37 +00:00
|
|
|
@keyword('Get NeoFS Balance')
|
2022-06-13 20:33:09 +00:00
|
|
|
def get_balance(wallet_path: str):
|
2020-11-18 15:15:57 +00:00
|
|
|
"""
|
2022-06-13 20:33:09 +00:00
|
|
|
This function returns NeoFS balance for given wallet.
|
2020-11-18 15:15:57 +00:00
|
|
|
"""
|
2022-06-13 20:33:09 +00:00
|
|
|
wlt = load_wallet(wallet_path)
|
|
|
|
acc = wlt.accounts[-1]
|
2021-08-25 17:08:54 +00:00
|
|
|
payload = [
|
2022-06-09 13:08:11 +00:00
|
|
|
{
|
|
|
|
'type': 'Hash160',
|
|
|
|
'value': str(acc.script_hash)
|
|
|
|
}
|
|
|
|
]
|
2021-08-25 17:08:54 +00:00
|
|
|
try:
|
|
|
|
resp = morph_rpc_cli.invoke_function(
|
2022-06-13 20:33:09 +00:00
|
|
|
contract.get_balance_contract_hash(MORPH_ENDPOINT),
|
|
|
|
'balanceOf',
|
|
|
|
payload
|
|
|
|
)
|
|
|
|
logger.info(f"Got response \n{resp}")
|
2021-08-25 17:08:54 +00:00
|
|
|
value = int(resp['stack'][0]['value'])
|
2022-06-09 13:08:11 +00:00
|
|
|
return value / (10 ** MORPH_TOKEN_POWER)
|
2022-06-24 10:36:02 +00:00
|
|
|
except Exception as out:
|
|
|
|
logger.error(f"failed to get wallet balance: {out}")
|
|
|
|
raise out
|
2020-11-18 15:15:57 +00:00
|
|
|
|
|
|
|
|
2022-06-13 20:33:09 +00:00
|
|
|
@keyword('Transfer Mainnet Gas')
|
|
|
|
def transfer_mainnet_gas(wallet_to: str, amount: int, wallet_password: str = EMPTY_PASSWORD):
|
|
|
|
'''
|
|
|
|
This function transfer GAS in main chain from mainnet wallet to
|
|
|
|
the provided wallet. If the wallet contains more than one address,
|
|
|
|
the assets will be transferred to the last one.
|
|
|
|
Args:
|
|
|
|
wallet_to (str): the path to the wallet to transfer assets to
|
|
|
|
amount (int): amount of gas to transfer
|
|
|
|
wallet_password (optional, str): password of the wallet; it is
|
|
|
|
required to decode the wallet and extract its addresses
|
|
|
|
Returns:
|
|
|
|
(void)
|
|
|
|
'''
|
2022-06-24 10:36:02 +00:00
|
|
|
address_to = _address_from_wallet(wallet_to, wallet_password)
|
2022-06-13 20:33:09 +00:00
|
|
|
|
2022-06-24 10:36:02 +00:00
|
|
|
txid = nep17_transfer(MAINNET_WALLET_PATH, address_to, amount, NEO_MAINNET_ENDPOINT,
|
2022-06-13 20:33:09 +00:00
|
|
|
wallet_pass=MAINNET_WALLET_PASS, addr_from=MAINNET_SINGLE_ADDR)
|
|
|
|
if not transaction_accepted(txid):
|
|
|
|
raise RuntimeError(f"TX {txid} hasn't been processed")
|
|
|
|
|
|
|
|
|
|
|
|
@keyword('NeoFS Deposit')
|
|
|
|
def neofs_deposit(wallet_to: str, amount: int, wallet_password: str = EMPTY_PASSWORD):
|
|
|
|
"""
|
|
|
|
Transferring GAS from given wallet to NeoFS contract address.
|
|
|
|
"""
|
|
|
|
# get NeoFS contract address
|
|
|
|
deposit_addr = converters.contract_hash_to_address(NEOFS_CONTRACT)
|
|
|
|
logger.info(f"NeoFS contract address: {deposit_addr}")
|
|
|
|
|
2022-06-24 10:36:02 +00:00
|
|
|
address_to = _address_from_wallet(wallet_to, wallet_password)
|
2022-06-13 20:33:09 +00:00
|
|
|
|
2022-06-24 10:36:02 +00:00
|
|
|
txid = nep17_transfer(wallet_to, deposit_addr, amount, NEO_MAINNET_ENDPOINT,
|
2022-06-13 20:33:09 +00:00
|
|
|
wallet_pass=wallet_password, addr_from=address_to)
|
|
|
|
if not transaction_accepted(txid):
|
|
|
|
raise RuntimeError(f"TX {txid} hasn't been processed")
|
2022-06-24 10:36:02 +00:00
|
|
|
|
|
|
|
def _address_from_wallet(wlt: str, wallet_password: str):
|
|
|
|
"""
|
|
|
|
Extracting the address from the given wallet.
|
|
|
|
Args:
|
|
|
|
wlt (str): the path to the wallet to extract address from
|
|
|
|
wallet_password (str): the password for the given wallet
|
|
|
|
Returns:
|
|
|
|
(str): the address for the wallet
|
|
|
|
"""
|
|
|
|
wallet_loaded = load_wallet(wlt, wallet_password)
|
|
|
|
address = wallet_loaded.accounts[-1].address
|
|
|
|
logger.info(f"got address: {address}")
|
|
|
|
return address
|