This repository was archived by the owner on Feb 5, 2026. It is now read-only.
generated from ScopeLift/foundry-template
-
Notifications
You must be signed in to change notification settings - Fork 0
feat(permitter): Add minTokensPerBidder, remove maxBid from Permit struct #5
Merged
jemilezzet
merged 8 commits into
main
from
jemil/tally-9985-add-mintokensperbidder-constructor-parameter-and-remove
Jan 13, 2026
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
78e32ec
Add minTokensPerBidder, remove maxBid from permit struct
jemilezzet 34160b3
Revert if min is larger than max
jemilezzet 1828f18
Fix fuzz test
jemilezzet 537b97c
Lint
jemilezzet 901063a
Add Makefile
jemilezzet e799ba1
Relint
jemilezzet 00d0f07
Add ability for owner to update min tokens
jemilezzet a72cddc
Lint
jemilezzet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| { | ||
| "mcpServers": { | ||
| "linear": { | ||
| "type": "stdio", | ||
| "command": "npx", | ||
| "args": [ | ||
| "mcp-remote", | ||
| "https://mcp.linear.app/sse" | ||
| ], | ||
| "env": {} | ||
| }, | ||
| "context7": { | ||
| "command": "npx", | ||
| "args": [ | ||
| "-y", | ||
| "@upstash/context7-mcp@latest" | ||
| ] | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| .PHONY: install build test fmt lint coverage clean | ||
|
|
||
| # Install dependencies and tools | ||
| install: | ||
| forge install | ||
| cargo install scopelint | ||
|
|
||
| # Build contracts | ||
| build: | ||
| forge build | ||
|
|
||
| # Run tests | ||
| test: | ||
| forge test | ||
|
|
||
| # Format code | ||
| fmt: | ||
| scopelint fmt | ||
|
|
||
| # Check linting (formatting + validation) | ||
| lint: | ||
| scopelint check | ||
|
|
||
| # Run coverage | ||
| coverage: | ||
| forge coverage --report summary --report lcov | ||
|
|
||
| # Clean build artifacts | ||
| clean: | ||
| forge clean |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.