Skip to content
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9e10890
chore: upgrade to v4.2.0-nightly.20260409 with local gregojuice
mverzilli Apr 9, 2026
4e6ce3a
Fork token contract and point AMM/PoP deps to local copy
mverzilli Apr 9, 2026
551e53d
feat: add offchain link service for encoding/decoding transfer URLs
mverzilli Apr 9, 2026
a370b82
feat: add sent history service for tracking offchain transfers
mverzilli Apr 9, 2026
b123a59
chore: add qrcode.react dependency for transfer link QR codes
mverzilli Apr 9, 2026
c8a02b4
feat: add Send context with reducer, provider, and state machine
mverzilli Apr 9, 2026
24866c6
feat: add executeTransferOffchain to contract service
mverzilli Apr 9, 2026
d21e427
feat: add Send UI components
mverzilli Apr 9, 2026
dec1846
feat: add Claim page components
mverzilli Apr 9, 2026
eac37bb
feat: add hash routing for claim page and Swap/Send tab bar
mverzilli Apr 9, 2026
6f2a266
feat: wire offchain transfer methods through ContractsContext
mverzilli Apr 9, 2026
c4392f9
chore: add Token to workspace for compilation
mverzilli Apr 9, 2026
a0fb70a
chore: add deploy-subscription-fpc script and graceful FPC handling
mverzilli Apr 9, 2026
69348fd
final tweaks
mverzilli Apr 13, 2026
d6f8334
Merge branch 'main' into feat/p2p-offchain-transfers
mverzilli Apr 13, 2026
aa74e8d
update deps
mverzilli Apr 13, 2026
1a953d6
simplify token
mverzilli Apr 13, 2026
e2436db
remove plans
mverzilli Apr 13, 2026
2b03c96
refactor fpc deployment script
mverzilli Apr 13, 2026
dc36f5c
remove outdated script
mverzilli Apr 13, 2026
a379b3e
minor
mverzilli Apr 13, 2026
ed2c4a3
remove redundant type declaration
mverzilli Apr 13, 2026
467ccfe
ux improvements
mverzilli Apr 13, 2026
7eabe4f
readme and yarn task
mverzilli Apr 13, 2026
33a2b10
Merge branch 'main' of github.com:AztecProtocol/gregoswap into feat/p…
Thunkar Apr 17, 2026
72fe7ae
fixes
Thunkar Apr 17, 2026
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
3 changes: 2 additions & 1 deletion contracts/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[workspace]
members = [
"proof_of_password",
"amm"
"amm",
"token"
]
2 changes: 1 addition & 1 deletion contracts/amm/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/aztec" }
token = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/noir-contracts/contracts/app/token_contract" }
token = { path = "../token" }
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/uint-note" }
4 changes: 2 additions & 2 deletions contracts/proof_of_password/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ authors = [""]

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/aztec" }
token = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/noir-contracts/contracts/app/token_contract" }
token = { path = "../token" }
poseidon = { tag = "v0.1.1", git = "https://github.com/noir-lang/poseidon" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/compressed-string" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/compressed-string" }
10 changes: 10 additions & 0 deletions contracts/token/Nargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "token_contract"
authors = [""]
type = "contract"

[dependencies]
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/aztec" }
uint_note = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/uint-note" }
compressed_string = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/compressed-string" }
balance_set = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v4.2.0-nightly.20260412", directory = "noir-projects/aztec-nr/balance-set" }
Loading
Loading