File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -7737,7 +7737,6 @@ export async function submitShieldClaim(params: {
77377737 params . reimbursementWalletAddress ,
77387738 ) ;
77397739 formData . append ( 'description' , params . caseDescription ) ;
7740- // TODO: temporary value for signature, update to correct signature after implement signature verification
77417740 formData . append ( 'signature' , params . signature ) ;
77427741 formData . append ( 'timestamp' , Date . now ( ) . toString ( ) ) ;
77437742
@@ -7774,6 +7773,11 @@ export async function submitShieldClaim(params: {
77747773 }
77757774}
77767775
7776+ /**
7777+ * Fetches all shield claims, relates to the current user profile ID.
7778+ *
7779+ * @returns The shield claims.
7780+ */
77777781export async function getShieldClaims ( ) {
77787782 try {
77797783 const claims = await submitRequestToBackground < Claim [ ] > ( 'getClaims' ) ;
You can’t perform that action at this time.
0 commit comments