First commit with contracts and a simple test.

This commit is contained in:
Filipe Soccol
2022-10-24 17:16:25 -03:00
parent 3c30213419
commit dd4a6fa66e
6 changed files with 29921 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "p2pix-smart-contracts",
"version": "1.0.0",
"description": "Repository for P2Pix EVM contracts to be imported by the project.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doiim/p2pix-smart-contracts.git"
},
"author": "Filipe Soccol (doiim)",
"license": "MIT",
"bugs": {
"url": "https://github.com/doiim/p2pix-smart-contracts/issues"
},
"homepage": "https://github.com/doiim/p2pix-smart-contracts#readme",
"devDependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"hardhat": "^2.12.0"
}
}