コード例 #1
0
    def test_verbose_display(self, MockKeyStore, MockAddressBook, MockTable, mock_create_api, mock_get_balance,
                             mock_get_stake, *args):
        key_store = MockKeyStore()
        key_store.list_keys.return_value = ['sample']
        key_store.lookup_address.return_value = SAMPLE_ADDRESS

        address_book = MockAddressBook()
        address_book.items.return_value = [('other', 'another-address')]

        mock_get_balance.side_effect = [10, 5]
        mock_get_stake.side_effect = [5, 10]

        api = mock_create_api()
        mock_create_api.reset_mock()

        args = Mock()
        args.verbose = True
        args.network = 'bar-net'
        args.pattern = ['*']

        table = MockTable()
        MockTable.reset_mock()

        # run the command
        from pocketbook.commands.list import run_list
        run_list(args)

        MockTable.assert_called_once_with(['name', 'type', 'balance', 'stake', 'address'])
        mock_create_api.assert_called_once_with('bar-net')
        key_store.lookup_address.assert_called_once_with('sample')

        self.assertEqual(mock_get_balance.call_args_list, [call(api, SAMPLE_ADDRESS), call(api, 'another-address')])
        self.assertEqual(mock_get_stake.call_args_list, [call(api, SAMPLE_ADDRESS), call(api, 'another-address')])

        # check that we call the correct number of calls
        expected_row_calls = [
            call(name='sample', type='key', balance=token_amount(10), stake=token_amount(5), address=SAMPLE_ADDRESS),
            call(name='other', type='addr', balance=token_amount(5), stake=token_amount(10), address='another-address'),
        ]
        self.assertEqual(table.add_row.call_args_list, expected_row_calls)
        table.display.assert_called_once_with()
コード例 #2
0
ファイル: list.py プロジェクト: fetchai/tools-pocketbook
def run_list(args):
    from pocketbook.address_book import AddressBook
    from pocketbook.key_store import KeyStore
    from pocketbook.table import Table
    from pocketbook.utils import create_api, get_balance, get_stake, token_amount

    # the latest version of SDK will generate warning because we are using the staking API
    warnings.simplefilter('ignore')

    address_book = AddressBook()
    key_store = KeyStore()
    keys = key_store.list_keys()

    if len(keys) == 0:
        print('No keys present')
    else:

        # select the columns
        cols = ['name', 'type', 'balance', 'stake']
        if args.verbose:
            cols.append('address')

        api = create_api(args.network)

        table = Table(cols)
        for key in keys:
            if not _should_display(key, args.pattern):
                continue

            address = key_store.lookup_address(key)
            balance = get_balance(api, address)
            stake = get_stake(api, address)

            row_data = {
                'name': key,
                'type': 'key',
                'balance': token_amount(balance),
                'stake': token_amount(stake),
                'address': str(address),
            }

            table.add_row(**row_data)

        for name, address in address_book.items():
            if not _should_display(name, args.pattern):
                continue

            balance = get_balance(api, address)
            stake = get_stake(api, address)

            row_data = {
                'name': name,
                'type': 'addr',
                'balance': token_amount(balance),
                'stake': token_amount(stake),
                'address': str(address),
            }

            table.add_row(**row_data)

        table.display()
コード例 #3
0
def run_transfer(args):
    from getpass import getpass

    from fetchai.ledger.crypto import Address
    from fetchai.ledger.api.token import TokenTxFactory

    from pocketbook.address_book import AddressBook
    from pocketbook.key_store import KeyStore
    from pocketbook.utils import create_api, from_canonical, token_amount

    address_book = AddressBook()
    key_store = KeyStore()

    # choose the destination
    destination_name = '{}:'.format(args.destination)
    if args.destination in address_book.keys():
        destination = address_book.lookup_address(args.destination)
    else:
        destination = key_store.lookup_address(args.destination)
        if destination is None:
            destination = Address(args.destination)
            destination_name = ''

    # convert the amount
    amount = args.amount
    charge_rate = args.charge_rate
    computed_amount = from_canonical(amount)

    # check all the signers make sense
    for signer in args.signers:
        if signer not in key_store.list_keys():
            raise RuntimeError('Unknown key: {}'.format(signer))

    # determine the from account
    from_address_name = None
    if len(args.signers) == 1 and args.from_address is None:
        from_address_name = args.signers[0]
    elif len(args.signers) >= 1 and args.from_address is not None:
        present = args.from_address in key_store.list_keys() or args.from_address in address_book.keys()
        from_address_name = args.from_address
        if not present:
            raise RuntimeError('Unknown from address: {}'.format(args.from_address))
    else:
        raise RuntimeError('Unable to determine from account')

    required_ops = len(args.signers)
    fee = required_ops * charge_rate
    computed_fee = from_canonical(fee)
    computed_total = computed_amount + computed_fee
    computed_charge_rate = from_canonical(charge_rate)

    print('Network....:', args.network)
    print('From.......:', str(from_address_name))
    print('Signer(s)..:', ','.join(args.signers))
    print('Destination:', destination_name, str(destination))
    print('Amount.....:', token_amount(computed_amount))
    print('Fee........:', token_amount(computed_fee))

    # only display extended fee information if something other than the default it selected
    if charge_rate != 1:
        print('           : {} ops @ {}'.format(required_ops, token_amount(computed_charge_rate)))

    print('Total......:', token_amount(computed_total), '(Amount + Fee)')
    print()
    input('Press enter to continue')

    api = create_api(args.network)

    # start unsealing the private keys
    entities = {}
    for signer in args.signers:
        entity = key_store.load_key(signer, getpass('Enter password for key {}: '.format(signer)))
        entities[signer] = entity

    from_address = None
    if from_address_name in entities:
        from_address = Address(entities[from_address_name])
    elif from_address_name in address_book.keys():
        from_address = Address(address_book.lookup_address(from_address_name))

    # cache the signers
    signers = list(entities.values())

    # build up the basic transaction information
    tx = TokenTxFactory.transfer(Address(from_address), destination, amount, 0, signers)
    tx.charge_rate = charge_rate
    tx.charge_limit = required_ops
    api.set_validity_period(tx)
    for entity in signers:
        tx.sign(entity)

    tx_digest = api.submit_signed_tx(tx)
    print('TX: 0x{} submitted'.format(tx_digest))

    # submit the transaction
    print('Waiting for transaction to be confirmed...')
    api.sync(tx_digest)
    print('Waiting for transaction to be confirmed...complete')

    # determine if there is a block explorer link to be printed
    explorer_link = None
    if args.network == 'mainnet':
        explorer_link = 'https://explore.fetch.ai/transactions/0x{}'.format(tx_digest)
    elif args.network == 'testnet':
        explorer_link = 'https://explore-testnet.fetch.ai/transactions/0x{}'.format(tx_digest)

    if explorer_link is not None:
        print()
        print('See {} for more details'.format(explorer_link))
コード例 #4
0
 def test_token_amount_formatting(self):
     self.assertEqual(token_amount(1), '         1.0000000000 FET')
     self.assertEqual(token_amount(1.0), '         1.0000000000 FET')
     self.assertEqual(token_amount(1.2), '         1.2000000000 FET')
     self.assertEqual(token_amount(1.002), '         1.0020000000 FET')
     self.assertEqual(token_amount(1e-10), '         0.0000000001 FET')
     self.assertEqual(token_amount(1e-8), '         0.0000000100 FET')
     self.assertEqual(token_amount(1e-3), '         0.0010000000 FET')
     self.assertEqual(token_amount(1e-6), '         0.0000010000 FET')
     self.assertEqual(token_amount(1e-9), '         0.0000000010 FET')
     self.assertEqual(token_amount(1e3), '      1000.0000000000 FET')
     self.assertEqual(token_amount(1e6), '   1000000.0000000000 FET')
     self.assertEqual(token_amount(1e9), '1000000000.0000000000 FET')