Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blockchain_proof

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blockchain_proof

bThe_Blockchain_Proof_API_is_an_easy_to_prove_existence_of__binary_data_at_a_certain_point_in_time__Behinde_the_scenes_it_stores_entries_using_the_Factom__bitcoin_blockchain_by_means_of_our_generic_blockchain_API_bThe_flow_is_generally_as_follows1__Make_s

  • 0.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

blockchain_proof

BlockchainProof - JavaScript client for blockchain_proof The Blockchain Proof API is an easy to prove existence of (binary) data at a certain point in time. Behinde the scenes it stores entries using the Factom (bitcoin) blockchain by means of our generic blockchain API. The flow is generally as follows: 1. Make sure a Proof chain has been created using the /chain POST endpoint beforehand. Normally you only need one or a handful of chains, during the entiry lifetime of your proof solution. This is a relative expensive operation in terms of money. 2. Store proof entries on the proof chain from step 1. The entries will contain the content and metadata you want to store forever on the specified chain. 3. Retrieve an existing entry from the chain to verify or retrieve data Interactive testing: A web based test console is available in the <a href="https://store.sphereon.com\">Sphereon API Store This SDK is automatically generated by the Swagger Codegen project:

  • API version: 0.1.0
  • Package version: 0.1.0
  • Build date: 2016-11-09T04:32:41.106+01:00
  • Build package: class io.swagger.codegen.languages.JavascriptClientCodegen For more information, please visit https://sphereon.com

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install blockchain_proof --save
git

If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Getting Started

Please follow the installation instruction and execute the following JS code:

var BlockchainProof = require('blockchain_proof');

var defaultClient = BlockchainProof.ApiClient.instance;

// Configure OAuth2 access token for authorization: oauth2schema
var oauth2schema = defaultClient.authentications['oauth2schema'];
oauth2schema.accessToken = "YOUR ACCESS TOKEN"

var api = new BlockchainProof.ProofOfExistenceApi()

var request = new BlockchainProof.CreateChainRequest(); // {CreateChainRequest} Create a new Proof of Existence chain using the provided existence settings


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createChain(request, callback);

Documentation for API Endpoints

All URIs are relative to https://gw.api.cloud.sphereon.com/

ClassMethodHTTP requestDescription
BlockchainProof.ProofOfExistenceApicreateChainPOST /blockchain/proof/0.1.0/existenceCreate a new existence chain
BlockchainProof.ProofOfExistenceApiregisterContentPOST /blockchain/proof/0.1.0/existence/{chainId}Register content
BlockchainProof.ProofOfExistenceApiregisterStreamPOST /blockchain/proof/0.1.0/existence/{chainId}/streamRegister content using a bytestream/file
BlockchainProof.ProofOfExistenceApiverifyContentGET /blockchain/proof/0.1.0/existence/{chainId}Verify content
BlockchainProof.ProofOfExistenceApiverifyContentByHashGET /blockchain/proof/0.1.0/existence/{chainId}/{hash}Verify content by hash
BlockchainProof.ProofOfExistenceApiverifyStreamGET /blockchain/proof/0.1.0/existence/{chainId}/streamVerify content using a bytestream/file

Documentation for Models

Documentation for Authorization

oauth2schema

  • Type: OAuth
  • Flow: application
  • Authorization URL:
  • Scopes:
    • global: accessEverything

FAQs

Package last updated on 09 Nov 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc