https://github.com/dfinity/ledger-ref
The reference implementation of ICP ledger canister.
https://github.com/dfinity/ledger-ref
Last synced: 8 months ago
JSON representation
The reference implementation of ICP ledger canister.
- Host: GitHub
- URL: https://github.com/dfinity/ledger-ref
- Owner: dfinity
- License: apache-2.0
- Created: 2021-10-09T21:39:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-22T15:03:16.000Z (about 4 years ago)
- Last Synced: 2023-04-10T07:32:21.474Z (about 3 years ago)
- Language: Motoko
- Size: 46.9 KB
- Stars: 5
- Watchers: 40
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# ICP Ledger Reference Implementation
This repository contains the reference implementation of ICP ledger in Motoko.
## Building
You'll need to have [docker](https://www.docker.com/) installed in order to build the canister.
Execute the following commands in your checkout of this repository
```
docker build -t ledger-ref .
docker run --rm ledger-ref cat ledger.wasm > ledger.wasm
```
Those commands will create a `ledger.wasm` canister module that you can install and play with.