-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 1.15 KB
/
package.json
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
{
"name": "@coti-io/coti-contracts-examples",
"version": "0.0.1",
"license": "Apache 2.0",
"description": "Example smart contracts demonstrating the use of COTI's GC technology, including integrations with MPC, private ERC20, and ERC721 contracts.",
"author": "COTI Development",
"repository": {
"type": "git",
"url": "git://github.com/coti-io/coti-contracts-examples.git"
},
"homepage": "https://docs.coti.io/coti-v2-documentation/build-on-coti/quickstart#solidity",
"keywords": ["coti", "privacy", "ethereum", "blockchain", "web3", "garbled-circuits", "l2", "on-chain-compute"],
"scripts": {
"test-private-auction": "npx hardhat test ./test/PrivateAuction.test.ts",
"test-private-identity-registry": "npx hardhat test ./test/PrivateIdentityRegistry.test.ts",
"test-private-nft": "npx hardhat test ./test/PrivateNFT.test.ts",
"test-private-token": "npx hardhat test ./test/PrivateToken.test.ts",
"test-on-chain-database": "npx hardhat test ./test/OnChainDatabase.test.ts"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@coti-io/coti-contracts": "^1.0.2",
"hardhat": "^2.22.11"
}
}