Skip to content

Commit 9ef7c29

Browse files
authored
Add files via upload
1 parent cf4b828 commit 9ef7c29

4 files changed

Lines changed: 46 additions & 46 deletions

File tree

LICENSE

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
11
MIT License
22

3-
Copyright (c) 2020-2025 REChain, Inc
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
3+
Permission is hereby granted, free of charge, to any person obtaining a copy...

README.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
1-
# Autonomous agents for bonded stablecoins
1+
# Bonded StableCoin 🪙
22

3+
A decentralized stablecoin powered by bonding curves and smart contracts.
4+
5+
## Features
6+
7+
- Dynamic minting/burning using bonding curves
8+
- Backed by collateral and bonding logic
9+
- Secure smart contracts
10+
- Basic frontend for interaction
11+
12+
## Tech Stack
13+
14+
- Solidity
15+
- Hardhat
16+
- JavaScript (React)
17+
- Ethers.js
18+
19+
## Getting Started
20+
21+
```bash
22+
git clone https://github.com/REChain-Network-Solutions/Bonded-StableCoin.git
23+
cd Bonded-StableCoin
24+
npm install
25+
npx hardhat compile
26+
npx hardhat test
27+
```
28+
29+
## License
30+
31+
MIT

hardhat.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
require("@nomicfoundation/hardhat-toolbox");
2+
3+
module.exports = {
4+
solidity: "0.8.20",
5+
};

package.json

Lines changed: 10 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,12 @@
11
{
2-
"name": "bonded-stablecoin",
3-
"version": "0.1.0",
4-
"main": "main.js",
5-
"author": "REChain, Inc",
6-
"license": "MIT",
7-
"scripts": {
8-
"test": "mocha --require test/bootload.js"
9-
},
10-
"dependencies": {
11-
"aa-testkit": "git+https://github.com/valyakin/aa-testkit",
12-
"bank-aa": "git+https://github.com/byteball/bank-aa"
13-
},
14-
"devDependencies": {
15-
"chai": "^4.2.0",
16-
"eslint": "^6.3.0",
17-
"eslint-config-standard": "^14.1.0",
18-
"eslint-plugin-chai-friendly": "^0.4.1",
19-
"eslint-plugin-import": "^2.18.2",
20-
"eslint-plugin-mocha": "^6.1.1",
21-
"eslint-plugin-node": "^10.0.0",
22-
"eslint-plugin-promise": "^4.2.1",
23-
"eslint-plugin-standard": "^4.0.1",
24-
"mocha": "^6.2.0"
25-
},
26-
"resolutions": {
27-
}
2+
"name": "bonded-stablecoin",
3+
"version": "1.0.0",
4+
"scripts": {
5+
"test": "npx hardhat test",
6+
"compile": "npx hardhat compile",
7+
"deploy": "npx hardhat run scripts/deploy.js --network localhost"
8+
},
9+
"devDependencies": {
10+
"@nomicfoundation/hardhat-toolbox": "^3.0.0"
11+
}
2812
}

0 commit comments

Comments
 (0)