0.1.8 • Published 10 months ago

@daosign/core v0.1.8

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

Daosign Core

DAOsign Core

This core package includes basic functional to create, validate both signing proof payload and proof itself.

Usage

To use, follow these steps:

  1. Install core package:

    npm install @daosign/cre
  2. Import create payload function:

    import { createProofOfAuthorityPayload } from "@daosign/core"

Example

Example usage:

import { createProofOfAuthorityPayload, createSignedProof } from "@daosign/core"

//create payload
function createPayload(signer ,agreementCID, agreementSigners) {
    const payload = createProofOfAuthorityPayload({from: signer, agreementCID: agreementCID, signers: agreementSigners});
    return payload;
}

function createSignedProof(signer, signingPayload, signature){
  const signedPayload = { address:signer, data: signingPayload, sig: signature};
  const proofPayload = createSignedProofPayload(signedPayload);
  return proofPayload;
}
0.1.8

10 months ago

0.1.7

10 months ago

0.1.6

11 months ago

0.1.5

12 months ago

0.1.2

12 months ago

0.1.4

12 months ago

0.1.3

12 months ago

0.1.1

1 year ago

0.1.0

1 year ago