Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
68f6218
fix: Celo gas pricing and React hooks
Agneskoinange Jan 12, 2026
cc9ba8d
fix: Add enabled param to query hook
Agneskoinange Jan 12, 2026
a2c7bd1
fix: Prevent empty member queries
Agneskoinange Jan 12, 2026
292afc4
feat: Frontend UI redesign by EngAmal27
Agneskoinange Feb 2, 2026
0bab35e
fix: Update gas pricing and read flow rate from blockchain
Agneskoinange Feb 5, 2026
257f746
Merge branch 'feat/ui-redesign' into dev
Agneskoinange Feb 9, 2026
3aaee33
improve: Home screen with prominent balance and flow direction
Agneskoinange Feb 9, 2026
a7f9376
improve: Dashboard with real flow data
Agneskoinange Feb 9, 2026
c25c194
improve: Trustees screen with correct naming
Agneskoinange Feb 9, 2026
86ff3f4
clean: Remove dead calculateStats and circular import
Agneskoinange Feb 9, 2026
ab8f65c
feat: Add Welcome, Profile, Explore, SupportStreams screens
Agneskoinange Feb 9, 2026
75581b8
improve: Redesign all screens to match mockups
Agneskoinange Feb 9, 2026
1c34c7d
fix: Blockies type declaration and cleanup
Agneskoinange Feb 9, 2026
7aef7fa
feat: Add stop support and stream details screens
Agneskoinange Feb 9, 2026
be2e73e
feat: Fix contract for Superfluid v1.14 API and add validation tests
Agneskoinange Feb 9, 2026
39f6e6f
feat: Switch wallet provider from Dynamic Labs to Reown AppKit
Agneskoinange Feb 9, 2026
a220aed
feat: Add identity verification screen and banner
Agneskoinange Feb 9, 2026
459b5a8
feat: Add G$ claim screen with daily UBI claim
Agneskoinange Feb 9, 2026
9edd844
improve: Error handling, loading states, and UX feedback
Agneskoinange Feb 9, 2026
b0fa9a9
update contract address and subgraph config
Agneskoinange Feb 22, 2026
e51d2e6
update subgraph deployment config
Agneskoinange Feb 22, 2026
b519e48
add dark theme colors and custom styles
Agneskoinange Feb 22, 2026
becf1cb
fix: redirect to home on wallet connect
Agneskoinange Feb 22, 2026
32713cd
redesign bottom navbar with FAB support button
Agneskoinange Feb 22, 2026
fb9ffe9
update error state and verification banner UI
Agneskoinange Feb 22, 2026
b7bece3
fix query hooks and balance stream
Agneskoinange Feb 22, 2026
1a989b8
redesign login and welcome screens
Agneskoinange Feb 22, 2026
aba9bf8
redesign home screen with balance focus
Agneskoinange Feb 22, 2026
1b4f707
redesign profile with share and disconnect
Agneskoinange Feb 22, 2026
e848d01
redesign explore with search and sort filters
Agneskoinange Feb 22, 2026
b4c88f3
redesign stream details with safe GraphQL queries
Agneskoinange Feb 22, 2026
21bed07
redesign support streams screen
Agneskoinange Feb 22, 2026
9cf8bc3
update trust action with per-minute stream option
Agneskoinange Feb 22, 2026
80e4f3f
redesign stop support screen
Agneskoinange Feb 22, 2026
7e738e1
redesign claim G$ screen
Agneskoinange Feb 22, 2026
8f4d33a
update verify, trustees, and dashboard screens
Agneskoinange Feb 22, 2026
2c2f36f
fix: add bottom padding to prevent nav overlap
Agneskoinange Feb 23, 2026
845db9d
fix: time filter alignment and loading state
Agneskoinange Feb 23, 2026
e3b6109
fix: handle verify multicall errors
Agneskoinange Feb 23, 2026
fd88d6d
fix: add basename for sub-path deployment
Agneskoinange Feb 23, 2026
bc097fd
fix: verifier compatibility with Node.js deployment
Agneskoinange Mar 8, 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
13 changes: 13 additions & 0 deletions .hintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": [
"development"
],
"hints": {
"axe/name-role-value": [
"default",
{
"button-name": "off"
}
]
}
}
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,8 @@
"celo-composer",
"celo"
],
"packageManager": "yarn@4.5.1"
"packageManager": "yarn@4.5.1",
"dependencies": {
"@wagmi/core": "^2.18.1"
}
}
9 changes: 4 additions & 5 deletions packages/hardhat/contracts/TrustPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ contract TrustPool is CFASuperAppBase {
function onFlowCreated(
ISuperToken token,
address sender,
int96 /*flowRate*/,
bytes calldata ctx
) internal virtual override returns (bytes memory newCtx) {
newCtx = ctx;
Expand All @@ -77,25 +78,23 @@ contract TrustPool is CFASuperAppBase {
function onFlowUpdated(
ISuperToken token,
address sender,
int96 /*flowRate*/,
int96 previousFlowRate,
uint256,
uint256 /*lastUpdated*/,
bytes calldata ctx
) internal virtual override returns (bytes memory newCtx) {
newCtx = ctx;
// console.log("on flow updated");
newCtx = _updateTrust(token, sender, previousFlowRate, newCtx);
}

function onFlowDeleted(
function onInFlowDeleted(
ISuperToken token,
address sender,
address,
int96 previousFlowRate,
uint256 /*lastUpdated*/,
bytes calldata ctx
) internal virtual override returns (bytes memory newCtx) {
newCtx = ctx;
// console.log("on flow deleted %s", sender);
newCtx = _updateTrust(token, sender, previousFlowRate, newCtx);
}

Expand Down
Loading