HackMD
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Implementing Asset Contracts on Tezos In this post, we describe our first implementation of a managed asset ledger based on an initial [asset interface standard](https://medium.com/tocqueville-group/assets-on-tezos-3c103e03abc9?postPublishedType=initial) proposed last week. We implement the managed asset ledger in [Lorentz](https://hackage.haskell.org/package/morley-0.3.0.1/docs/Lorentz.html), an embedded DSL for [Michelson](http://tezos.gitlab.io/mainnet/whitedoc/michelson.html) written in Haskell. Using Lorentz allows us to take advantage of Haskell's type system and gain some constructions from high-level languages relatively cheaply. Our implementation extends the functionality of a simple asset ledger with `Mint`, `Burn` and `Pause` operations. This enables contract deployers to customize how or if the asset ledger is managed, whether by a trusted third party, a multisig, a DAO, or no administrator at all. In fact, we are putting this implementation to use in our work with Elevated Returns and [Securitize](securitize.io). Specifically, we have re-created Securitize's [DS protocol](https://github.com/securitize-io/DSTokenInterfaces) on Tezos. Future implementations will look to newer interface standards which improve on this initial model. We also look forward to seeing other developers write and deploy similar asset contract implementations using native [Michelson](https://tezos.gitlab.io/mainnet/whitedoc/michelson.html), [LIGO](https://ligolang.org), and [SmartPy](https://smartpy.io/). In fact, a very preliminary SmartPy implementation is already [available here](https://smartpy.io/demo/index.html?template=FA1.2.py). We also dive into our efforts to property and unit test the asset contract using the [Morley framework](https://hackage.haskell.org/package/morley). As mentioned in [the last week's post](https://medium.com/tocqueville-group/assets-on-tezos-3c103e03abc9?postPublishedType=initial), **efforts by [Nomadic Labs](https://www.nomadic-labs.com/) are also underway to specify this standard and to formally prove the implementation respects the specification.** **Nomadic Labs also plans to integrate a verified implementation natively into the Tezos client, making it easier for any user to create and manage assets safely on Tezos.** This would complement the verified [multisig contract](https://gitlab.com/tezos/tezos/commit/7bbb5ac06b9135a0fe32c1ec079cd2caacda463d) recently incorporated into the Tezos client. ## **Key Resources** * [Blog post](https://medium.com/tocqueville-group/assets-on-tezos-3c103e03abc9?postPublishedType=initial) proposing an initial interface standard for assets on Tezos * [Full description of our managed ledger contract](https://gitlab.com/tzip/tzip/blob/master/assets/FA1.2/ManagedLedger.md) (and how to deploy it) * [Lorentz code](https://gitlab.com/morley-framework/morley/blob/436127c4b2a4fe9c3f0fb512dc01148a96be9be6/lorentz-contracts/src/Lorentz/Contracts/ManagedLedger.hs) and the resulting [Michelson contract](https://gitlab.com/tzip/tzip/blob/master/assets/FA1.2/ManagedLedger.tz) * [Hackage](https://hackage.haskell.org/package/morley) and [Gitlab](https://gitlab.com/morley-framework/morley) for Morley ## Contract overview In creating this contract, we followed the initial [asset interface standard](https://medium.com/tocqueville-group/assets-on-tezos-3c103e03abc9?postPublishedType=initial) proposed last week. As discussed, this initial interface standard proposal is inspired by ERC-20. As an implementation it provides transfer and approval operations, along with related methods to view balances distribution among the participants. Unlike ERC-20: `transfer` and `transferFrom` endpoints are merged into one `transfer` for simplicity. It is still possible to distinguish them internally: if transfer source account is exactly the sender of the current transaction, then the `transfer` logic is used, and otherwise we perform `transferFrom`. The resulting interface in Michelson has been published under the [FA1.2 standard](https://gitlab.com/tzip/tzip/blob/master/A/FA1.2.md). It describes the expected pattern of a contract parameter, approach to errors and so on. Having only transfer operations is not enough for all functionality of an asset ledger and at least we need a way to produce those tokens which will be used by ledger participants. Thus our contract keeps an _administrator_ address. It is set by the contract originator and refers to a contract with an exclusive right to mint funds. Additional operations available for the administrator include: * `Mint` produces funds on someone's account; * `Burn` destroys a portion of funds; * `Pause` allows temporarily preventing transfers and approvals from happening. An asset ledger can also be implemented with a dummy address as the _administrator_, eliminating ***any*** administrator's right to control the ledger via `Mint`,`Burn`, and `Pause`. This can be done either at the time of the contract origination or the contract's administrator can be updated to a dummy address afterwards. Below we present the technical description of the contract's code and tests. ## Contract implementation types Every Tezos smart contract is divided in three parts: * **storage** – an on-chain piece of memory space that the contract uses to store its data; * **parameter type** – a data type that the contract expects the caller to pass; * **code** – the contract's implementation. In this section, we will concentrate on the types of the contract's storage and parameter. We will also describe the special Error type used to inform the contract users of a certain error condition. These types will serve as a base for our implementation. ### Storage The storage of every complex Michelson contract consists of two parts: a `big_map` keeping a data registry (for instance, balances of token participants) and a set of individual fields. Our contract is no exception. Let's start with the latter. Our contract keeps the address of a token administrator, whether the contract is currently paused and total balance of all the participants. For this purpose, we declare a plain Haskell datatype: ```haskell data StorageFields = StorageFields { manager :: Address , paused :: Bool , totalSupply :: Natural } deriving stock Generic deriving anyclass IsoValue ``` Note the following part in the end: ```haskell deriving stock Generic deriving anyclass IsoValue ``` It puts `StorageFields` type in line with some Michelson type. In given case, this type will be a `pair address (pair bool nat)`. If our datatype contained more fields, a best effort attempt to balance the resulting tree of `pair`s would be taken. Next, we need to use `big_map` which, for each participant, stores its balances and approvals allocated to other accounts. The values of the map are represented as ```haskell type LedgerValue = ( "balance" :! Natural , "approvals" :! Map Address Natural ) ``` This definition is very similar that of a Haskell datatype. We declare `LedgerValue` to be an alias for a pair, each element of which is labeled with a name. Using this kind of definition rather than a datatype definition is simpler when the type has only a few fields. The entire storage looks like ```haskell data Storage = Storage { ledger :: BigMap Address LedgerValue , fields :: StorageFields } deriving stock Generic deriving anyclass IsoValue ``` Such object declarations are close to the notion of _records_ used in Liquidity [^liquidity] - a high-level functional language which compiles to Michelson. However, as will be shown further, we stick to the stack-based nature of Michelson, which potentially allows for more efficient implementations. ### Parameter The parameter should be formed in a way that allows the contract to provide multiple "functions" or _entry points_. According to FA1.2, the parameter should be a comb of `Or`s, each standing for a single entry point. Then each leaf of this comb contains arguments for this entry point. Herewith, our parameter should be presented as follows (we omit some of the entry points for clarity) ``` or TransferParams (or ApproveParams (or GetAllowanceParams ...)) ``` where entry points' arguments are defined as ```haskell type TransferParams = ( "from" :! Address , "to" :! Address , "deltaVal" :! Natural ) type ApproveParams = ( "to" :! Address , "val" :! Address ) type GetAllowanceParams = View ("from" :! Address, "to" :! Address) Natural ... ``` `View` in `GetBalanceParams` designates a getter and means that if you provide an `Address` argument and another contract accepting `Natural`, this entry point will execute the provided contract with evaluated balance. (As long as Michelson contracts do not return values, this is the most straightforward implementation for getters). For more details, see the "Michelson Contract Interfaces and Conventions" [^A1] document. ### Errors Our contract declares a set of errors which are raised via `FAILWITH` instruction in case of bad user input. We assume that each exceptional situation should be labeled with information about error kind and maybe some error details if serializing them is cheap. Thus, errors are represented as pairs of type `(string, data)`, where the first argument is a unique error tag and the second argument is data carried by the given error. The same approach to errors is taken in FA1.2. In our case, the following errors are declared (here we mention only the most interesting error kinds): ```haskell data Error = NotEnoughBalance ("required" :! Natural, "present" :! Natural) | NotEnoughAllowance ("required" :! Natural, "present" :! Natural) | OperationsArePaused ... deriving stock (Eq, Generic) deriveCustomError ''Error ``` The last line defines association between our errors and Michelson types as mentioned above. This way, we gain the following representations: * `OperationsArePaused` is converted to `("OperationsArePaused", Unit)`; * `NotEnoughBalance (50, 30)` is converted to `("NotEnoughBalance", (50, 30))`. ## Implementation And here we come to contract code. Let's start from the simple `SetPause` entry point. ```haskell dip authorizeAdmin dip (getField #fields); setField #paused; setField #fields nil; pair ``` As the Haskell naming convention assumes, we write instructions in lower-case. Considering step by step: * `dip` is plain old Michelson instruction which skips the top of the stack. * `authorizeAdmin` - calls a function declared externally, we will return to its definition later. * `getField #fields` performs a sequence of `CAR` and `CDR` to get storage's `fields` element. * `setField #paused` picks `Bool` and `StorageFields` from stack and using `CAR`, `CDR` and `PAIR` instructions sets `paused` field of the latter. * `nil; pair` is just a common end of entry point producing no operation. Note how much more legible contract looks like compared to the version where we would have to use only bare `CAR` and `PAIR` instructions/macros. Now let's take a look at `authorizeAdmin` definition: ```haskell authorizeAdmin :: Storage : s :-> Storage : s authorizeAdmin = do getField #fields; toField #admin; sender; eq if_ nop (failUsing SenderIsNotAdmin) ``` As the first line suggests, this Haskell function defines a piece of code which accepts and returns a stack with `Storage` at top. Instruction `failUsing` pushes given error value and fails with it. As FA1.2 [suggests](https://gitlab.com/tzip/tzip/blob/master/A/FA1.2_faq.md#sender-vs-source), we tend to use `SENDER` instruction for authorization rather than `SOURCE`. Now let's take a look at a more interesting entry point - `transfer`. Its code is presented in the following snippet: ```haskell dip ensureNotPaused getField #to; dip (getField #from) if IsEq then drop else do stackType @[TransferParams, Storage] getFieldNamed #from; dip (dupT @Storage); needAllowance if_ (do dup @TransferParams; dip consumeAllowance) nop creditTo; debitFrom drop @TransferParams nil; pair ``` <!-- TODO probably most part of syntax explanation is unnecessary, but I'm not sure (@martoon) --> Dissecting its contents: * At lines 3-5, we check whether an account tries to transfer money to itself. You could notice unusual `if then else` construction usage, in which place of condition is taken by `IsEq` thing. This is possible due to `RebindableSyntax` Haskell extension, which allows redefining basic parts of the language. Since in a stack-based language one cannot pick a value to put it into `if`'s condition, we instead specify a predicate on value at top of the stack, similarily to how assembly language does for registers. * `stackType` is an instruction from Morley extension, it has the semantics of `NOP` but constraints type of the current stack. Expression `@...` is Haskell type annotation syntax, and its meaning depends on the instruction it is applied to. For `stackType` developer specifies the type of stack, while (as you can notice at line 8 below) for `dup` one can specify the type of duplicated element, for `drop` - type of removed element. A developer is free to omit type annotations fully or partially. Nevertheless, they not only help a reader to track what is happening, but also cause type checker to fail earlier when modifying the code incorrectly thus speeding up the development process. * At lines 7-8, we consume allowance if an attempt to spend foreign funds is performed. `dupT` instruction is a variation of `DUUP` macro where programmer specifies the desired type rather than stack index. * Finally, we increase funds of the destination account and decrease funds of the source. The whole code of the contract in Lorentz can be found [here](https://gitlab.com/morley-framework/morley/blob/436127c4b2a4fe9c3f0fb512dc01148a96be9be6/lorentz-contracts/src/Lorentz/Contracts/ManagedLedger.hs). Its dump into plain Michelson resides [here](https://gitlab.com/tzip/tzip/blob/master/assets/FA1.2/ManagedLedger.tz). ## Testing To check that our contract indeed does what it is intended to do, we have implemented a bunch of integrational tests. Each test case is a scenario consisting of operations which users usually do with contracts - originate them, transfer money to them and so on. Let's take a look at an example: ```haskell it "Balance is initially empty" $ integrationalTestProperty $ do ml <- originateEmptyManagedLedger consumer <- originateEmpty contractConsumer "consumer" call ml $ GetBalance (View wallet1 consumer) validate . Right $ expectViewConsumerStorage consumer [0] ``` Line by line: * We originate our Managed Ledger contract. * We originate a contract which will be used to receive the result of a call to `GetBalance`. * We send some marginal amount of funds to the Managed Ledger, executing the `GetBalance` entry point. * Finally we write down a condition for a successful test - consumer should have been called once with `0` argument. `Right` argument in `validate` means that we expect the given steps to finish without exceptions. Function `integrationalTestProperty` just runs an interpretation of the given scenario. Tentatively, we do some preparations: ```haskell -- | Dummy wallet addresses. wallet1, wallet2 :: Address wallet1 = genesisAddress1 -- an address with some mutez on it wallet2 = genesisAddress2 -- | Dummy administrator address. admin :: Address admin = genesisAddress3 -- | Constructs initial storage. mkStorage :: Address -> Storage mkStorage adminAddress = Storage { ledger = mempty , fields = StorageFields { admin = adminAddress , paused = False , totalSupply = 0 } } -- | Originates the managed ledger. originateEmptyManagedLedger :: IntegrationalScenarioM (ContractAddr Parameter) originateEmptyManagedLedger = originate contract_Managed_ledger "Managed ledger" (mkStorage admin) (toMutez 1000) ``` Tests writer can specify an address which he operates on behalf of. Here is an example where we pretend that the token administrator performs a transaction: ```haskell it "Can mint money" $ integrationalTestProperty $ do ml <- originateEmptyManagedLedger consumer <- originateEmpty contractConsumer "consumer" withSender admin . call ml $ Mint ( #to .! wallet1 , #deltaVal .! 10 ) call ml $ GetBalance (View wallet1 consumer) validate . Right $ expectViewConsumerStorage consumer [10] ``` Other building blocks for testing scenarios include changing the current time visible by a contract via `NOW` instruction or setting a currently remaining gas limit, which allows for more comprehensive validation. Testing that user actions are correct is certainly a good idea. Nonetheless, best practices suggest that every exceptional scenario should also have a test covering it. One of the reasons we use a datatype to represent errors (instead of just a string) is to make it possible to reliably match against produced errors. Let's illustrate this with an example: ```haskell it "Cannot transfer too much money" $ integrationalTestProperty $ do ml <- originateManagedLedger 10 withSender wallet1 . call ml $ Transfer ( #from .! wallet1 , #to .! wallet2 , #deltaVal .! 11 ) validate . Left $ expectUserError (== NotEnoughBalance (#required .! 11, #present .! 10)) ``` This time we used `originateManagedLedger` function, which initially allocates a given amount of funds to our wallets. `Left` argument in `validate` means that we expect the scenario to fail, and further goes a predicate on the produced error - failure should indicate "insufficient balance" error and carry a bit of information explaining why. The full set of unit tests can be found [here](https://gitlab.com/morley-framework/morley/blob/436127c4b2a4fe9c3f0fb512dc01148a96be9be6/lorentz-contracts/test/Test/Lorentz/Contracts/ManagedLedger.hs). In the presented code snippets, we have slightly simplified function naming compared to the actual implementation for clarity. Another common approach involves state machine tests, in which we reimplement the contract logic in the simplest possible way using our favourite language. Next, we ensure that these implementations behave in the same way on arbitrary sequences of calls to our contract. We have implemented such tests for simpler contracts, and the Managed Ledger is the next in line. ## Conclusion (and Next Steps) Assets offer a prime use case for smart contract platforms. Establishing a common interface is crucial for a wide range of projects and businesses that want to create and manage assets on Tezos. It's worth noting that the interface standard and implementation described throughout this piece are our initial proposals. We also demonstrated how Lorentz development looks like on this sample contract, and how our testing framework can be used to write tests for Lorentz contracts. This work, at its core, is about more than a standard proposal. Rather, it is a step towards extending Tezos infrastructure and making it more developer-friendly and sustainable for the long run. We also intend to build on this work by contributing to future asset standards and writing new implementations which offer expanded functionality and improve on our initial work. ## Sources [^michelson]: https://tezos.gitlab.io/master/whitedoc/michelson.html [^tezos]: https://tezos.com/ [^A1]: https://gitlab.com/tzip/tzip/blob/master/A/A1.md [^liquidity]: http://www.liquidity-lang.org/

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully