https://github.com/cloudwalk/brlc-card-payment-processor
This repository contains the card payment processor smart contracts, which will be used together with the BRLC token.
https://github.com/cloudwalk/brlc-card-payment-processor
Last synced: 9 months ago
JSON representation
This repository contains the card payment processor smart contracts, which will be used together with the BRLC token.
- Host: GitHub
- URL: https://github.com/cloudwalk/brlc-card-payment-processor
- Owner: cloudwalk
- License: mit
- Created: 2022-07-15T17:01:36.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-08-28T12:40:53.000Z (9 months ago)
- Last Synced: 2025-08-28T19:58:00.280Z (9 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.29 MB
- Stars: 4
- Watchers: 9
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Card Payment Processor
[](https://codecov.io/github/cloudwalk/brlc-card-payment-processor)
[](https://opensource.org/licenses/MIT)


This repository contains CardPaymentProcessor 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).