https://github.com/cloudwalk/brlc-token
BRLC smart contracts
https://github.com/cloudwalk/brlc-token
Last synced: 10 months ago
JSON representation
BRLC smart contracts
- Host: GitHub
- URL: https://github.com/cloudwalk/brlc-token
- Owner: cloudwalk
- License: mit
- Created: 2022-04-27T12:03:38.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-15T14:12:26.000Z (about 2 years ago)
- Last Synced: 2024-04-17T19:15:43.289Z (about 2 years ago)
- Language: TypeScript
- Size: 1.32 MB
- Stars: 20
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# BRLC Token
[](https://codecov.io/github/cloudwalk/brlc-token)
[](https://opensource.org/licenses/MIT)


This repository contains BRLC token smart contracts.
## Project Setup
1. Clone the repo.
2. Create the `.env` file based on the `.env.example` one:
* Windows:
```sh
copy .env.example .env
```
* MacOS/Linux:
```sh
cp .env.example .env
```
3. Optionally update the settings in the newly created `.env` file (e.g., Solidity version, number of optimization runs, network RPC URLs, private keys (PK) for networks, etc.).
## Build and test
```sh
# Install all dependencies
npm install
# Compile all contracts
npx hardhat compile
# Run all tests
npx hardhat test
```
## Licensing
This project is released under the MIT License, see [LICENSE](./LICENSE).