Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

This archived package was designed to integrate Ethereum blockchain data into Meteor.js applications, providing reactive data source.

Notifications You must be signed in to change notification settings

ethereum/meteor-package-blocks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Ethereum blocks

Provides you with an EthBlocks collection, which stores the last 50 blocks.

You can query blocks like any other Meteor collection.

Installation

$ meteor add ethereum:blocks

Usage

Initialize Blocks on the start of your application, as soon as you have a ethereum connection:

EthBlocks.init();

Last block

To get the latest block use:

EthBlocks.latest;

Note this property is reactive, so it will re-run your reactive functions, e.g. when used in template helpers.

In case you want to update the latest block you can change properties as follows:

EthBlocks.latest = { hash: "12345" };

This would only change the hash property of the latest block, but leave all other properties as is.

Current gas price

Additionally all blocks get the current gasprice add:

EthBlocks.latest.gasPrice; // '1136672632018' (wei)

Detecting forks

You can call Blocks.detectFork(callback) to detect chain re-organisation (forks), while your applications is running. This detection, is checking the new incoming blocks parentHash, with the last known block you have.

Note The fork detection can currently be wrong, when you're importing blocks, as they can come in different orders.

EthBlocks.detectFork(function(oldBlock, newBlock) {
  // this callback will be fired with the old block we knew and the new block.
});

Note you can call EthBlocks.detectFork(cb) mutliple times, to add multiple callbacks.

Clear all stored blocks

If you switch to a chain, which has a lower block number EthBlocks will reset your interally cache of the last 50 blocks. If you want to do that manually call:

EthBlocks.clear();

About

This archived package was designed to integrate Ethereum blockchain data into Meteor.js applications, providing reactive data source.

Resources

Stars

Watchers

Forks

Contributors 3

  •  
  •  
  •