https://github.com/bancorprotocol/contracts-solidity
Bancor Protocol Contracts
https://github.com/bancorprotocol/contracts-solidity
Last synced: 5 months ago
JSON representation
Bancor Protocol Contracts
- Host: GitHub
- URL: https://github.com/bancorprotocol/contracts-solidity
- Owner: bancorprotocol
- License: other
- Created: 2017-02-15T17:38:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-08T21:08:33.000Z (about 2 years ago)
- Last Synced: 2025-04-10T07:16:31.550Z (about 1 year ago)
- Language: JavaScript
- Size: 18.3 MB
- Stars: 858
- Watchers: 58
- Forks: 395
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-solidity - bancorprotocol/contract-solidity - Bancor Protocol contracts. (Resources)
- web3-awesome - contracts-solidity
- best-of-crypto - GitHub - 9% open · ⏱️ 26.10.2023): (Automated Market Maker (AMM))
- awesome-solidity - bancorprotocol/contract-solidity - Bancor Protocol contracts. (Resources)
- awesome-solidity - bancorprotocol/contract-solidity - Bancor Protocol contracts. (Resources)
- awesome-solidity - bancorprotocol/contract-solidity - Bancor Protocol contracts. (Resources)
README
## These are the legacy (v2.1) contracts. Bancor V3 contracts are available at https://github.com/bancorprotocol/contracts-v3 ##
# Bancor Protocol Contracts v0.7
[](https://docs.bancor.network/)
[](https://www.npmjs.org/package/@bancor/contracts-solidity)
## Overview
The solidity version of the Bancor smart contracts is composed of many different components that work together to create the Bancor Network deployment.
The main contracts are the BancorNetwork contract (entry point to the system) and the different converter contracts (implementation of liquidity pools and their reserves).
## Config
In order to use some plugins, API keys or custom network with secret config we need a config.json file. You can check `hardhat.config.js` for more details.
```json
{
"apiKeys": {
"etherscan": ""
},
"networks": {
"mainnet": {
"url": ""
}
}
}
```
## Upgradeability
All smart contract functions are public and all upgrades are opt-in. If significant improvements are made to the system a new version will be released. Token owners can choose between moving to the new system or staying in the old one. If possible, new versions will be backwards compatible and able to interact with the old versions.
## Language
The terms “reserves” and “connectors” have the same meaning throughout Bancor’s smart contract code and documentation. “Reserve ratio” and “connector weight” are also used interchangeably. “Connector balance” refers to the token inventories held in a liquidity pool's reserves.
## Warning
Bancor is a work in progress. Make sure you understand the risks before using it.
## Testing
### Prerequisites
- node 12.20.0
- yarn 1.22.0
### Installation
- `yarn install`
### Verification
- Verifying all the contracts:
- `yarn test` (quick testing)
- `yarn coverage` (full coverage)
### [Utilities](utils/README.md)
## Collaborators
- **[Yudi Levi](https://github.com/yudilevi)**
- **[Barak Manos](https://github.com/barakman)**
- **[Leonid Beder](https://github.com/lbeder)**
- **[Ilana Pinhas](https://github.com/ilanapi)**
- **[David Benchimol](https://github.com/davidbancor)**
- **[Or Dadosh](https://github.com/ordd)**
- **[Martin Holst Swende](https://github.com/holiman)**
## License
Bancor Protocol is open source and distributed under the Apache License v2.0