Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gjeanmart/adventofcode-22-solidity
https://github.com/gjeanmart/adventofcode-22-solidity
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gjeanmart/adventofcode-22-solidity
- Owner: gjeanmart
- Created: 2022-12-04T12:50:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-05T08:24:48.000Z (almost 2 years ago)
- Last Synced: 2023-03-01T21:45:44.322Z (over 1 year ago)
- Language: Solidity
- Size: 175 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Advent of Code - 2022 - in Ethereum Solidity
### Getting started
```shell
$ npm install
$ npx hardhat compile
```### Run tests
```shell
$ npx hardhat test
```### Solve puzzle
Run task via```shell
$ npx hardhat solve-puzzle --day XX (01, 02_1, 02_2, 03, ...)
```### Library used
Thank you
- [Hardhat](https://hardhat.org/) (including [ethers.js](https://docs.ethers.io/v5/))
- [Nick Johnson's string library](https://github.com/Arachnid/solidity-stringutils)
- [OpenZeppelin contracts](https://www.openzeppelin.com/contracts)