Quick start
Introduction
PyMavryk library is a Python toolset for Mavryk blockchain, including work with keys, signatures, contracts, operations, RPC query builder, and a high-level interface for smart contract interaction. It can be used to build a full-fledged application, but also it’s perfect for doing researches in Jupyter interactive notebooks. In this quick start guide, we’ll go through the main concepts and inspect one of the common use cases.
Requirements
Make sure you have Python 3.8+ installed and set as default in the system.
You also need to install cryptographic packages before installing the library/building the project:
Linux
Use apt or your favourite package manager:
$ sudo apt install libsodium-dev libsecp256k1-dev libgmp-dev
MacOS
Use homebrew:
$ brew tap cuber/homebrew-libsecp256k1
$ brew install libsodium libsecp256k1 gmp
Windows
The recommended way is to use WSL and then follow the instructions for Linux, but if you feel lucky you can try to install natively:
Install MinGW from https://osdn.net/projects/mingw/
Make sure
C:\MinGW\bin
is added to yourPATH
Download the latest libsodium-X.Y.Z-msvc.zip from https://download.libsodium.org/libsodium/releases/.
Extract the Win64/Release/v143/dynamic/libsodium.dll from the zip file
Copy libsodium.dll to C:WindowsSystem32libsodium.dll
Installation
In console:
$ pip install pymavryk
In Google Colab notebook:
>>> !apt install libsodium-dev libsecp256k1-dev libgmp-dev
>>> !pip install pymavryk
[RESTART RUNTIME]
That’s it! You can open Python console or Jupyter notebook and get to the next step.
Set key and RPC node
All active interaction with the blockchain starts with the PyMavrykClient:
>>> from pymavryk import pymavryk
>>> pymavryk
<pymavryk.client.PyMavrykClient object at 0x7f95b0c9e5b0>
Properties
.key mv1VDuhoWLjBMmeM1iTS4g4aapw1Zwkz9ziU
.shell ['https://rpc.tzkt.io/ghostnet']
.block_id head
Helpers
.account()
.activate_account()
.activate_protocol()
.bake_block()
.balance()
.ballot()
.bulk()
.check_message()
.contract()
.delegation()
.double_baking_evidence()
.double_endorsement_evidence()
.endorsement()
.endorsement_with_slot()
.failing_noop()
.now()
.operation()
.operation_group()
.origination()
.proposals()
.register_global_constant()
.reveal()
.seed_nonce_revelation()
.sign_message()
.sleep()
.transaction()
.using()
.wait()
This is one of the cool features in the interactive mode: aside from the autocomplete and call docstrings,
you can see the list of available methods for class, or list of arguments and return value for a particular methods.
We are interested in using
method, which is responsible for setting up manager key and RPC connection.
>>> pymavryk.using
<function PyMavrykClient.using at 0x7f958be02ee0>
Change current RPC endpoint and account (private key).
:param shell: one of 'mainnet', '***net', or RPC node uri, or instance of :class:`pymavryk.rpc.shell.ShellQuery`
:param key: base58 encoded key, path to the faucet file, faucet file itself, alias from octez-client, or `Key`
:param mode: whether to use `readable` or `optimized` encoding for parameters/storage/other
:returns: A copy of current object with changes applied
Note, that by default pymavryk
is initialized with the latest testnet and a predefined private key for demo purpose,
so you can start to interact immediately, but it’s highly recommended to use your own key. Let’s do that!
Generate keys
>>> from pymavryk import Key
>>> key = Key.generate()
>>> key
<pymavryk.crypto.key.Key object at 0x7f958bd3b7f0>
Public key hash
mv1MGgJxyRyNK8vAiE6oCdazu3yZobxuZYNo
Helpers
.blinded_public_key_hash()
.from_alias()
.from_encoded_key()
.from_faucet()
.from_mnemonic()
.from_public_point()
.from_secret_exponent()
.generate()
.public_key()
.public_key_hash()
.secret_key()
.sign()
.verify()
Set key as default
>>> pymavryk = pymavryk.using(key=key)
>>> pymavryk
<pymavryk.client.PyMavrykClient object at 0x7f958b64f190>
Properties
.key mv1Ue5qMgJFNFKkjF9x7z867ciE8imnKX8V3
.shell ['https://rpc.tzkt.io/ghostnet']
.block_id head
Helpers
.account()
.activate_account()
.activate_protocol()
.bake_block()
.balance()
.ballot()
.bulk()
.check_message()
.contract()
.delegation()
.double_baking_evidence()
.double_endorsement_evidence()
.endorsement()
.endorsement_with_slot()
.failing_noop()
.now()
.operation()
.operation_group()
.origination()
.proposals()
.register_global_constant()
.reveal()
.seed_nonce_revelation()
.sign_message()
.sleep()
.transaction()
.using()
.wait()
Top up account
Go to the https://faucet.ghostnet.teztnets.xyz/ <https://faucet.ghostnet.teztnets.xyz/> and paste your public key hash key file to the “Wallet address” field. Press “Request 2001 mav” and wait for transaction to be completed.
Check that your balance is non-zero:
>>> pymavryk.account()
{'balance': '2001000000', 'counter': '1'}
What happened is your account has been allocated by an incoming transaction and its balance is now positive.
Reveal public key
Now, in order to start using this key we need to send the according public key to the chain so that bakers can validate operation signatures.
>>> reveal_op = pymavryk.reveal().send()
>>> reveal_op
<pymavryk.operation.group.OperationGroup object at 0x7f95d73ff3d0>
Properties
.key mv1Ue5qMgJFNFKkjF9x7z867ciE8imnKX8V3
.shell ['https://rpc.tzkt.io/ghostnet']
.block_id head
Hash
oo6e7UjGkvoqXG49VRNuN5cEAjo5TqyiRJtVhTvXETbYDDahDNR
Payload
{'branch': 'BMCwRayudxVKJs68pAGEebhUJAtj6VRHGadkFsau8T7mbCjUXKp',
'contents': [{'counter': '15404826',
'fee': '370',
'gas_limit': '1000',
'kind': 'reveal',
'public_key': 'edpkvHehVYEFJss7VxieJydkdbAwbSNqV9hN4SHo2P6WtsceZ24eaj',
'source': 'mv1Ue5qMgJFNFKkjF9x7z867ciE8imnKX8V3',
'storage_limit': '0'}],
'protocol': 'PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW',
'signature': 'sigPcdMpWx48qsCyotSaHg3RYskNq6RWD2cJT2Nno53yUiJBpTAkGNuMnPvNc17iDqM994TNqckGm85Dxv3C6smKaKYnf7xp'}
Helpers
.activate_account()
.autofill()
.ballot()
.binary_payload()
.delegation()
.double_baking_evidence()
.double_endorsement_evidence()
.endorsement()
.endorsement_with_slot()
.failing_noop()
.fill()
.forge()
.hash()
.inject()
.json_payload()
.message()
.operation()
.origination()
.preapply()
.proposals()
.register_global_constant()
.result()
.reveal()
.run()
.run_operation()
.seed_nonce_revelation()
.send()
.send_async()
.sign()
.transaction()
We can also search for operation by hash if we know exact block level or that it was injected recently:
>>> pymavryk.shell.blocks[-20:].find_operation(reveal_op.opg_hash)
{'protocol': 'PtLimaPtLMwfNinJi9rCfDPWea8dFgTZ1MeJ9f1m2SRic6ayiwW',
'chain_id': 'NetXnHfVqm9iesp',
'hash': 'oo6e7UjGkvoqXG49VRNuN5cEAjo5TqyiRJtVhTvXETbYDDahDNR',
'branch': 'BLvDnmxUXwLMB3UyREj8ckLDdSBgzajyxZJfmoCrifZXhaRaHAL',
'contents': [{'kind': 'reveal',
'source': 'mv1Ue5qMgJFNFKkjF9x7z867ciE8imnKX8V3',
'fee': '370',
'counter': '15404829',
'gas_limit': '1000',
'storage_limit': '0',
'public_key': 'edpkvHehVYEFJss7VxieJydkdbAwbSNqV9hN4SHo2P6WtsceZ24eaj',
'metadata': {'balance_updates': [{'kind': 'contract',
'contract': 'mv1Ue5qMgJFNFKkjF9x7z867ciE8imnKX8V3',
'change': '-370',
'origin': 'block'},
{'kind': 'accumulator',
'category': 'block fees',
'change': '370',
'origin': 'block'}],
'operation_result': {'status': 'applied',
'consumed_milligas': '1000000'}}}],
'signature': 'siggMmepBSUQuavD2ws99CQtt4jRapf5HDiJM3Um26n619Y1ojCcRhxoLampysAMZZDEqVdbUXqGUXLpHzDRaTdRdCZD4p5W'}
Originate contract
Now we can do something interesting. Let’s deploy a Michelson smart contract! First we need to load data, in this
tutorial we will get it from Michelson source file. There are plenty of available methods, but we’are interested in
script
which gives us payload for origination.
>>> from pymavryk import ContractInterface
>>> contract = ContractInterface.from_url('https://raw.githubusercontent.com/baking-bad/pymavryk/master/tests/unit_tests/test_michelson/test_repl/mini_scenarios/ticket_wallet_fungible.tz')
>>> contract.script
<function ContractInterface.script at 0x7fc1768e2c10>
Generate script for contract origination.
:param initial_storage: Python object, leave None to generate default (attach shell/key for smart fill)
:param mode: whether to use `readable` or `optimized` (or `legacy_optimized`) encoding for initial storage
:return: {"code": $Micheline, "storage": $Micheline}
PyMavryk can generate empty storage based on the type description, moreover it can do smart filling with the context provided (network, key). Let’s attach shell and key to the contract interface and see the default storage generated:
>>> ci = contract.using(key=key)
... ci.storage.dummy()
{'manager': 'mv1Ue5qMgJFNFKkjF9x7z867ciE8imnKX8V3', 'tickets': {}}
Perfect! Now we are ready to deploy the contract:
>>> pymavryk.origination(script=ci.script()).send(min_confirmations=1)
{ ... origination operation body ... }
Note that we used synchronous injection this time, PyMavryk does all the polling job for you and freezes the execution until operations is included into a block. Previously we were searching operation using an integer offset (N levels ago), here’s another example how to search an operation using branch:
>>> from pymavryk.operation.result import OperationResult
... opg = pymavryk.shell.blocks['BM8tcfVyd1g8yqqfE8UpasXZWFLS3Xr3cRyYaoKTTfhU9PUr1YR':] \
... .find_operation('ooKx4wBV4DerrXnAEMRfZrwTyBZQQgBMGGD3xbyXeffWn88QC1f')
... res = OperationResult.from_operation_group(opg)
... res[0].originated_contracts[0]
'KT1VtPT2CKekZnQvyR44tTNyWCKrmHdxxYBw'
Bulk injecting
The example we chose is actually a ticket wallet that can only send or receive existing tickets, so we need another contract capable of minting new ones. Simultaneously, we will explore how to batch several operations in a single group.
>>> wallet = ContractInterface \
... .from_url('https://raw.githubusercontent.com/baking-bad/pymavryk/master/tests/unit_tests/test_michelson/test_repl/mini_scenarios/ticket_wallet_fungible.tz') \
... .using(key=key)
...
... builder = ContractInterface \
... .from_url('https://raw.githubusercontent.com/baking-bad/pymavryk/master/tests/unit_tests/test_michelson/test_repl/mini_scenarios/ticket_builder_fungible.tz') \
... .using(key=key)
...
... opg = pymavryk.bulk(
... wallet.originate(),
... builder.originate()
... ).send(min_confirmations=1)
...
... [res.originated_contracts[0] for res in OperationResult.from_operation_group(opg.opg_result)]
['KT1S4UmLNwVcmLBE9VgHKpJJWpKE1JE8VjwN', 'KT1Si4t6ETLoj6eEsjp8hvfJeiFe3b6Z7eM5']
Call an entrypoint
We have our contracts deployed and ready to be invoked, let’s see the list of entrypoints available and their signatures:
>>> builder = pymavryk.contract('KT1Si4t6ETLoj6eEsjp8hvfJeiFe3b6Z7eM5')
... builder.parameter
<pymavryk.contract.entrypoint.ContractEntrypoint object at 0x7f95d57f54c0>
Properties
.key mv1Ue5qMgJFNFKkjF9x7z867ciE8imnKX8V3
.shell ['https://rpc.tzkt.io/ghostnet']
.address KT1Si4t6ETLoj6eEsjp8hvfJeiFe3b6Z7eM5
.block_id head
.entrypoint default
Builtin
(*args, **kwargs) # build transaction parameters (see typedef)
Typedef
$default:
{ "burn": ticket (unit) } ||
{ "mint": $mint }
$mint:
{
"destination": contract ($destination_param),
"amount": nat
}
$destination_param:
ticket unit
$ticket:
/* no literal form, tickets can only be created by another contract */
$contract:
str /* Base58 encoded `KT` address with optional entrypoint */ ||
None /* when you need to avoid type checking */ ||
Undefined /* `from pymavryk import Undefined` for resolving None ambiguity */
$nat:
int /* Natural number */
Helpers
.decode()
.encode()
And for the wallet:
>>> wallet = pymavryk.contract('KT1S4UmLNwVcmLBE9VgHKpJJWpKE1JE8VjwN')
>>> wallet.parameter
<pymavryk.contract.entrypoint.ContractEntrypoint object at 0x7f95d57f5fd0>
Properties
.key mv1Ue5qMgJFNFKkjF9x7z867ciE8imnKX8V3
.shell ['https://rpc.tzkt.io/ghostnet']
.address KT1S4UmLNwVcmLBE9VgHKpJJWpKE1JE8VjwN
.block_id head
.entrypoint default
Builtin
(*args, **kwargs) # build transaction parameters (see typedef)
Typedef
$default:
{ "receive": ticket (unit) } ||
{ "send": $send }
$send:
{
"destination": contract ($destination_param),
"amount": nat,
"ticketer": address
}
$destination_param:
ticket unit
$ticket:
/* no literal form, tickets can only be created by another contract */
$contract:
str /* Base58 encoded `KT` address with optional entrypoint */ ||
None /* when you need to avoid type checking */ ||
Undefined /* `from pymavryk import Undefined` for resolving None ambiguity */
$nat:
int /* Natural number */
$address:
str /* Base58 encoded `mv` or `KT` address */
Helpers
.decode()
.encode()
Seems that we can mint a ticket using our builder and specify our wallet as a destination. Let’s also use bulk API again to demonstrate how to batch contract calls:
>>> opg = pymavryk.bulk(
... builder.mint(destination=f'{wallet.address}%receive', amount=42),
... builder.mint(destination=f'{wallet.address}%receive', amount=123)
... ).send(min_confirmations=1)
>>> wallet.storage['tickets'][builder.address]()
('KT1Si4t6ETLoj6eEsjp8hvfJeiFe3b6Z7eM5', Unit, 165)
Success!
Access storage
We have slightly touched storage access in the previous section, now let’s play with KT1REEb5VxWRjcHm5GzDMwErMmNFftsE5Gpf as it has BigMap entries, named entrypoints, and a non-trivial data scheme.
>>> usds = pymavryk.using('mainnet').contract('KT1REEb5VxWRjcHm5GzDMwErMmNFftsE5Gpf')
>>> usds
<pymavryk.jupyter.ContractInterface object at 0x7fc17689f2b0>
Properties
.key # mv1LDPE2n2mZXbQt3MwR5ZbQU432eag71grX
.shell # https://mainnet-tezos.giganode.io/ (mainnet)
.address # KT1REEb5VxWRjcHm5GzDMwErMmNFftsE5Gpf
.block_id # head
.storage # access storage data at block `block_id`
.parameter # root entrypoint
Entrypoints
.accept_ownership()
.burn()
.call_FA2()
.balance_of()
.transfer()
.update_operators()
.change_master_minter()
.change_pauser()
.configure_minter()
.mint()
.pause()
.permit()
.remove_minter()
.set_expiry()
.set_transferlist()
.transfer_ownership()
.unpause()
.default()
Helpers
.big_map_get()
.create_from()
.from_context()
.from_file()
.from_micheline()
.from_michelson()
.operation_result()
.originate()
.program()
.script()
.to_file()
.to_micheline()
.to_michelson()
.using()
You can access contract storage at any block level, just pass block id into the using
method:
>>> usds.using(block_id='head~10').storage()
{'default_expiry': 300000,
'ledger': -1,
'metadata': -2,
'minting_allowances': {'mv1N913itbcFVECQPzKLzXfgN8jgZ6MaEPwE': 999989000000,
'mv19bzdiWWzVhwLHCCbPjeyLjiUMgdKAxsbF': 999985800000},
'operators': -3,
'paused': False,
'permit_counter': 0,
'permits': -4,
'roles': {'master_minter': 'mv19bzdiWWzVhwLHCCbPjeyLjiUMgdKAxsbF',
'owner': 'mv19bzdiWWzVhwLHCCbPjeyLjiUMgdKAxsbF',
'pauser': 'mv19bzdiWWzVhwLHCCbPjeyLjiUMgdKAxsbF',
'pending_owner': None},
'total_supply': 20200000,
'transferlist_contract': None}
Under the hood PyMavryk has parsed the storage type, collapsed all nested structures, converted annotations into keys, and in the result we get a simple Python object which is much easier to manipulate. You can also access child elements by name or index (depending on the underlying Michelson type). In order to see type definition, just remove the trailing brackets:
>>> usds.storage['ledger']
<pymavryk.contract.data.ContractData object at 0x7f21aaeaca30>
Properties
.key # mv1LDPE2n2mZXbQt3MwR5ZbQU432eag71grX
.shell # https://mainnet-tezos.giganode.io/ (mainnet)
.address # KT1REEb5VxWRjcHm5GzDMwErMmNFftsE5Gpf
.block_id # head
.path # /ledger
Builtin
() # get as Python object
[key] # access child elements by name or index
Typedef
$ledger:
{ address: nat, … } || int /* Big_map ID */
$address:
str /* Base58 encoded `mv` or `KT` address */
$nat:
int /* Natural number */
Helpers
.decode()
.dummy()
.encode()
.to_micheline()
.to_michelson()
BigMap lookup
The approach described in the previous section also works for lazy storage, here’s how you can access Big_map values:
>>> usds.storage['ledger']['mv1N913itbcFVECQPzKLzXfgN8jgZ6MaEPwE']()
11000000
Pretty cool, hah?
View method
In the previous example we queried a token balance for a particular owner.
We can do the same using special entrypoint balance_of
. Let’s give a look at the interface:
>>> usds.balance_of
<pymavryk.contract.entrypoint.ContractEntrypoint object at 0x7f4789170dc0>
Properties
.key # mv1LDPE2n2mZXbQt3MwR5ZbQU432eag71grX
.shell # https://mainnet-tezos.giganode.io/ (mainnet)
.address # KT1REEb5VxWRjcHm5GzDMwErMmNFftsE5Gpf
.block_id # head
.entrypoint # balance_of
Builtin
(*args, **kwargs) # build transaction parameters (see typedef)
Typedef
$balance_of:
{
"requests": [ $requests_item, … ],
"callback": contract ($callback_param)
}
$callback_param:
list (pair (pair %request (address %owner) (nat %token_id)) (nat %balance))
$requests_item:
{
"owner": address,
"token_id": nat
}
$address:
str /* Base58 encoded `mv` or `KT` address */
$nat:
int /* Natural number */
Helpers
.decode()
.encode()
Apparently, we need to pass a list of requests, where each item contains owner address and token ID. In addition to that a callback address is expected which should accept the response (currently there are no on-chain views in Mavryk, this async pattern is a workaround for them). PyMavryk allows you to keep that address empty and get the view result:
>>> usds.balance_of(requests=[
... {'owner': 'mv1N913itbcFVECQPzKLzXfgN8jgZ6MaEPwE', 'token_id': 0},
... {'owner': 'mv19bzdiWWzVhwLHCCbPjeyLjiUMgdKAxsbF', 'token_id': 0},
... {'owner': 'mv2e9VsSX7VxigA4Z9eqMiEtQZdvnS7Go4j4', 'token_id': 0}
...], callback=None).view()
[{'owner': 'mv1N913itbcFVECQPzKLzXfgN8jgZ6MaEPwE',
'token_id': 0,
'nat_2': 11000000},
{'owner': 'mv19bzdiWWzVhwLHCCbPjeyLjiUMgdKAxsbF',
'token_id': 0,
'nat_2': 8200000},
{'owner': 'mv2e9VsSX7VxigA4Z9eqMiEtQZdvnS7Go4j4', 'token_id': 0, 'nat_2': 0}]
Get Contract Balance
Looking for a balance for a contract involves interacting with the contract context. You can inspect the context object to see the methods, or read about it here - pymavryk.context.impl.ExecutionContext
The context object holds general functions for retriving data about a contract/address, including the get_balance() call.
>>> kolibri_oven = pymavryk.using('mainnet').contract('KT1KH3wH4sneEevPVW7AACiVKMjhTvmXLSK6')
>>> print([x for x in dir(kolibri_oven.context) if x.startswith('get_')])
['get_amount', 'get_amount_expr', 'get_balance', 'get_balance_expr', 'get_big_map_diff', 'get_big_map_value', 'get_big_maps_expr', 'get_chain_id', 'get_chain_id_expr', 'get_code_expr', 'get_counter', 'get_counter_offset', 'get_dummy_address', 'get_dummy_chain_id', 'get_dummy_key_hash', 'get_dummy_lambda', 'get_dummy_public_key', 'get_dummy_signature', 'get_input_expr', 'get_level', 'get_now', 'get_now_expr', 'get_operations_ttl', 'get_originated_address', 'get_output_expr', 'get_parameter_expr', 'get_sapling_state_diff', 'get_self_address', 'get_self_expr', 'get_sender', 'get_sender_expr', 'get_source', 'get_source_expr', 'get_storage_expr', 'get_tmp_big_map_id', 'get_tmp_sapling_state_id', 'get_total_voting_power', 'get_voting_power']
>>> kolibri_oven_balance = kolibri_oven.context.get_balance()
>>> print("Kolibri oven {} has XTZ balance {}".format(kolibri_oven.address, kolibri_oven_balance / 1e6))
Kolibri oven KT1KH3wH4sneEevPVW7AACiVKMjhTvmXLSK6 has XTZ balance 191.869689