-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "rayls-example-hardhat",
"version": "1.0.0",
"description": "Example Hardhat project for deploying smart contracts to Rayls blockchain",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy": "hardhat run scripts/deploy.ts --network rayls",
"deploy:local": "hardhat run scripts/deploy.ts --network localhost",
"deploy:verify": "hardhat run scripts/deploy-and-verify.ts --network rayls",
"verify": "hardhat run scripts/verify.ts --network rayls",
"flatten": "hardhat flatten contracts/RaylsToken.sol > RaylsToken-flattened.sol"
},
"keywords": [
"hardhat",
"ethereum",
"rayls",
"blockchain",
"evm",
"smart-contracts"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@types/node": "^20.10.0",
"hardhat": "^2.19.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.3.0"
}
}