Blockchain added

This commit is contained in:
2026-04-22 11:04:59 +01:00
parent e0dc9ba2ba
commit cd11e76c07
23 changed files with 10984 additions and 61 deletions

19
blockchain/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "lexichain-blockchain",
"version": "1.0.0",
"description": "LexiChain Document Registry - Solidity Smart Contract",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"node": "hardhat node",
"deploy:local": "hardhat run scripts/deploy.ts --network localhost",
"deploy:sepolia": "hardhat run scripts/deploy.ts --network sepolia"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"hardhat": "^2.22.0",
"typescript": "^5.0.0",
"ts-node": "^10.9.0",
"@types/node": "^20.0.0"
}
}