Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(core): add timestamp check #72

Merged
merged 24 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
208b4c4
feat(prover): support UUPS proxy and storage solution
mariocao Dec 3, 2024
ee8cd26
test: update contracts to latest changes
mariocao Dec 3, 2024
58dc5c8
test: add UPPS proxy upgrade tests
mariocao Dec 3, 2024
622cd6d
chore(ignition): fix modules to UUPS changes
mariocao Dec 3, 2024
8b38696
chore: add prettier as sol formatter
mariocao Dec 5, 2024
078e178
feat(core): add UUPS support
mariocao Dec 5, 2024
7fba9d1
test: reorganize and update tests
mariocao Dec 5, 2024
5b2bc93
chore(ignition): update ignition core v1 module
mariocao Dec 5, 2024
47ac2e3
fix(prover): disable initializers on constructor
mariocao Dec 5, 2024
ff34277
feat(core): add support for UUPS proxy
mariocao Dec 5, 2024
8fadfa0
refactor: rename storage internal functions
mariocao Dec 5, 2024
ccf94c5
test(core): use proxy in test deployments
mariocao Dec 5, 2024
48e09a9
chore: bump versions
mariocao Dec 6, 2024
d787ee5
chore(ignition): remove core v1 module
mariocao Dec 6, 2024
30021ca
chore(tasks): add deploy tasks
mariocao Dec 6, 2024
c5efef1
refactor(contracts): add ISedaCore interface
mariocao Dec 6, 2024
242dd3b
test(proxy): add seda core proxy tests
mariocao Dec 6, 2024
ca64aa5
chore(tasks): fix minor bug and restructure
mariocao Dec 6, 2024
b3d515a
chore(tasks): add reset flag to replace existing deployments
mariocao Dec 6, 2024
1173400
chore(tasks): simplify parameter file validation
Thomasvdam Dec 6, 2024
a50aeda
refactor(permissioned): use getRequest from RequestHandlerBase
mariocao Dec 6, 2024
f816df5
feat(core): add storage slot to RequestHandlerBase
mariocao Dec 6, 2024
f9f0a01
feat(core): check timestamp if request is tracked by contract
mariocao Dec 6, 2024
f0ec1fa
style: add small cosmetic changes
mariocao Dec 9, 2024
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
15 changes: 15 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "avoid",
"overrides": [
{
"files": "*.sol",
"options": {
"singleQuote": false
}
}
],
"plugins": ["prettier-plugin-solidity"]
}
Binary file modified bun.lockb
Binary file not shown.
22 changes: 0 additions & 22 deletions contracts/abstract/RequestHandlerBase.sol

This file was deleted.

29 changes: 0 additions & 29 deletions contracts/abstract/ResultHandlerBase.sol

This file was deleted.

70 changes: 0 additions & 70 deletions contracts/core/RequestHandler.sol

This file was deleted.

83 changes: 0 additions & 83 deletions contracts/core/ResultHandler.sol

This file was deleted.

145 changes: 0 additions & 145 deletions contracts/core/Secp256k1Prover.sol

This file was deleted.

Loading
Loading