diff --git a/.buildkite/check-trailing-whitespace.sh b/.buildkite/check-trailing-whitespace.sh index 1bfb01e2..d009d88a 100755 --- a/.buildkite/check-trailing-whitespace.sh +++ b/.buildkite/check-trailing-whitespace.sh @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT #!/usr/bin/env bash files=$(git ls-files -- . | xargs grep --files-with-matches --binary-files=without-match '[[:blank:]]$') diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 7650733e..e96ef097 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT env: diff --git a/.editorconfig b/.editorconfig index 74cd7314..3db5ac0c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT # top-most EditorConfig file diff --git a/.gitignore b/.gitignore index f6fe3703..2305d1d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT .DS_Store .stack-work/ diff --git a/.reuse/dep5 b/.reuse/dep5 index fb61f135..43cbb836 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -1,7 +1,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Files: .github/* nix/sources.json -Copyright: 2020 tqtezos +Copyright: 2020 TQ Tezos License: MIT Files: nix/sources.nix diff --git a/ChangeLog.md b/ChangeLog.md index 7dbbc462..8dfd5f74 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,11 +1,19 @@ # Changelog for stablecoin -## Unreleased +## 1.2.0 +Operations on the contract got cheaper in this release: + +* [#96](https://github.com/tqtezos/stablecoin/pull/96) + Metadata was moved into a separate contract. +* [#95](https://github.com/tqtezos/stablecoin/pull/95) + Maximal number of minters is limited, they are stored in strict `map`. +* [#89](https://github.com/tqtezos/stablecoin/pull/89) + Prune 0 balance accounts from the storage. * [#85](https://github.com/tqtezos/stablecoin/pull/92) Removed `permissions_descriptor` entrypoint. Removed 'total_supply' from storage. diff --git a/LICENSE b/LICENSE index 11d9872e..ba4733d7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 tqtezos +Copyright (c) 2020 TQ Tezos Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt index 84ef9496..7ddb9de7 100644 --- a/LICENSES/MIT.txt +++ b/LICENSES/MIT.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 tqtezos +Copyright (c) 2020 TQ Tezos Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index cf2334f5..8bf93a52 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT .PHONY: all build-ligo build-haskell optimize-ligo test test-dumb-term test-hide-successes nettest clean diff --git a/README.md b/README.md index 3481f7bb..6ccb6784 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ @@ -13,21 +13,22 @@ The contract is implemented in the [LIGO language](https://ligolang.org/). See the [`ligo/`](ligo/) folder. Contract specification is [available](/docs/specification.md). +## Stablecoin client + +We have a `stablecoin-client` executable that allows deploying and interacting with the stablecoin contract. +You can download it as a static Linux binary from GitHub [releases](https://github.com/tqtezos/stablecoin/releases). +Please refer to the [`haskell/`](/haskell/) directory for details. + ## Haskell bindings Apart from LIGO implementation of the contract we have [a Haskell library](haskell/) with data types corresponding to this contract. It is based on the [morley framework](https://gitlab.com/morley-framework/morley). It allows us to use features of `morley` (such as testing engine) with this contract. -## Stablecoin client - -We have a `stablecoin-client` executable that allows deploying and interacting with the stablecoin contract. -Please refer to the [`haskell/`] directory for details. - ## Tests Tests are implemented in the same Haskell package. -Please refer to the [`haskell/`] directory for details. +Please refer to the [`haskell/`](/haskell/) directory for details. ## Issue Tracker diff --git a/default.nix b/default.nix index 84ee8322..26c82cac 100644 --- a/default.nix +++ b/default.nix @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT { sources ? import ./nix/sources.nix diff --git a/docs/code-style.md b/docs/code-style.md index e506a80d..47c86879 100644 --- a/docs/code-style.md +++ b/docs/code-style.md @@ -1,5 +1,5 @@ diff --git a/docs/specification.md b/docs/specification.md index 61d7c8a0..939dfff1 100644 --- a/docs/specification.md +++ b/docs/specification.md @@ -1,5 +1,5 @@ diff --git a/haskell/.weeder.yaml b/haskell/.weeder.yaml index edb10f5e..fb1f93ba 100644 --- a/haskell/.weeder.yaml +++ b/haskell/.weeder.yaml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT - package: - name: stablecoin diff --git a/haskell/ChangeLog.md b/haskell/ChangeLog.md index b8e2016b..261f30ca 100644 --- a/haskell/ChangeLog.md +++ b/haskell/ChangeLog.md @@ -1,5 +1,5 @@ # Changelog for Stablecoin Haskell diff --git a/haskell/LICENSE b/haskell/LICENSE index 11d9872e..ba4733d7 100644 --- a/haskell/LICENSE +++ b/haskell/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 tqtezos +Copyright (c) 2020 TQ Tezos Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/haskell/Makefile b/haskell/Makefile index 6ed56c56..19553c52 100644 --- a/haskell/Makefile +++ b/haskell/Makefile @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT .PHONY: build test test-dumb-term test-hide-successes nettest haddock haddock-no-deps stylish lint clean all diff --git a/haskell/README.md b/haskell/README.md index 5b04aec4..c08adddc 100644 --- a/haskell/README.md +++ b/haskell/README.md @@ -1,5 +1,5 @@ @@ -10,12 +10,15 @@ This folder contains: 1. a Haskell library to interact with the stablecoin contract (basically Haskell bindings) and tests for it. 2. a `stablecoin-client` executable to deploy and interact with the stablecoin contract. -## Build Instructions +## Install Instructions + +You can download static `stablecoin-client` binary for Linux from GitHub [releases](https://github.com/tqtezos/stablecoin/releases). +Alternatively, you can build this package from sources. You need [Stack](http://haskellstack.org/) to build this package. To build the library and the executable: -1. Copy the stablecoin contract to `test/resources/stablecoin.tz` and then run `stack build`. +1. Copy or symlink the stablecoin and metadata contracts to `test/resources/` and then run `stack build`. 2. Or, alternatively, run `make build`. Run `stack install` to install the `stablecoin-client` globally. @@ -30,6 +33,6 @@ Otherwise, run `stack run stablecoin-client -- --help`. ## Tests -Tests require the stablecoin contract to be in `test/resources/stablecoin.tz`. -After you put it there you can do `stack test` to run tests. +Tests require the stablecoin and metadata contracts to be in `test/resources/`. +After you put them there you can do `stack test` to run tests. We have a [`Makefile`](Makefile) that automates this process, so you can run `make test`. diff --git a/haskell/client/Main.hs b/haskell/client/Main.hs index 991b09b6..af489efa 100644 --- a/haskell/client/Main.hs +++ b/haskell/client/Main.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Main diff --git a/haskell/hpack/definitions.yaml b/haskell/hpack/definitions.yaml index ca33bc6c..e2674f51 100644 --- a/haskell/hpack/definitions.yaml +++ b/haskell/hpack/definitions.yaml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT # This file defines sensible defaults but does not actually apply @@ -9,7 +9,7 @@ _definitions: - &meta author: Serokell, TQ Tezos maintainer: Serokell - copyright: 2020 tqtezos + copyright: 2020 TQ Tezos license: MIT license-file: LICENSE git: git@github.com:tqtezos/stablecoin.git diff --git a/haskell/hpack/module.yaml b/haskell/hpack/module.yaml index 8c4ad8d8..328ace5e 100644 --- a/haskell/hpack/module.yaml +++ b/haskell/hpack/module.yaml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT # Include this file in your module's `package.yaml` to set sensible defaults diff --git a/haskell/nettest/Main.hs b/haskell/nettest/Main.hs index ac14d304..8bb488d7 100644 --- a/haskell/nettest/Main.hs +++ b/haskell/nettest/Main.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Main ( main diff --git a/haskell/nettest/Nettest.hs b/haskell/nettest/Nettest.hs index b65611a0..aa78ded5 100644 --- a/haskell/nettest/Nettest.hs +++ b/haskell/nettest/Nettest.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Nettest diff --git a/haskell/nettest/StablecoinClientTest.hs b/haskell/nettest/StablecoinClientTest.hs index b7e42daf..556646f8 100644 --- a/haskell/nettest/StablecoinClientTest.hs +++ b/haskell/nettest/StablecoinClientTest.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT {-# LANGUAGE OverloadedLists #-} diff --git a/haskell/package.yaml b/haskell/package.yaml index c76b63f7..eb703e94 100644 --- a/haskell/package.yaml +++ b/haskell/package.yaml @@ -1,10 +1,10 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT <<: !include "./hpack/module.yaml" name: stablecoin -version: 1.1.0 +version: 1.2.0 extra-source-files: - README.md diff --git a/haskell/src/Indigo/Contracts/Transferlist/External.hs b/haskell/src/Indigo/Contracts/Transferlist/External.hs index 9859bb1a..6587df10 100644 --- a/haskell/src/Indigo/Contracts/Transferlist/External.hs +++ b/haskell/src/Indigo/Contracts/Transferlist/External.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT -- | This a dummy file that resembles lorentz-contract-transferlist parameter needed for origination. diff --git a/haskell/src/Lorentz/Contracts/Spec/FA2Interface.hs b/haskell/src/Lorentz/Contracts/Spec/FA2Interface.hs index 1872259d..7561752e 100644 --- a/haskell/src/Lorentz/Contracts/Spec/FA2Interface.hs +++ b/haskell/src/Lorentz/Contracts/Spec/FA2Interface.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT {-# OPTIONS_GHC -Wno-orphans #-} diff --git a/haskell/src/Lorentz/Contracts/Stablecoin.hs b/haskell/src/Lorentz/Contracts/Stablecoin.hs index eceaa74b..679f5b43 100644 --- a/haskell/src/Lorentz/Contracts/Stablecoin.hs +++ b/haskell/src/Lorentz/Contracts/Stablecoin.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Lorentz.Contracts.Stablecoin diff --git a/haskell/src/Stablecoin/Client.hs b/haskell/src/Stablecoin/Client.hs index b138a057..8ba6e22d 100644 --- a/haskell/src/Stablecoin/Client.hs +++ b/haskell/src/Stablecoin/Client.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Stablecoin.Client diff --git a/haskell/src/Stablecoin/Client/Cleveland.hs b/haskell/src/Stablecoin/Client/Cleveland.hs index bdc19a87..28d86580 100644 --- a/haskell/src/Stablecoin/Client/Cleveland.hs +++ b/haskell/src/Stablecoin/Client/Cleveland.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Stablecoin.Client.Cleveland diff --git a/haskell/src/Stablecoin/Client/Cleveland/Caps.hs b/haskell/src/Stablecoin/Client/Cleveland/Caps.hs index af5e4a4a..8f601415 100644 --- a/haskell/src/Stablecoin/Client/Cleveland/Caps.hs +++ b/haskell/src/Stablecoin/Client/Cleveland/Caps.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT {-# LANGUAGE InstanceSigs #-} diff --git a/haskell/src/Stablecoin/Client/Cleveland/IO.hs b/haskell/src/Stablecoin/Client/Cleveland/IO.hs index a56f370e..a135405c 100644 --- a/haskell/src/Stablecoin/Client/Cleveland/IO.hs +++ b/haskell/src/Stablecoin/Client/Cleveland/IO.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Stablecoin.Client.Cleveland.IO diff --git a/haskell/src/Stablecoin/Client/Cleveland/StablecoinImpl.hs b/haskell/src/Stablecoin/Client/Cleveland/StablecoinImpl.hs index e1283ff1..6ddfe647 100644 --- a/haskell/src/Stablecoin/Client/Cleveland/StablecoinImpl.hs +++ b/haskell/src/Stablecoin/Client/Cleveland/StablecoinImpl.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Stablecoin.Client.Cleveland.StablecoinImpl diff --git a/haskell/src/Stablecoin/Client/Contract.hs b/haskell/src/Stablecoin/Client/Contract.hs index 5cbe19f3..cd9a68af 100644 --- a/haskell/src/Stablecoin/Client/Contract.hs +++ b/haskell/src/Stablecoin/Client/Contract.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Stablecoin.Client.Contract diff --git a/haskell/src/Stablecoin/Client/Impl.hs b/haskell/src/Stablecoin/Client/Impl.hs index ecb03edf..98c540ea 100644 --- a/haskell/src/Stablecoin/Client/Impl.hs +++ b/haskell/src/Stablecoin/Client/Impl.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Stablecoin.Client.Impl diff --git a/haskell/src/Stablecoin/Client/Main.hs b/haskell/src/Stablecoin/Client/Main.hs index 95971b6f..e376b5cd 100644 --- a/haskell/src/Stablecoin/Client/Main.hs +++ b/haskell/src/Stablecoin/Client/Main.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Stablecoin.Client.Main diff --git a/haskell/src/Stablecoin/Client/Parser.hs b/haskell/src/Stablecoin/Client/Parser.hs index 020a021e..0631e3c3 100644 --- a/haskell/src/Stablecoin/Client/Parser.hs +++ b/haskell/src/Stablecoin/Client/Parser.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT {-# LANGUAGE ApplicativeDo #-} diff --git a/haskell/stack.yaml b/haskell/stack.yaml index 7d61f006..06a7fa62 100644 --- a/haskell/stack.yaml +++ b/haskell/stack.yaml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT # To update hackage and stackage indexes used by CI run: diff --git a/haskell/stack.yaml.lock.license b/haskell/stack.yaml.lock.license index 93427b19..48e6275b 100644 --- a/haskell/stack.yaml.lock.license +++ b/haskell/stack.yaml.lock.license @@ -1,2 +1,2 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT diff --git a/haskell/test-common/Lorentz/Contracts/Test/Common.hs b/haskell/test-common/Lorentz/Contracts/Test/Common.hs index 0e66f970..a7ccfa43 100644 --- a/haskell/test-common/Lorentz/Contracts/Test/Common.hs +++ b/haskell/test-common/Lorentz/Contracts/Test/Common.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT -- | Test commons for stablecoin test suite diff --git a/haskell/test/Lorentz/Contracts/Test/FA2.hs b/haskell/test/Lorentz/Contracts/Test/FA2.hs index 9cbd16ae..3497700b 100644 --- a/haskell/test/Lorentz/Contracts/Test/FA2.hs +++ b/haskell/test/Lorentz/Contracts/Test/FA2.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT -- | Tests for FA2 interface. diff --git a/haskell/test/Lorentz/Contracts/Test/Management.hs b/haskell/test/Lorentz/Contracts/Test/Management.hs index 2f6e52dc..65f39d58 100644 --- a/haskell/test/Lorentz/Contracts/Test/Management.hs +++ b/haskell/test/Lorentz/Contracts/Test/Management.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT -- | Tests for management entrypoints of stablecoin smart-contract diff --git a/haskell/test/Main.hs b/haskell/test/Main.hs index b33d55d6..90262dc7 100644 --- a/haskell/test/Main.hs +++ b/haskell/test/Main.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Main diff --git a/haskell/test/SMT.hs b/haskell/test/SMT.hs index 0497ebd0..58e0c498 100644 --- a/haskell/test/SMT.hs +++ b/haskell/test/SMT.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT {-# OPTIONS_GHC -Wno-orphans #-} {-# OPTIONS_GHC -Wno-deprecations #-} diff --git a/haskell/test/Stablecoin.hs b/haskell/test/Stablecoin.hs index 7bac2981..15fef45b 100644 --- a/haskell/test/Stablecoin.hs +++ b/haskell/test/Stablecoin.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT module Stablecoin diff --git a/haskell/test/Tree.hs b/haskell/test/Tree.hs index e8af4188..dd738b96 100644 --- a/haskell/test/Tree.hs +++ b/haskell/test/Tree.hs @@ -1,4 +1,4 @@ --- SPDX-FileCopyrightText: 2020 tqtezos +-- SPDX-FileCopyrightText: 2020 TQ Tezos -- SPDX-License-Identifier: MIT {-# OPTIONS_GHC -F -pgmF tasty-discover -optF --tree-display -optF --generated-module -optF Tree #-} diff --git a/ligo/Makefile b/ligo/Makefile index 5dfef9fe..309803a2 100644 --- a/ligo/Makefile +++ b/ligo/Makefile @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT # Ligo executable diff --git a/ligo/README.md b/ligo/README.md index b9d5fa2f..f90b56c0 100644 --- a/ligo/README.md +++ b/ligo/README.md @@ -1,5 +1,5 @@ # stablecoin LIGO implementation diff --git a/ligo/stablecoin/actions.ligo b/ligo/stablecoin/actions.ligo index 85c878ef..ac951551 100644 --- a/ligo/stablecoin/actions.ligo +++ b/ligo/stablecoin/actions.ligo @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2020 tqtezos +// SPDX-FileCopyrightText: 2020 TQ Tezos // SPDX-License-Identifier: MIT (* diff --git a/ligo/stablecoin/core.ligo b/ligo/stablecoin/core.ligo index 00b11dce..7e635ea4 100644 --- a/ligo/stablecoin/core.ligo +++ b/ligo/stablecoin/core.ligo @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2020 tqtezos +// SPDX-FileCopyrightText: 2020 TQ Tezos // SPDX-License-Identifier: MIT #include "actions.ligo" diff --git a/ligo/stablecoin/hooks.ligo b/ligo/stablecoin/hooks.ligo index c5d17da9..5b30dea3 100644 --- a/ligo/stablecoin/hooks.ligo +++ b/ligo/stablecoin/hooks.ligo @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2020 tqtezos +// SPDX-FileCopyrightText: 2020 TQ Tezos // SPDX-License-Identifier: MIT (* diff --git a/ligo/stablecoin/metadata.ligo b/ligo/stablecoin/metadata.ligo index ae4a8d7f..b5bd587a 100644 --- a/ligo/stablecoin/metadata.ligo +++ b/ligo/stablecoin/metadata.ligo @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2020 tqtezos +// SPDX-FileCopyrightText: 2020 TQ Tezos // SPDX-License-Identifier: MIT #include "spec.ligo" diff --git a/ligo/stablecoin/operator.ligo b/ligo/stablecoin/operator.ligo index dda28b71..ad7e45bd 100644 --- a/ligo/stablecoin/operator.ligo +++ b/ligo/stablecoin/operator.ligo @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2020 tqtezos +// SPDX-FileCopyrightText: 2020 TQ Tezos // SPDX-License-Identifier: MIT (* diff --git a/ligo/stablecoin/spec.ligo b/ligo/stablecoin/spec.ligo index 192836d6..d442e4cc 100644 --- a/ligo/stablecoin/spec.ligo +++ b/ligo/stablecoin/spec.ligo @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2020 tqtezos +// SPDX-FileCopyrightText: 2020 TQ Tezos // SPDX-License-Identifier: MIT (* diff --git a/scripts/lint.sh b/scripts/lint.sh index 8c6230c5..99092832 100755 --- a/scripts/lint.sh +++ b/scripts/lint.sh @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2020 tqtezos +# SPDX-FileCopyrightText: 2020 TQ Tezos # SPDX-License-Identifier: MIT #!/usr/bin/env bash