-
-
+
G
@@ -530,7 +529,7 @@ function SuccessContent() {
Sepolia
-
+
{isFullyVerified && (
diff --git a/lib/roleDetection.ts b/lib/roleDetection.ts
index 8b55730..9494a3d 100644
--- a/lib/roleDetection.ts
+++ b/lib/roleDetection.ts
@@ -17,6 +17,7 @@ export type DetectedRoles = {
isVerified: boolean;
builderGrantIds: bigint[];
committeeGrantIds: bigint[];
+ grantorGrantIds: bigint[];
isBuilder: boolean;
isCommittee: boolean;
isDaoAdmin: boolean;
@@ -146,6 +147,7 @@ export function useRoleDetection(): DetectedRoles {
isVerified: false,
builderGrantIds: [],
committeeGrantIds: [],
+ grantorGrantIds: [],
isBuilder: false,
isCommittee: false,
isDaoAdmin: false,
@@ -205,6 +207,7 @@ export function useRoleDetection(): DetectedRoles {
isVerified,
builderGrantIds: builderIds,
committeeGrantIds: committeeIds,
+ grantorGrantIds: grantorIds,
isBuilder,
isCommittee,
isDaoAdmin,