From 0dbcc6b30d7655d1925880e6084bf4ccbd72450b Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Fri, 31 May 2024 20:07:27 +0200 Subject: [PATCH] fix remove templates --- templates.py | 67 ---------------------------------------------------- 1 file changed, 67 deletions(-) delete mode 100644 templates.py diff --git a/templates.py b/templates.py deleted file mode 100644 index 210b833..0000000 --- a/templates.py +++ /dev/null @@ -1,67 +0,0 @@ -# templates - - -credential_tmpl = { - "@context": "https://www.w3.org/2018/credentials/v1", - "id": "http://example.org/credentials/3731", - "type": ["VerifiableCredential"], - "credentialSubject": { - "id": "did:key:z6MkgGXSJoacuuNdwU1rGfPpFH72GACnzykKTxzCCTZs6Z2M", - }, - "issuer": None, - "issuanceDate": None -} - -proof_tmpl = { - '@context':'https://w3id.org/security/v2', - 'type': 'Ed25519Signature2018', - 'proofPurpose': 'assertionMethod', - 'verificationMethod': None, - 'created': None -} - -presentation_tmpl = { - "@context": ["https://www.w3.org/2018/credentials/v1"], - "id": "http://example.org/presentations/3731", - "type": ["VerifiablePresentation"], - "holder": "", - "verifiableCredential": [] -} - - -did_document_tmpl = { - "@context": [ - "https://www.w3.org/ns/did/v1", - { - "Ed25519VerificationKey2018": "https://w3id.org/security#Ed25519VerificationKey2018", - "publicKeyJwk": { - "@id": "https://w3id.org/security#publicKeyJwk", - "@type": "@json" - } - } - ], - "id": "", - "verificationMethod": [ - { - "id": "", - "type": "Ed25519VerificationKey2018", - "controller": "", - "publicKeyJwk": { - "kty": "OKP", - "crv": "Ed25519", - "x": "" - } - } - ], - "authentication": [ - ], - "assertionMethod": [ - ], - "service": [ - { - "id": "", - "type": "RevocationBitmap2022", - "serviceEndpoint": "data:application/octet-stream;base64,eJyzMmAAAwADKABr" - } - ] -}