This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

eth-co2
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

eth-co2

eth-co2.js is a JavaScript library to enable offsetting of CO2 emissions via the Ethereum blockchain. It is part of the CO2ken project. More information is available in our introductory blog post. You can also follow us on Twitter.

N.B. This library is currently pre-alpha, and currently only usable on the Rinkeby network! If you are interested in using it, please let us know.

Building

npm run build

Example usage

Calculating the cost of offsetting CO2 emissions

For example, to calculate the cost of offsetting a flight from London to New York:

import "babel-polyfill";
import { ethers } from "ethers";
 
import { getCO2kenPrice } from "eth-co2";
 
const dapp = async () => {
  let provider = new ethers.providers.Web3Provider(web3.currentProvider);
  window.price = await getCO2kenPrice(provider);
  let flightEmissions = 500;  // approx kg CO2 emissions from LON -> NYC flight
  let co2kenPrice = await getCO2kenPrice(web3);  // Cost in DAI to offset 1 ton of CO2
  let offsetCost = flightEmissions / 1000 * co2kenPrice;
};
 
dapp().catch(e => { console.error(e) });

Check total supply of CO2kens

import { getCo2kenSupply } from "eth-co2";
 
let supply = await getCo2kenSupply(provider);

Check total balance of payments to CO2ken contract

import { getCo2kenPaymentsBalance } from "eth-co2";
 
let balance = await getCo2kenPaymentsBalance(provider);

Pay DAI to offset carbon emissions

import { offsetCarbon } from "eth-co2";
 
await offsetCarbon(provider, dai);

Obtain gas footprint

import { getFootprint } from "eth-co2";
 
let gasFootprint = await getFootprint(provider);  // CO2 emissions per gas

Estimate emissions from a transaction

let emissions = gasUsed * gasFootprint;
let offsetCost = emissions * co2kenPrice;

Wrap it all up for convenience

import { estimateEmissions } from "eth-co2";
 
let emissions = await estimateEmissions(provider, contractName, functionName);

Readme

Keywords

Package Sidebar

Install

npm i eth-co2

Weekly Downloads

1

Version

0.0.8

License

ISC

Unpacked Size

68.2 kB

Total Files

28

Last publish

Collaborators

  • aspiers