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

Protocol Query with or without grant, Configure with grant. #894

Merged
merged 11 commits into from
Sep 12, 2024
Prev Previous commit
Next Next commit
lint fix
LiranCohen committed Sep 11, 2024
commit 6d292b8b700b28448a7a2b8d1bac590fa39c0d35
2 changes: 1 addition & 1 deletion packages/agent/src/utils.ts
Original file line number Diff line number Diff line change
@@ -39,7 +39,7 @@ export async function getDwnServiceEndpointUrls(didUri: string, dereferencer: Di
}

export function getRecordAuthor(record: RecordsWriteMessage | RecordsDeleteMessage): string | undefined {
return Message.getAuthor(record)
return Message.getAuthor(record);
}

export function isRecordsWrite(obj: unknown): obj is RecordsWrite {