allow to confirm an amount received

This commit is contained in:
2023-03-26 09:04:00 -06:00
parent 1279ff050c
commit a3b577e2c2
3 changed files with 119 additions and 9 deletions

View File

@@ -1,5 +1,12 @@
export const SCHEMA_ORG_CONTEXT = "https://schema.org";
export const SERVICE_ID = "endorser.ch";
export interface AgreeVerifiableCredential {
"@context": string;
"@type": string;
object: Record<any, any>;
}
export interface GiveServerRecord {
agentDid: string;
amount: number;