Socket
Book a DemoInstallSign in
Socket

@datafund/data-receipt

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@datafund/data-receipt

DataReceipt library uses fds.js library to send consent receipt files over Swarm to another account

latest
Source
npmnpm
Version
0.1.25
Version published
Maintainers
2
Created
Source

DataReceipt.js

A helper library to create FDS accounts, create Consent Receipts JWT tokens, send them over Swarm, decode and verify tokens with additional layer to support Consent Manager smart contract and consent signing and verification of Consent smart contract on blockchain.

DataReceipt.js library uses fds.js library to send consent receipt files over Swarm to another account ** BEWARE ** uses FDS.js multibox branch https://github.com/fairDataSociety/fds.js/tree/multibox

  • create account
  • unlock account
  • load project file
  • load private key
  • generate cr.jwt token
  • send cr.jwt token to accountname/yourself and wait for delivery
  • get all received files
  • for each received file check if its cr.jwt token
  • decode token and verify
  • log out all messages that are cr.jwt tokens

fds.js settings

you need to provide FDS object in window.FDS property for fds.js and datareceipt.js to work with Noordung blockchain View network: https://noordung.fairdatasociety.org/
Block explorer: https://blockscout.noordung.fairdatasociety.org/

window.FDS = new FDS({
    swarmGateway: 'https://swarm.fairdatasociety.org',
    ethGateway: 'https://geth-noordung.fairdatasociety.org',
    faucetAddress: 'https://dfaucet-testnet-prod.herokuapp.com/gimmie',
    httpTimeout: 1000,
    gasPrice: 0.1,
    ensConfig: {
        domain: 'datafund.eth',
        registryAddress: '0xc11f4427a0261e5ca508c982e747851e29c48e83',
        fifsRegistrarContractAddress: '0x01591702cb0c1d03b15355b2fab5e6483b6db9a7',
        resolverContractAddress: '0xf70816e998819443d5506f129ef1fa9f9c6ff5a7'
    },
    // multibox extension
    applicationDomain: "/shared/consents/"
}); 

Sample usage

let fd = new DataReceiptLib(); let password = 'test'; let accountName = 'testAccountName123123';

Account must exist

let subjectName = 'testAccountName1231234';

Create account (will fail if it exists)

let newAccount = await fd.createAccount(accountName, password);

get account

let account = await fd.unlockAccount(accountName, password);

Load private key

let loadPrivKey = await fd.loadPrivateKey(privateKey);

let loadSuccess = await fd.loadProject(project);

Sign token in project

let signedToken = await fd.generateToken();

Send file ower Swarm and retrieve its Swarm hash

let swarmHash = await fd.sendDataReceipt(signedToken, subjectName); where is cr.jwt stored?

How to send from newAccount to newAccount using blockchain

Get account address

let userAddress = fd.account.address;

Retrieve subjects address, this looks subdomain name in ENS

let subjectAddress = await fd.account.getAddressOf(subjectName);

let CM = await fd.getConsentManager();

let tx = await CM.createConsent(userAddress, subjectAddress, "0x" + swarmHash); once transaction is finished

get existing consents where account is DataUser

let uc = await CM.getUserConsents();

get existing consents where account is DataSubject

let sc = await CM.getSubjectConsents();

get consents for swarmHash

let cf = await CM.getConsentsFor("0x" + swarmHash);

How to check signatures

let consent = await fd.getConsent(uc[uc.length - 1]);

Get data location

let location = consent.swarmHash;

check if its signed by user

let us = await consent.isUserSigned();

await consent.signUser();

let ss = await consent.isSubjectSigned();

await consent.signSubject();

let tx = await CM.updateConsent(prevConsentAddress, "0x" + swarmHash);

display and check all user consents

let uc = await CM.getUserConsents();

Iterate through consents

await fd.asyncForEach(uc, async (consentAddress) => { ... }

let consent = await fd.getConsent(consentAddress);

let us = await consent.isUserSigned();

let ss = await consent.isSubjectSigned();

Check if both parties signed

let s = await consent.isSigned();

letv = await consent.isValid();

if updated anything else than 0x0000000000000000000000000000000000000000 then consent was updated with another consent.

let updated = await consent.isUpdatedWith();

Return values 0 - waiting for signatures 1 - active 2 - expired 3 - revoked status = await consent.status();

get all received messages

let messages = await fd.getReceivedMessages(true);

FAQs

Package last updated on 26 Jul 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts