npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

blockchain_proof

v0.1.0

Published

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

Downloads

4

Readme

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/

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- BlockchainProof.ProofOfExistenceApi | createChain | POST /blockchain/proof/0.1.0/existence | Create a new existence chain BlockchainProof.ProofOfExistenceApi | registerContent | POST /blockchain/proof/0.1.0/existence/{chainId} | Register content BlockchainProof.ProofOfExistenceApi | registerStream | POST /blockchain/proof/0.1.0/existence/{chainId}/stream | Register content using a bytestream/file BlockchainProof.ProofOfExistenceApi | verifyContent | GET /blockchain/proof/0.1.0/existence/{chainId} | Verify content BlockchainProof.ProofOfExistenceApi | verifyContentByHash | GET /blockchain/proof/0.1.0/existence/{chainId}/{hash} | Verify content by hash BlockchainProof.ProofOfExistenceApi | verifyStream | GET /blockchain/proof/0.1.0/existence/{chainId}/stream | Verify content using a bytestream/file

Documentation for Models

Documentation for Authorization

oauth2schema

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