mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
d4cbc759f8
* rename contract NativeCoin -> CosmosCoin * rename all entities NativeCoin -> CosmosCoin * update changelog * update protonet genesis.json
40 lines
1.5 KiB
JSON
40 lines
1.5 KiB
JSON
{
|
|
"name": "kava-contracts",
|
|
"version": "0.0.1",
|
|
"author": "Kava Labs",
|
|
"private": true,
|
|
"description": "Solidity contracts for Kava Blockchain",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && npm run compile && npm run ethermint-json",
|
|
"clean": "hardhat clean",
|
|
"compile": "hardhat compile",
|
|
"coverage": "hardhat coverage",
|
|
"ethermint-json": "jq '{ abi: .abi | tostring, bin: .bytecode | ltrimstr(\"0x\")}' artifacts/contracts/ERC20KavaWrappedCosmosCoin.sol/ERC20KavaWrappedCosmosCoin.json > ../x/evmutil/types/ethermint_json/ERC20KavaWrappedCosmosCoin.json",
|
|
"gen-ts-types": "hardhat typechain",
|
|
"lint": "eslint '**/*.{js,ts}'",
|
|
"lint-fix": "eslint '**/*.{js,ts}' --fix",
|
|
"prettier": "prettier '**/*.{json,sol,md}' --check",
|
|
"prettier-fix": "prettier '**/*.{json,sol,md}' --write",
|
|
"solhint": "solhint 'contracts/**/*.sol' --max-warnings 0",
|
|
"solhint-fix": "solhint 'contracts/**/*.sol' --fix",
|
|
"test": "hardhat test"
|
|
},
|
|
"devDependencies": {
|
|
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
|
|
"@openzeppelin/contracts": "4.8.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.6",
|
|
"@typescript-eslint/parser": "^5.59.6",
|
|
"eslint": "^8.40.0",
|
|
"eslint-config-prettier": "8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"hardhat": "^2.14.0",
|
|
"prettier": "2.8.8",
|
|
"prettier-plugin-solidity": "^1.1.3",
|
|
"solhint": "^3.4.1",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|