Upload Client.
Showing
.envexample
0 → 100644
arguments.js
0 → 100644
contracts/PriceConsumer.sol
0 → 100644
contracts/RangeProof.sol
0 → 100644
contracts/mock/ERC20Mock.sol
0 → 100644
contracts/mock/Token.sol
0 → 100644
hardhat.config.js
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"name": "offshift-dev", | ||
"version": "1.0.0", | ||
"description": "OffShift protocol", | ||
"main": "hardhat.config", | ||
"type": "commonjs", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"author": "dev", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"solhint": "solhint -f table contracts/**/*.sol", | ||
"prettier": "prettier --write 'contracts/**/*.sol'", | ||
"prettier:solidity": "prettier --write contracts/**/*.sol", | ||
"lint": "prettier --list-different 'contracts/**/*.sol'", | ||
"compile": "npx hardhat size-contracts && npx hardhat compile", | ||
"coverage": "npx hardhat size-contracts && npx hardhat coverage --network hardhat", | ||
"size": "npx hardhat size-contracts" | ||
}, | ||
"dependencies": { | ||
"@chainlink/contracts": "^0.4.0", | ||
"@openzeppelin/contracts": "^4.3.0", | ||
"bn.js": "^5.2.0" | ||
}, | ||
"devDependencies": { | ||
"@nomiclabs/hardhat-ethers": "^2.0.0", | ||
"@nomiclabs/hardhat-etherscan": "^2.1.2", | ||
"@nomiclabs/hardhat-truffle5": "^2.0.0", | ||
"@nomiclabs/hardhat-waffle": "^2.0.1", | ||
"@nomiclabs/hardhat-web3": "^2.0.0", | ||
"@types/chai": "^4.2.21", | ||
"@types/chai-as-promised": "^7.1.4", | ||
"@types/mocha": "^8.2.3", | ||
"@types/node": "^16.6.2", | ||
"bip-schnorr": "^0.6.3", | ||
"chai": "^4.3.4", | ||
"dotenv": "^8.6.0", | ||
"elliptic-curve-solidity": "^0.2.4", | ||
"eslint": "^6.8.0", | ||
"eslint-config-standard": "^14.1.1", | ||
"eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"ethereum-waffle": "^3.2.0", | ||
"ethers": "^5.4.6", | ||
"hardhat": "^2.6.8", | ||
"hardhat-contract-sizer": "^2.0.3", | ||
"hardhat-gas-reporter": "^1.0.4", | ||
"noble-secp256k1": "^1.2.9", | ||
"prettier": "^2.2.1", | ||
"prettier-plugin-solidity": "^1.0.0-beta.7", | ||
"solhint": "^3.3.4", | ||
"solhint-plugin-prettier": "0.0.5", | ||
"solidity-coverage": "^0.7.16", | ||
"ts-node": "^9.1.1", | ||
"typescript": "^4.2.4", | ||
"web3": "^1.5.2" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/vitalii-odnovol/offshift-dev.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/vitalii-odnovol/offshift-dev/issues" | ||
}, | ||
"homepage": "https://github.com/vitalii-odnovol/offshift-dev#readme" | ||
} |
scripts/deploy.js
0 → 100644
scripts/sample-script.js
0 → 100644
Please register or sign in to comment