Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bun.lockb
Binary file not shown.
4 changes: 4 additions & 0 deletions contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,7 @@ forge fmt
```shell
$ forge snapshot
```

## Publishing

Run `bun publish`. If there is a version bump, run `bun version <patch|minor|major>`.
6 changes: 4 additions & 2 deletions contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "contracts",
"name": "@ensdomains/namechain-contracts",
"type": "module",
"version": "0.0.0",
"scripts": {
"deploy": "hardhat deploy",
"compile:hardhat": "hardhat compile",
Expand All @@ -10,7 +11,8 @@
"test": "bun run test:forge && bun run test:hardhat",
"coverage": "forge coverage --report lcov && bun run test:hardhat && bun run test:bridge",
"clean": "forge clean && hardhat clean",
"devnet": "bun ./script/runDevnet.ts"
"devnet": "bun ./script/runDevnet.ts",
"prepublishOnly": "forge compile && bun compile:hardhat"
},
"devDependencies": {
"@ensdomains/hardhat-chai-matchers-viem": "^0.1.4",
Expand Down
Loading