https://github.com/yanukadeneth99/calculator-yul
Calculator contract made in pure yul.
https://github.com/yanukadeneth99/calculator-yul
calculator evm solidity yul
Last synced: 4 months ago
JSON representation
Calculator contract made in pure yul.
- Host: GitHub
- URL: https://github.com/yanukadeneth99/calculator-yul
- Owner: yanukadeneth99
- Created: 2022-12-02T17:10:15.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-16T14:56:40.000Z (over 1 year ago)
- Last Synced: 2025-01-11T19:30:28.750Z (5 months ago)
- Topics: calculator, evm, solidity, yul
- Language: JavaScript
- Homepage:
- Size: 192 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pure Yul Calculator
This is a simple calculator made using Pure Yul.
## Operations
You can perform the following operations interacting with this contract
- Add
- Subtract
- Divide
- Multiply## TODO
- [ ] Make the program work with `int` values (Negative).
## Code

## Resources Used
- [Keccak256 Online](https://emn178.github.io/online-tools/keccak_256.html)
- [Hardhat](https://hardhat.org/)## Inspired By
- [Advanced Solidity: How to Program in Pure Yul](https://youtu.be/bdVb_wAdMfg)