Define claims of the VC
const issuer = '[YOUR_ISSUER_DID]'; // example: did:abc:xxxxxxxxxx
const subject = '[SUBJECT_DID]'; // example: did:abc:xxxxxxxxxx
const issuanceDate = new Date().toISOString();
const credential = {
credentialSubject: {
'@id': subject,
name: 'Jerson Miranda'
},
issuanceDate,
issuer
};
Import EthCore class and instance
const host = "[URL_BLOCKCHAIN_NODE]";
const privateKey = "[YOUR_PRIVATE_KEY]";
const headers = [{}];
const props = {
host,
privateKey,
headers,
options = {chainId: "[CHAIN_ID]", gasPrice: "[GAS_PRICE]"}
};
const ethCore = new EthCore(props);
Import ProofTypeEthereum class and instance
const proofTypeEthereum = new ProofTypeEthereum(ethCore, { identityManager: "[IDENTITY_MANAGE_ADDRESS]", verificationRegistry: "[VERIFICATION_REGISTRY_ADDRESS]", validDays: 0 });
const credentialWithProof = proofTypeEthereum.generateProof(credential);
console.log(credentialWithProof);
/*
"{\"credentialSubject\":{\"name\":\"Jerson Miranda\",\"@id\":\"did:ev:bmM8YE5vpmntRLWrMV4n5YMYBUSE5xzwYK6nU\"},\"issuanceDate\":\"2023-01-11T18:19:19.026Z\",\"issuer\":\"did:ev:bmM8YE5vpmntRLWrMV4n5YMYBUSE5xzwYK6nU\",\"proof\":{\"contractAddress\":\"0xEC42B9716cDb5d2471186F7B75C4570fdfB9F469\",\"networkId\":80001,\"type\":\"EthereumAttestationRegistry2019\"}}"
*/