https://github.com/coolcode/crypto-monopoly
Crypto Monopoly Game (Smart Contracts)
https://github.com/coolcode/crypto-monopoly
board-game ethereum game monopoly nodejs react smart-contracts solidity typescript
Last synced: about 2 months ago
JSON representation
Crypto Monopoly Game (Smart Contracts)
- Host: GitHub
- URL: https://github.com/coolcode/crypto-monopoly
- Owner: coolcode
- License: gpl-3.0
- Created: 2020-09-30T02:20:26.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-29T03:28:07.000Z (about 1 year ago)
- Last Synced: 2025-04-11T04:06:13.598Z (about 2 months ago)
- Topics: board-game, ethereum, game, monopoly, nodejs, react, smart-contracts, solidity, typescript
- Language: Solidity
- Homepage:
- Size: 1.73 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crypto Monopoly Game

## Foundry
**Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.**
Foundry consists of:
- **Forge**: Ethereum testing framework (like Truffle, Hardhat and DappTools).
- **Cast**: Swiss army knife for interacting with EVM smart contracts, sending transactions and getting chain data.
- **Anvil**: Local Ethereum node, akin to Ganache, Hardhat Network.
- **Chisel**: Fast, utilitarian, and verbose solidity REPL.## Documentation
https://book.getfoundry.sh/
## Usage
### Build
```shell
$ forge build
```### Test
```shell
$ forge test
```### Format
```shell
$ forge fmt
```### Gas Snapshots
```shell
$ forge snapshot
```### Anvil
```shell
$ anvil
```### Deploy
```shell
$ forge script script/Deploy.s.sol:DeployScript --rpc-url --private-key
```### Cast
```shell
$ cast
```### Help
```shell
$ forge --help
$ anvil --help
$ cast --help
```