Skip to content

Commit 9394706

Browse files
authored
Merge pull request #26 from hokunet/dtb/buckets-wrapper
feat: buckets wrapper
2 parents 2a06101 + 00a650b commit 9394706

40 files changed

+3783
-1479
lines changed

LICENSE-MIT LICENSE

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
The MIT License (MIT)
1+
MIT License
2+
3+
Copyright (c) 2024 Hoku Contributors
24

35
Permission is hereby granted, free of charge, to any person obtaining a copy
46
of this software and associated documentation files (the "Software"), to deal
@@ -7,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
79
copies of the Software, and to permit persons to whom the Software is
810
furnished to do so, subject to the following conditions:
911

10-
The above copyright notice and this permission notice shall be included in
11-
all copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
1214

1315
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1416
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1517
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1618
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1719
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19-
THE SOFTWARE.
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

LICENSE-APACHE

+176-201
Large diffs are not rendered by default.

README.md

+445-88
Large diffs are not rendered by default.

package.json

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
{
22
"name": "contracts",
3-
"version": "1.0.0",
4-
"description": "",
3+
"version": "0.0.0",
4+
"description": "Hoku core contracts",
55
"main": "index.js",
66
"scripts": {
7-
"test": "forge test"
7+
"test": "forge test",
8+
"build": "forge build",
9+
"fmt": "forge fmt --check",
10+
"fmt:fix": "forge fmt",
11+
"lint": "solhint 'src/**/*.sol'",
12+
"lint:fix": "solhint 'src/**/*.sol' --fix",
13+
"format": "pnpm run fmt:fix && pnpm run lint:fix",
14+
"clean": "forge clean"
815
},
916
"keywords": [],
1017
"author": "",
11-
"license": "ISC",
18+
"license": "MIT OR Apache-2.0",
1219
"devDependencies": {
1320
"@nomicfoundation/hardhat-foundry": "^1.1.2",
1421
"hardhat": "^2.22.13",

0 commit comments

Comments
 (0)