The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperlane-monorepo/solidity/app/package.json

46 lines
1.3 KiB

{
"name": "@abacus-network/app",
"description": "Solidity contracts for Abacus apps",
"version": "0.1.1",
"dependencies": {
"@abacus-network/core": "^0.1.1",
"@abacus-network/utils": "^0.1.1",
"@openzeppelin/contracts-upgradeable": "^4.5.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@typechain/ethers-v5": "~7.0.0",
"@typechain/hardhat": "^2.0.1",
"@types/mocha": "^9.1.0",
"chai": "^4.3.0",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.4.4",
"hardhat": "^2.8.3",
"hardhat-gas-reporter": "^1.0.7",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.14",
"typechain": "^5.0.0"
},
"directories": {
"test": "test"
},
"homepage": "https://www.useabacus.network",
"keywords": [
"Abacus",
"Solidity"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"repository": "https://github.com/abacus-network/abacus-monorepo",
"scripts": {
SDK overhaul (#343) * Improve deploy ergonomics * Prettier * It works for the app template * Fix scripts * Fix build and tests * Update typescript/deploy/src/utils.ts Co-authored-by: Yorke Rhodes <yorke@useabacus.network> * Use stricter generics in sdk * Adapt deploy tooling to use generics * Fix infra types * Fix contract-metrics types * Fix contract-metrics types * Update RouterConfig generic * Update infra types * Remove diff file * Simplify contracts abstraction * Stash sdk changes for review * Refactor governance with new types * Fix AbacusApp and AbacusContract interfaces * Complete sdk refactor * Update deploy package * Stash infra changes * Fix infra build * Address some pr comments * Address more pr comments * Fix infra build * Fix sdk tests * Restore contract-metrics to main * Stash for nam * Fix hardhat provider bug * Use deep equal for array comparison * Fix tests * Move infra test networks to actual test (#371) * Fix lint * Fix utils exports * Remove prettier from solidity build * Fix build after merge * Remove excessive deploy logging * Type dev/core/config * Use inboxes over mailboxes * Use AllChains over Object.values(ChainName) * Cleanup owners in governance infra tests * Revert sdk mocha changes * Capitalize type names * More pr comments * Revert utils package changes * Apply prettier formatting * Make deploy dep on utils explicit * Revert hre.ethers.getSigners changes * Fetch multiprovider from environment (#380) Co-authored-by: yorhodes <yorke@useabacus.network> * Address pr comments * Fix infra build * Fix lint * Update infra scripts * Standardize Checker interface and abstract owners * Comment to explain governance checker ownership * Make it clear what the MailboxAddresses type represents * Type RustConfig with Networks and remove casts * Infra updates * Fix * Remove test log * Fix lint * Remove test addresses from SDK * Address sdk comments * PR review * Change MultiGeneric type order * Remove utils access * Elaborate in comments * fix lint * lint * PR Review Co-authored-by: Asa Oines <asaoines@Asas-MacBook-Pro.local> Co-authored-by: Asa Oines <asaoines@gmail.com> Co-authored-by: Nam Chu Hoai <nambrot@googlemail.com>
3 years ago
"build": "hardhat compile && hardhat typechain && tsc && npm run copy-types",
"copy-types": "cp types/*.d.ts dist/",
"coverage": "hardhat coverage",
"prettier": "prettier --write ./contracts ./test",
"test": "hardhat test"
},
"types": "dist/index.d.ts"
}