Roy Crihfield
6d7487152c
Now uses: * ipld direct_by_leaf StateDB for basic queries * trie_by_cid StateDB for trie slice and proof queries Also: * vulcanize => cerc refactor * Backend method to close dbs * state tests are in multiple packages, to allow separate ginkgo suites * removes gap-filler module * integration tests and github workflows * run stack-orchestrator for testnet * fix various issues with tests, hardhat server, dockerfile * fix cmd flags / env vars * fix flaky tests and clean up code * remove unused code, scripts * remove outdated docs * update version
27 lines
645 B
JSON
27 lines
645 B
JSON
{
|
|
"name": "contract",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"compile": "npx hardhat compile",
|
|
"start": "node src/index.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "Solidity contract deployment server for integration testing",
|
|
"dependencies": {
|
|
"@openzeppelin/contracts": "^4.0.0",
|
|
"fastify": "^4.0.0",
|
|
"hardhat": "^2.14.0",
|
|
"solidity-create2-deployer": "^0.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nomiclabs/hardhat-ethers": "^2.2.3",
|
|
"@nomiclabs/hardhat-waffle": "^2.0.4",
|
|
"chai": "^4.3.4",
|
|
"ethereum-waffle": "^3.3.0",
|
|
"ethers": "^5.1.0"
|
|
}
|
|
}
|