https://github.com/zh/bpm-contracts
BPM Solidity contracts
https://github.com/zh/bpm-contracts
Last synced: about 1 year ago
JSON representation
BPM Solidity contracts
- Host: GitHub
- URL: https://github.com/zh/bpm-contracts
- Owner: zh
- License: mit
- Created: 2021-10-25T02:37:44.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-10-29T10:18:12.000Z (over 4 years ago)
- Last Synced: 2025-02-17T11:44:37.181Z (over 1 year ago)
- Language: JavaScript
- Size: 144 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BPM Contracts
> Solidity contracts for Bitcoin Payment Module (BPM)
## Used tools
* [Hardhat](https://hardhat.org/) - Ethereum development environment for professionals
## Quick start
> clone/fork bpm-contracts:
```bash
git clone https://github.com/zh/bpm-contracts
```
> install and start your Hardhat chain:
```bash
cd bpm-contracts
yarn install
yarn chain
```
> in a second terminal window, deploy your contract:
```bash
cd bpm-contracts
yarn deploy
// deploy on another blockchains
yarn deploy --network testnetSmartBCH
yarn deploy --network testnetFantom
```
> testing
```bash
yarn test
```