@ballkidz/defifa 0.0.41 → 0.0.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/STYLE_GUIDE.md DELETED
@@ -1,565 +0,0 @@
1
- # Style Guide
2
-
3
- How we write Solidity and organize repos across the Juicebox V6 ecosystem. `nana-core-v6` is the gold standard — when in doubt, match what it does.
4
-
5
- ## File Organization
6
-
7
- ```
8
- src/
9
- ├── Contract.sol # Main contracts in root
10
- ├── abstract/ # Base contracts (JBPermissioned, JBControlled)
11
- ├── enums/ # One enum per file
12
- ├── interfaces/ # One interface per file, prefixed with I
13
- ├── libraries/ # Pure/view logic, prefixed with JB
14
- ├── periphery/ # Utility contracts (deadlines, price feeds)
15
- └── structs/ # One struct per file, prefixed with JB
16
- ```
17
-
18
- One contract/interface/struct/enum per file. Name the file after the type it contains.
19
-
20
- ## Pragma Versions
21
-
22
- ```solidity
23
- // Contracts — pin to exact version
24
- pragma solidity 0.8.28;
25
-
26
- // Interfaces, structs, enums — caret for forward compatibility
27
- pragma solidity ^0.8.0;
28
-
29
- // Libraries — pin to exact version like contracts
30
- pragma solidity 0.8.28;
31
- ```
32
-
33
- ## Imports
34
-
35
- Named imports only. Grouped by source, alphabetized within each group:
36
-
37
- ```solidity
38
- // External packages (alphabetized)
39
- import {ERC2771Context} from "@openzeppelin/contracts/metatx/ERC2771Context.sol";
40
- import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
41
- import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
42
- import {mulDiv} from "@prb/math/src/Common.sol";
43
-
44
- // Local: abstract contracts
45
- import {JBPermissioned} from "./abstract/JBPermissioned.sol";
46
-
47
- // Local: interfaces (alphabetized)
48
- import {IJBController} from "./interfaces/IJBController.sol";
49
- import {IJBDirectory} from "./interfaces/IJBDirectory.sol";
50
- import {IJBMultiTerminal} from "./interfaces/IJBMultiTerminal.sol";
51
-
52
- // Local: libraries (alphabetized)
53
- import {JBConstants} from "./libraries/JBConstants.sol";
54
- import {JBFees} from "./libraries/JBFees.sol";
55
-
56
- // Local: structs (alphabetized)
57
- import {JBAccountingContext} from "./structs/JBAccountingContext.sol";
58
- import {JBSplit} from "./structs/JBSplit.sol";
59
- ```
60
-
61
- ## Contract Structure
62
-
63
- Section banners divide the contract into a fixed ordering. Every contract with 50+ lines uses these banners:
64
-
65
- ```solidity
66
- /// @notice One-line description.
67
- contract JBExample is JBPermissioned, IJBExample {
68
- // A library that does X.
69
- using SomeLib for SomeType;
70
-
71
- //*********************************************************************//
72
- // --------------------------- custom errors ------------------------- //
73
- //*********************************************************************//
74
-
75
- error JBExample_SomethingFailed(uint256 amount);
76
-
77
- //*********************************************************************//
78
- // ------------------------- public constants ------------------------ //
79
- //*********************************************************************//
80
-
81
- uint256 public constant override FEE = 25;
82
-
83
- //*********************************************************************//
84
- // ----------------------- internal constants ------------------------ //
85
- //*********************************************************************//
86
-
87
- uint256 internal constant _FEE_BENEFICIARY_PROJECT_ID = 1;
88
-
89
- //*********************************************************************//
90
- // ------------------------ private constants ------------------------ //
91
- //*********************************************************************//
92
-
93
- //*********************************************************************//
94
- // --------------- public immutable stored properties ---------------- //
95
- //*********************************************************************//
96
-
97
- IJBDirectory public immutable override DIRECTORY;
98
-
99
- //*********************************************************************//
100
- // -------------- internal immutable stored properties -------------- //
101
- //*********************************************************************//
102
-
103
- //*********************************************************************//
104
- // --------------------- public stored properties -------------------- //
105
- //*********************************************************************//
106
-
107
- //*********************************************************************//
108
- // -------------------- internal stored properties ------------------- //
109
- //*********************************************************************//
110
-
111
- //*********************************************************************//
112
- // -------------------- private stored properties -------------------- //
113
- //*********************************************************************//
114
-
115
- //*********************************************************************//
116
- // ------------------- transient stored properties ------------------- //
117
- //*********************************************************************//
118
-
119
- //*********************************************************************//
120
- // -------------------------- constructor ---------------------------- //
121
- //*********************************************************************//
122
-
123
- //*********************************************************************//
124
- // ---------------------------- modifiers ---------------------------- //
125
- //*********************************************************************//
126
-
127
- //*********************************************************************//
128
- // ------------------------- receive / fallback ---------------------- //
129
- //*********************************************************************//
130
-
131
- //*********************************************************************//
132
- // ---------------------- external transactions ---------------------- //
133
- //*********************************************************************//
134
-
135
- //*********************************************************************//
136
- // ----------------------- external views ---------------------------- //
137
- //*********************************************************************//
138
-
139
- //*********************************************************************//
140
- // -------------------------- public views --------------------------- //
141
- //*********************************************************************//
142
-
143
- //*********************************************************************//
144
- // ----------------------- public transactions ----------------------- //
145
- //*********************************************************************//
146
-
147
- //*********************************************************************//
148
- // ---------------------- internal transactions ---------------------- //
149
- //*********************************************************************//
150
-
151
- //*********************************************************************//
152
- // ----------------------- internal helpers -------------------------- //
153
- //*********************************************************************//
154
-
155
- //*********************************************************************//
156
- // ----------------------- internal views ---------------------------- //
157
- //*********************************************************************//
158
-
159
- //*********************************************************************//
160
- // ----------------------- private helpers --------------------------- //
161
- //*********************************************************************//
162
- }
163
- ```
164
-
165
- **Section order:**
166
- 1. Custom errors
167
- 2. Public constants
168
- 3. Internal constants
169
- 4. Private constants
170
- 5. Public immutable stored properties
171
- 6. Internal immutable stored properties
172
- 7. Public stored properties
173
- 8. Internal stored properties
174
- 9. Private stored properties
175
- 10. Transient stored properties
176
- 11. Constructor
177
- 12. Modifiers
178
- 13. Receive / fallback
179
- 14. External transactions
180
- 15. External views
181
- 16. Public views
182
- 17. Public transactions
183
- 18. Internal transactions
184
- 19. Internal helpers
185
- 20. Internal views
186
- 21. Private helpers
187
-
188
- Use these additional section labels where they better match the contents of the block:
189
- - `internal functions` is accepted as equivalent to `internal helpers`
190
- - `events` and `structs` are acceptable in specialized contracts that define them explicitly
191
-
192
- Functions are alphabetized within each section.
193
-
194
- ## Interface Structure
195
-
196
- ```solidity
197
- /// @notice One-line description.
198
- interface IJBExample is IJBBase {
199
- // Events (with full NatSpec)
200
-
201
- /// @notice Emitted when X happens.
202
- /// @param projectId The ID of the project.
203
- /// @param amount The amount transferred.
204
- event SomethingHappened(uint256 indexed projectId, uint256 amount);
205
-
206
- // Views (alphabetized)
207
-
208
- /// @notice The directory of terminals and controllers.
209
- function DIRECTORY() external view returns (IJBDirectory);
210
-
211
- // State-changing functions (alphabetized)
212
-
213
- /// @notice Does the thing.
214
- /// @param projectId The ID of the project.
215
- /// @return result The result.
216
- function doThing(uint256 projectId) external returns (uint256 result);
217
- }
218
- ```
219
-
220
- **Rules:**
221
- - Events first, then views, then state-changing functions
222
- - No custom errors in interfaces — errors belong in the implementing contract
223
- - Full NatSpec on every event, function, and parameter
224
- - Alphabetized within each group
225
-
226
- ## Naming
227
-
228
- | Thing | Convention | Example |
229
- |-------|-----------|---------|
230
- | Contract | PascalCase | `JBMultiTerminal` |
231
- | Interface | `I` + PascalCase | `IJBMultiTerminal` |
232
- | Library | PascalCase | `JBCashOuts` |
233
- | Struct | PascalCase | `JBRulesetConfig` |
234
- | Enum | PascalCase | `JBApprovalStatus` |
235
- | Enum value | PascalCase | `ApprovalExpected` |
236
- | Error | `ContractName_ErrorName` | `JBMultiTerminal_FeeTerminalNotFound` |
237
- | Public constant | `ALL_CAPS` | `FEE`, `MAX_FEE` |
238
- | Internal constant | `_ALL_CAPS` | `_FEE_HOLDING_SECONDS` |
239
- | Public immutable | `ALL_CAPS` | `DIRECTORY`, `PERMISSIONS` |
240
- | Public/external function | `camelCase` | `cashOutTokensOf` |
241
- | Internal/private function | `_camelCase` | `_processFee` |
242
- | Internal storage | `_camelCase` | `_accountingContextForTokenOf` |
243
- | Function parameter | `camelCase` (no underscores) | `projectId`, `cashOutCount` |
244
-
245
- ## NatSpec
246
-
247
- **Contracts:**
248
- ```solidity
249
- /// @notice One-line description of what the contract does.
250
- contract JBExample is IJBExample {
251
- ```
252
-
253
- **Functions:**
254
- ```solidity
255
- /// @notice Records funds being added to a project's balance.
256
- /// @param projectId The ID of the project which funds are being added to.
257
- /// @param token The token being added.
258
- /// @param amount The amount added, as a fixed point number with the same decimals as the terminal.
259
- /// @return surplus The new surplus after adding.
260
- function recordAddedBalanceFor(
261
- uint256 projectId,
262
- address token,
263
- uint256 amount
264
- ) external override returns (uint256 surplus) {
265
- ```
266
-
267
- **Structs:**
268
- ```solidity
269
- /// @custom:member duration The number of seconds the ruleset lasts for. 0 means it never expires.
270
- /// @custom:member weight How many tokens to mint per unit paid (18 decimals).
271
- /// @custom:member weightCutPercent How much weight decays each cycle (9 decimals).
272
- struct JBRulesetConfig {
273
- uint32 duration;
274
- uint112 weight;
275
- uint32 weightCutPercent;
276
- }
277
- ```
278
-
279
- **Mappings:**
280
- ```solidity
281
- /// @notice Context describing how a token is accounted for by a project.
282
- /// @custom:param projectId The ID of the project.
283
- /// @custom:param token The address of the token.
284
- mapping(uint256 projectId => mapping(address token => JBAccountingContext)) internal _accountingContextForTokenOf;
285
- ```
286
-
287
- ## Numbers
288
-
289
- Use underscores for thousands separators:
290
-
291
- ```solidity
292
- uint256 internal constant _FEE_HOLDING_SECONDS = 2_419_200; // 28 days
293
- uint32 public constant MAX_WEIGHT_CUT_PERCENT = 1_000_000_000;
294
- uint256 public constant MAX_RESERVED_PERCENT = 10_000;
295
- ```
296
-
297
- ## Function Calls
298
-
299
- Use named arguments for all function calls with 2 or more arguments — in both `src/` and `script/`:
300
-
301
- ```solidity
302
- // Good — named arguments
303
- token.mint({account: beneficiary, amount: count});
304
- _transferOwnership({newOwner: address(0), projectId: 0});
305
- PERMISSIONS.hasPermission({
306
- operator: sender,
307
- account: account,
308
- projectId: projectId,
309
- permissionId: permissionId,
310
- includeRoot: true,
311
- includeWildcardProjectId: true
312
- });
313
-
314
- // Bad — positional arguments with 2+ args
315
- token.mint(beneficiary, count);
316
- _transferOwnership(address(0), 0);
317
- ```
318
-
319
- Single-argument calls use positional style: `_burn(amount)`.
320
-
321
- This also applies to constructor calls, struct literals, and inherited/library calls (e.g., OZ `_mint`, `_safeMint`, `safeTransfer`, `allowance`, `Clones.cloneDeterministic`).
322
-
323
- Named argument keys must use **camelCase** — never underscores. If a function's parameter names use underscores, rename them to camelCase first.
324
-
325
- ## Multiline Signatures
326
-
327
- ```solidity
328
- function recordCashOutFor(
329
- address holder,
330
- uint256 projectId,
331
- uint256 cashOutCount,
332
- JBAccountingContext calldata accountingContext
333
- )
334
- external
335
- override
336
- returns (
337
- JBRuleset memory ruleset,
338
- uint256 reclaimAmount,
339
- JBCashOutHookSpecification[] memory hookSpecifications
340
- )
341
- {
342
- ```
343
-
344
- Modifiers and return types go on their own indented lines.
345
-
346
- ## Error Handling
347
-
348
- - Validate inputs with explicit `revert` + custom error
349
- - Use `try-catch` only for external calls to untrusted contracts (hooks, fee processing)
350
- - Always include relevant context in error parameters
351
-
352
- ```solidity
353
- // Direct validation
354
- if (amount > limit) revert JBTerminalStore_InadequateControllerPayoutLimit(amount, limit);
355
-
356
- // External call to untrusted hook
357
- try hook.afterPayRecordedWith(context) {} catch (bytes memory reason) {
358
- emit HookAfterPayReverted(hook, context, reason, _msgSender());
359
- }
360
- ```
361
-
362
- ---
363
-
364
- ## DevOps
365
-
366
- ### foundry.toml
367
-
368
- Standard config across all repos:
369
-
370
- ```toml
371
- [profile.default]
372
- solc = '0.8.28'
373
- evm_version = 'cancun'
374
- optimizer_runs = 200
375
- libs = ["node_modules", "lib"]
376
- fs_permissions = [{ access = "read-write", path = "./"}]
377
-
378
- [fuzz]
379
- runs = 4096
380
-
381
- [invariant]
382
- runs = 1024
383
- depth = 100
384
- fail_on_revert = false
385
-
386
- [fmt]
387
- number_underscore = "thousands"
388
- multiline_func_header = "all"
389
- wrap_comments = true
390
- ```
391
-
392
- **Optional sections (add only when needed):**
393
- - `[rpc_endpoints]` — repos with fork tests. Maps named endpoints to env vars (e.g. `ethereum = "${RPC_ETHEREUM_MAINNET}"`).
394
- - `[profile.ci_sizes]` — only when CI needs different optimizer settings than defaults for the size check step (e.g. `optimizer_runs = 200` when the default profile uses a lower value).
395
-
396
- **Common variations:**
397
- - `via_ir = true` when hitting stack-too-deep
398
- - `optimizer = false` when optimization causes stack-too-deep
399
- - `optimizer_runs` reduced when deep struct nesting causes stack-too-deep at 200 runs
400
-
401
- ### CI Workflows
402
-
403
- Every repo has at minimum `test.yml` and `lint.yml`:
404
-
405
- **test.yml:**
406
- ```yaml
407
- name: test
408
- on:
409
- pull_request:
410
- branches: [main]
411
- push:
412
- branches: [main]
413
- jobs:
414
- forge-test:
415
- runs-on: ubuntu-latest
416
- steps:
417
- - uses: actions/checkout@v4
418
- with:
419
- submodules: recursive
420
- - uses: actions/setup-node@v4
421
- with:
422
- node-version: 25.9.0
423
- - name: Install npm dependencies
424
- run: npm install
425
- - name: Install Foundry
426
- uses: foundry-rs/foundry-toolchain@v1
427
- - name: Run tests
428
- run: forge test --deny notes --fail-fast --summary --detailed --skip "*/script/**"
429
- env:
430
- RPC_ETHEREUM_MAINNET: ${{ secrets.RPC_ETHEREUM_MAINNET }}
431
- - name: Build contracts
432
- run: forge build --deny notes --skip "*/test/**" --skip "*/script/**"
433
- ```
434
-
435
- **lint.yml:**
436
- ```yaml
437
- name: lint
438
- on:
439
- pull_request:
440
- branches: [main]
441
- push:
442
- branches: [main]
443
- jobs:
444
- forge-fmt:
445
- runs-on: ubuntu-latest
446
- steps:
447
- - uses: actions/checkout@v4
448
- - name: Install Foundry
449
- uses: foundry-rs/foundry-toolchain@v1
450
- - name: Check formatting
451
- run: forge fmt --check
452
- ```
453
-
454
- **Static review workflow** (repos with `src/` contracts only):
455
-
456
- Keep repo-local static review automation current with the package's runtime surface. At minimum, CI should run formatting, linting, and build checks with `--deny notes`. Repos that only contain deployment scripts can rely on the shared formatting and lint jobs unless they add runtime contracts.
457
-
458
- ### package.json
459
-
460
- ```json
461
- {
462
- "name": "@bananapus/package-name-v6",
463
- "version": "x.x.x",
464
- "license": "MIT",
465
- "repository": { "type": "git", "url": "git+https://github.com/Org/repo.git" },
466
- "engines": { "node": "25.9.0" },
467
- "scripts": {
468
- "test": "forge test",
469
- "coverage": "forge coverage --match-path \"./src/*.sol\" --report lcov --report summary"
470
- },
471
- "dependencies": { ... },
472
- "devDependencies": {
473
- "@sphinx-labs/plugins": "0.33.3"
474
- }
475
- }
476
- ```
477
-
478
- **Scoping:** `@bananapus/` for Bananapus repos, `@rev-net/` for revnet, `@croptop/` for croptop, `@bannynet/` for banny, `@ballkidz/` for defifa.
479
-
480
- ### remappings.txt
481
-
482
- Every repo has a `remappings.txt` as the **single source of truth** for import remappings. Never add remappings to `foundry.toml`.
483
-
484
- **Principle:** Import paths in Solidity source must match npm package names exactly. With `libs = ["node_modules", "lib"]`, Foundry auto-resolves `@scope/package/path/File.sol` → `node_modules/@scope/package/path/File.sol`. No remapping needed for packages installed as real directories.
485
-
486
- **Note:** Auto-resolution does **not** work for symlinked packages (e.g. npm workspace links). Workspace repos like `deploy-all-v6` and `nana-cli-v6` need explicit `@scope/package/=node_modules/@scope/package/` remappings for each symlinked dependency.
487
-
488
- **Minimal content** (most repos):
489
-
490
- ```
491
- forge-std/=lib/forge-std/src/
492
- ```
493
-
494
- Only add extra remappings for:
495
- - **`forge-std`** — always needed (git submodule with `src/` subdirectory)
496
- - **Repo-specific `lib/` submodules** that have no npm package (e.g., `hookmate/=lib/hookmate/src/`)
497
- - **Symlinked npm packages** — need explicit `@scope/package/=node_modules/@scope/package/` entries
498
- - **Nested transitive deps** — e.g., `@chainlink/contracts-ccip/` nested inside `@bananapus/suckers-v6/node_modules/`
499
-
500
- **Never add remappings for:**
501
- - npm packages that match their import path and are installed as real directories — they auto-resolve
502
- - Short-form aliases (e.g., `@bananapus/core/` → `@bananapus/core-v6/src/`) — fix the import instead
503
- - Packages available via npm that are also git submodules — remove the submodule, use npm
504
-
505
- **Import path convention:**
506
-
507
- | Package | Import path | Resolves to |
508
- |---------|------------|-------------|
509
- | `@bananapus/core-v6` | `@bananapus/core-v6/src/libraries/JBConstants.sol` | `node_modules/@bananapus/core-v6/src/...` |
510
- | `@openzeppelin/contracts` | `@openzeppelin/contracts/token/ERC20/IERC20.sol` | `node_modules/@openzeppelin/contracts/...` |
511
- | `@uniswap/v4-core` | `@uniswap/v4-core/src/interfaces/IPoolManager.sol` | `node_modules/@uniswap/v4-core/src/...` |
512
-
513
- ### Linting
514
-
515
- Solar (Foundry's built-in linter) runs automatically during `forge build`. It scans all `.sol` files in `libs` directories, including `node_modules`.
516
-
517
- **All test helpers must use relative imports** (e.g. `../../src/structs/JBRuleset.sol`), not bare `src/` imports. This ensures solar can resolve paths when the helper is consumed via npm in downstream repos.
518
-
519
- ### Fork Tests
520
-
521
- Fork tests use named RPC endpoints defined in `[rpc_endpoints]` of `foundry.toml`. No skip guards — fork tests should hard-fail if the RPC endpoint is unavailable, making CI failures explicit.
522
-
523
- ```solidity
524
- function setUp() public {
525
- vm.createSelectFork("ethereum");
526
- // ... setup code
527
- }
528
- ```
529
-
530
- The endpoint name (e.g. `"ethereum"`) maps to an env var via `foundry.toml`:
531
-
532
- ```toml
533
- [rpc_endpoints]
534
- ethereum = "${RPC_ETHEREUM_MAINNET}"
535
- ```
536
-
537
- For multi-chain fork tests, add all needed endpoints.
538
-
539
- ### Formatting
540
-
541
- Run `forge fmt` before committing. The `[fmt]` config in `foundry.toml` enforces:
542
- - Thousands separators on numbers (`1_000_000`)
543
- - Multiline function headers when multiple parameters
544
- - Wrapped comments at reasonable width
545
-
546
- CI checks formatting via `forge fmt --check`.
547
-
548
- ### Branching
549
-
550
- - `main` is the primary branch
551
- - Feature branches for PRs
552
- - All PRs trigger test + lint workflows
553
- - Submodule checkout with `--recursive` in CI
554
-
555
- ### Dependencies
556
-
557
- - Solidity dependencies via npm (`node_modules/`)
558
- - `forge-std` as a git submodule in `lib/`
559
- - Sphinx plugins as a devDependency
560
- - Cross-repo references use `file:../sibling-repo` in local development
561
- - Published npm versions are pinned exactly; do not use semver ranges or `latest`
562
-
563
- ### Contract Size Checks
564
-
565
- CI runs `forge build --deny notes --sizes` to catch contracts approaching the 24KB limit. When the repo's default `optimizer_runs` differs from what you want for size checking, use `FOUNDRY_PROFILE=ci_sizes forge build --deny notes --sizes` with a `[profile.ci_sizes]` section in `foundry.toml`.