• Stars
    star
    796
  • Rank 57,222 (Top 2 %)
  • Language
    Scala
  • Created over 5 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The Daml smart contract language

Daml logo

Download License Build

Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All Rights Reserved. SPDX-License-Identifier: Apache-2.0

Welcome to the Daml repository!

This repository hosts all code for the Daml smart contract language and SDK, originally created by Digital Asset. Daml is an open-source smart contract language for building future-proof distributed applications on a safe, privacy-aware runtime. The SDK is a set of tools to help you develop applications based on Daml.

Using Daml

To download Daml, follow the installation instructions. Once installed, to try it out, follow the quickstart guide.

If you have questions about how to use Daml or how to build Daml-based solutions, please join us on the Daml forum. Alternatively, if you prefer asking on StackOverflow, please use the daml tag.

Contributing to Daml

We warmly welcome contributions. If you are looking for ideas on how to contribute, please browse our issues. To build and test Daml:

1. Clone this repository

git clone [email protected]:digital-asset/daml.git
cd daml

2. Set up the development dependencies

Our builds require various development dependencies (e.g. Java, Bazel, Python), provided by a tool called dev-env.

Linux

On Linux dev-env can be installed with:

  1. Install Nix by running: bash <(curl -sSfL https://nixos.org/nix/install)
  2. Enter dev-env by running: eval "$(dev-env/bin/dade assist)"

If you don't want to enter dev-env manually each time using eval "$(dev-env/bin/dade assist)", you can also install direnv. This repo already provides a .envrc file, with an option to add more in a .envrc.private file.

Mac

On Mac dev-env can be installed with:

  1. Install Nix by running: bash <(curl -sSfL https://nixos.org/nix/install)

    • This is a multi-user installation (there is no single-user installation option for macOS). Because of this, you need to configure /etc/nix/nix.conf to use Nix caches:
    1. Add yourself as a nix trusted user by running echo "extra-trusted-users = $USER" | sudo tee -a /etc/nix/nix.conf

    2. Restart the nix-daemon by running sudo launchctl stop org.nixos.nix-daemon && sudo launchctl start org.nixos.nix-daemon

  2. Enter dev-env by running: eval "$(dev-env/bin/dade assist)"

If you don't want to enter dev-env manually each time using eval "$(dev-env/bin/dade assist)", you can also install direnv. This repo already provides a .envrc file, with an option to add more in a .envrc.private file.

Note that after a macOS update it can appear as if Nix is not installed. This is because macOS updates can modify shell config files in /etc, which the multi-user installation of Nix modifies as well. A workaround for this problem is to add the following to your shell config file in your $HOME directory:

# Nix
if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then
  . '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
fi
# End Nix

See NixOS/nix#3616 for more information about this issue.

MacOS M1

The above procedure will use and build native arm64 M1 binaries for this project. However, note that at the time of writing the CI system of the Daml project does not yet include MacOS M1 nodes. Therefore, the M1 configuration is untested on CI, and the remote cache is not populated with native M1 artifacts.

If you encounter issues with a native M1 build, then you can configure project to build x86-64 binaries instead and run them through Rosetta. To do that replace the contents of the file nix/system.nix with the following content:

"x86_64-darwin"

Windows

On Windows you need to enable long file paths by running the following command in an admin powershell:

Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name LongPathsEnabled -Type DWord -Value 1

You also need to configure Bazel for Windows:

echo "build --config windows" > .bazelrc.local

Note, if you are on a Windows ad-hoc or CI machine you can use ci/configure-bazel.sh instead of performing these steps manually. In that case, you should checkout the daml repository into the path D:\a\1\s in order to be able to use remote cache artifacts.

Then start dev-env from PowerShell with:

.\dev-env\windows\bin\dadew.ps1 install
.\dev-env\windows\bin\dadew.ps1 sync
.\dev-env\windows\bin\dadew.ps1 enable

In all new PowerShell processes started, you need to repeat the enable step.

3. Lint, build, and test

We have a single script to build most targets and run the tests. On Linux and Mac run ./build.sh. On Windows run .\build.ps1. Note that these scripts may take over an hour the first time.

To just build do bazel build //..., and to just test do bazel test //.... To read more about Bazel and how to use it, see the Bazel site.

On Mac if building is causing trouble complaining about missing nix packages, you can try first running nix-build -A tools -A cached nix repeatedly until it completes without error.

CI will run a few checks with regards to formatting, linting, presence of copyright headers, and so on. In order to make sure your PR can smoothly go through those checks, we use a tool called pre-commit. The tool is managed by Nix and you don't have to install it. If you use direnv, the tool will automatically install a pre-push hook that will run the relevant checks right before you push. This will give you a chance to apply necessary amendments before your contribution reaches CI. If you don't use direnv you can still use the tool by activating it manually (have a look at how it's done in .envrc). If you use direnv but prefer to not use the tool at all, you can add the line export DADE_NO_PRE_COMMIT=anything_really to .envrc.private. You can also customize the phase at which the hooks will run by exporting the environment variable DADE_PRE_COMMIT_HOOK_TYPE and setting it to one of the supported stages (pre-commit is a common choice, but the default when installed via direnv will be pre-push to reduce the times the hooks will run while still making sure that you can have a tight feedback loop to fix linting errors).

4. Installing a local copy

On Linux and Mac run daml-sdk-head which installs a version of the SDK with version number 0.0.0. Set the version: field in any Daml project to 0.0.0 and it will use the locally installed one.

On Windows:

bazel build //release:sdk-release-tarball
tar -vxf .\bazel-bin\release\sdk-release-tarball-ce.tar.gz
cd sdk-*
daml\daml.exe install . --install-assistant=yes

That should tell you what to put in the path, something along the lines of C:\Users\admin\AppData\Roaming\daml\bin. Note that the Windows build is not yet fully functional.

Caching: build speed and disk space considerations

Bazel has a lot of nice properties, but they come at the cost of frequently rebuilding "the world". To make that bearable, we make extensive use of caching. Most artifacts should be cached in our CDN, which is configured in .bazelrc in this project.

However, even then, you may end up spending a lot of time (and bandwidth!) downloading artifacts from the CDN. To alleviate that, by default, our build will create a subfolder .bazel-cache in this project and keep an on-disk cache. This can take about 10GB at the time of writing.

To disable the disk cache, remove the following lines:

build:linux --disk_cache=.bazel-cache
build:darwin --disk_cache=.bazel-cache

from the .bazelrc file.

If you work with multiple copies of this repository, you can point all of them to the same disk cache by overwriting these configs in either a .bazelrc.local file in each copy, or a ~/.bazelrc file in your home directory.

Shared memory segment issues

On macOS at least, it looks like our setup does not always properly close the resources PostgreSQL uses. After a number of test runs, you may encounter an error message along the lines of:

FATAL:  could not create shared memory segment: No space left on device
DETAIL:  Failed system call was shmget(key=5432001, size=56, 03600).
HINT:  This error does *not* mean that you have run out of disk space. It occurs either if all available shared memory IDs have been taken, in which case you need to raise the SHMMNI parameter in your kernel, or because the system's overall limit for shared memory has been reached.
        The PostgreSQL documentation contains more information about shared memory configuration.
child process exited with exit code 1

In this case, this is a memory leak, so increasing SHMNI (or SHMALL etc.) as suggested will only delay the issue. You can look at the existing shared memory segments on your system by running ipcs -mcopt; this will print a line per segment, indicating the process ID of the last process to connect to the segment as well as the last access time and the number of currently connected processes.

If you identify segments with no connected processes, and you are confident you can remove them, you can do so with ipcrm $sid, where $sid is the process ID displayed (as the second column) by ipcs. Not many macOS applications use shared memory segments; if you have verified that all the existing memory segments on your machine need to be deleted, e.g. because they have all been created by PostgreSQL instances that are no longer running, here is a Bash invocation you can use to remove all shared memory segments from your system.

This is a dangerous command. Make sure you understand what it does before running it.

for shmid in $(ipcs -m | sed 1,3d | awk '{print $2}' | sed '$d'); do ipcrm -m $shmid; done

Haskell profiling builds

To build Haskell executables with profiling enabled, pass -c dbg to Bazel, e.g. bazel build -c dbg damlc. If you want to build the whole SDK with profiling enabled use daml-sdk-head --profiling.

More Repositories

1

ghc-lib

The GHC API, decoupled from GHC versions
Haskell
161
star
2

canton

Global Workflow Composition that is Scalable, Secure, and GDPR-compliant
Scala
74
star
3

ex-models

Haskell
45
star
4

dev-env

Per-project isolated set of dev tools
Shell
40
star
5

ex-healthcare-claims-processing

Reference DAML application demonstrating a healthcare use case.
Haskell
33
star
6

ex-cbdc

TypeScript
23
star
7

daml-on-fabric

Enabling DAML applications to run on Hyperledger Fabric
Java
23
star
8

daml-finance-app

TypeScript
20
star
9

ex-bond-issuance

Reference DAML application demonstrating a bond issuance use case.
Haskell
20
star
10

da-marketplace

TypeScript
17
star
11

daml-finance

Haskell
17
star
12

lib-cdm-event-specification-module

Haskell
17
star
13

ex-bond-trading

A simple bond trading application
Java
15
star
14

ex-tutorial-nodejs

An interactive tutorial to get started with the Node.js bindings for DAML
JavaScript
14
star
15

ex-cdm-swaps

Haskell
12
star
16

ex-supply-chain

Reference DAML application demonstrating a supply chain use case.
TypeScript
12
star
17

lib-finance

Haskell
12
star
18

ex-java-bindings

Three examples demonstrating three different approaches to using the Java ledger API bindings
Java
12
star
19

daml-ui-template

TypeScript
10
star
20

ex-collateral

An example of collateral management in DAML
Haskell
10
star
21

ex-mortgage-repackaging

Reference DAML application demonstrating the use case of repackaging Mortgage Based Securities.
Haskell
10
star
22

dazl-client

dazl Ledger API client
Python
10
star
23

daml-cheat-sheet

A Cheat Sheet for DAML
CSS
9
star
24

wallet-sample-app

TypeScript
8
star
25

ghc

Fork of GHC (https://gitlab.haskell.org/ghc/ghc.git)
Haskell
8
star
26

daml-js

Node.js bindings for DAML
TypeScript
7
star
27

ex-structured-products

Reference DAML application demonstrating the trading of Structured Equity Derivative Products.
Java
7
star
28

ex-secure-daml-infra

Reference example of a secure Ledger deployment using mTLS and JWT tokens
Shell
7
star
29

daml-platform-observability-example

Project showcasing observability features of the Daml Platform.
Shell
7
star
30

ex-repo-market

UNSUPPORTED. An example DAML application showing settlement in the repurchase agreement market through a 3rd party clearing house
Java
7
star
31

ex-know-your-customer

A reference application demonstrating the lifecycle of KYC (Know Your Customer) data subscriptions between data providers, analysts and customers.
Java
7
star
32

lib-daml-jvm-test

A library providing functions for testing DAML applications on JVM.
Java
6
star
33

ex-secure-canton-infra

Reference deployment of a secure Canton infrastructure (PKI, JWT, HA)
Shell
6
star
34

docs.daml.com

Managing the docs.daml.com site
Sass
6
star
35

ex-asset-servicing

TypeScript
6
star
36

ex-inventory-management

Crypto Inventory Management System has been designed to make it easy and safe for crypto funds to manage their crypto assets on public ledgers.
Java
6
star
37

daml-helm-charts

Daml Enterprise deployment with high availability.
Mustache
6
star
38

ex-structured-trade-finance

Reference DAML application demonstrating a structured trade financing use case.
JavaScript
5
star
39

rusty-engine

A prototype of a DAML Engine written in Rust
Rust
5
star
40

daml-on-x-example

DAML-on-X Example Ledger Implementation
Scala
5
star
41

contingent-claims

Haskell
5
star
42

davl

Digital Asset Vacation Ledger
TypeScript
4
star
43

hub-automation-example

An example of a Pythonbot written for Daml Hub
Java
4
star
44

derivhack2019

4
star
45

daml-dit-ddit

Python
3
star
46

ex-market-data-service

Java
3
star
47

rln

Java
3
star
48

create-daml-app

This is an obsolete copy of a template that has now been moved to the DAML SDK repo. Please see https://docs.daml.com/getting-started/index.html for the latest version.
TypeScript
3
star
49

daml-dit-if

Python
2
star
50

custom-views

Scala
2
star
51

ex-custom-views-spring-boot

Java
2
star
52

daml-katacoda

Shell
2
star
53

dabl-react

DABLified react bindings
TypeScript
2
star
54

lib-message-integration

Haskell
2
star
55

tlms-cd-code-demo

Haskell
2
star
56

trigger-failure

Example code for dealing with Daml Trigger failures
Haskell
2
star
57

daml-net

C#
2
star
58

decentralized-canton-sync

Scala
2
star
59

daml-common

Shell
1
star
60

gadi-example

TypeScript
1
star
61

daml-dit-integration-symphony

Daml Hub Integration for creating Symphony Bots
Python
1
star
62

dablchat

DABL Chat. A DAML app that can be deployed to project:DABL
TypeScript
1
star
63

certification-damlfundamentals-capstone

Instructions and guidelines to pass the Daml Fundamentals certification via a capstone project.
Haskell
1
star
64

daml-ctl

Misc control-of-flow structures for daml, mostly adapted from Haskell.
1
star
65

daml-dit-integration-coindesk

Python
1
star
66

ex-authentication-auth0

JavaScript
1
star
67

hlint

Fork of Hlint (https://github.com/ndmitchell/hlint)
Haskell
1
star
68

daml-maven-plugin

A Maven plugin wrapping DAML Assistant.
Java
1
star
69

dablchess

DABL Chess game
TypeScript
1
star
70

ex-upgrade

This is out of date, please refer to recent documentation on https://docs.daml.com instead.
1
star
71

certification-damlfundamentals-ledgerprogramming-lab-solution

1
star
72

boat

1
star
73

ex-java-bindings-with-opentelemetry

An example of writing a client application that uses java codegen and open telemetry
Java
1
star