- Created by Si Chen, last modified on Jan 05, 2024
This is the emissions token network from the Operating System for Climate Action.
A Demo
You can try it yourself at https://emissions-test.opentaps.org/. You will need to an Avalanche Fuji testnet wallet and some test eth (which you can get here.) Then please email Climate SIG mailing list with your address to be added to it.
How it Works
The emissions tokens network uses tokens to represent the emissions of an entity, which could be an organization, a building, or even a person. It is the sum of all the emissions from different channels such as the utility emissions channel, plus offsetting Renewable Energy Certificates and carbon offsets. Each token represents either an emissions debt, which you incur through activities that emit greenhouse gases, or an emissions credit, which offset the debt by removing emissions from the atmosphere.
The carbon emissions token is a fungible token, whereas data on the utility emissions channel are just immutable data (not tokens), as they represent the emissions from a particular meter tied to a particular utility during a particular period of time. Following examples from capital markets, we can link this kind of data to the fungible tokens by:
- The underlying data, such as the utility emissions records, should be updated to link to the particular fungible token.
- The fungible token should contain a manifest of all the underlying data which went into it.
We propose to implement a carbon emissions token based on the eThaler project from the Financial Markets SIG. eThaler is a Central Bank Digital Currency (CBDC) implemented on a private Ethereum network running Hyperledger Besu. It supports a central bank which creates and mints tokens and transfers them to member banks, who would then distribute them to retail customers of the banks.
In the case of carbon emissions, the eThaler smart contracts could support the following participants on a tokens network:
- Token authority – a network operator or a supranational/national/regional carbon authority (see below) which authorizes a number of issuers of tokens.
- Token issuers – auditors of carbon emissions or certifiers of renewable energy or carbon offsets. Auditors would issue tokens based on audits of companies' operations. Certifiers would issue tokens based on projects they've certified.
- Token consumers – businesses and individuals who buy REC's or offsets to offset their own emissions.
Token Types
- Audited emissions - represents the actual emissions of an organization, as reported by an auditor.
- Carbon offsets - represents reduction of emissions through projects such as forestry, sequestration, etc.
- Renewable Energy Certificates (REC's) - represents energy generated from renewable sources such as wind and solar
The audited emissions tokens are "retired" (see below) as soon as they're issued from an auditor to a company or consumer. The offsets and REC's could be traded but are eventually retired when used to count as emissions offsets.
Token Operations
- Add new token definition – Multiple types of emissions tokens can be supported on the network, such as emissions, Renewable Energy Certificates (REC's), and offsets.
- Register/Unregister issuer – In our case, it would be registering and unregistering auditors or project certifiers authorized to issue tokens.
- Register/Unregister consumer – Auditors and project certifiers would register their customers on the network.
- Issue – Issues tokens based on results of operations from audited companies and renewable/offsets projects. Note that each issuer would be able to only issue allowed types of tokens, so an emissions auditor can issue Audited Emissions, a carbon offset developer or certifier Carbon offset tokens, and renewables developer REC's.
- Transfer – Emissions audit tokens cannot be transferred: They are retired as soon as issued and stay with the organization that was audited as a record of their emissions. Offsets and REC's can be transferred until they are retired. The total amount that could be transferred from one account to another is the sum of the tokens in their account minus the amount that has been retired.
- Retire - this is not in eThaler but would need to be implemented. When a token is marked as "retired," it is counted towards the emissions reduction of the retiring organization and cannot be transferred again.
- Burn – this would not be implemented.
The Carbon Emissions token taxonomy developed by the Interwork Alliance is similar to eThaler's token taxonomy. The differences are:
- Currency could be repeatedly transferred between parties, where as emissions records, offsets, and REC's should not be.
- Currency could be removed from circulation or "burned", but emissions records could not be, because the physical greenhouse gases stay in the atmosphere (hundreds of years at least.)
The emissions tokens would have the following fields:
- issuer identifier
- recipient identifier
- token type
- quantity
- UOM
- from date/time stamp
- thru date/time stamp
- metadata
- manifest
- date/time stamp of when the asset was created
- automatic retirement date, when the token will be retired in the account of whoever holds it. Usually the end of a calendar year.
Examples of these tokens/assets include:
- Renewable Energy Certificate:
- Issuer ID = Generator of REC
- Recipient ID = Buyer of REC
- Asset Type = REC
- Quantity = 1
- UOM = MWH
- From/thru date time stamp = do we need this for REC's? time period of the energy generation?
- Metadata = Region and Time of energy generated
- Manifest = URL linking to the registration for the REC purchased
- Carbon emissions offest:
- Issuer ID = Certifier or Issuer
- Recipient ID = Buyer
- Asset Type = Emissions Offset
- Quantity = amount
- UOM = MtCO2e
- From/thru date time stamp = do we need this for emissions offset?
- Metadata = type of project, location, etc.
- Manifest = URL linking to the registration of the emissions offset
- Audited Emissions:
- Issuer ID = auditor
- Recipient ID = organization or entity
- Asset Type = CO2 emissions
- Quantity = amount of emissions
- UOM = MtCO2e
- Metadata = Region and Time of emissions?
- From/thru date time stamp = time period of the net emissions (Why not gross emissions (before offset)?)
- Manifest = links to access all the emissions tokens/assets used to prepare this net emissions
With these tokens, we can calculate the net emissions by first subtracting the effect of Renewable Energy Certificates (REC's.) REC's offset the energy produced by non-renewable sources in designated jurisdictions. This feature requires differentiation of the non-renewable from renewable energy to be specified in the original emissions tokens/assets from utility emissions data channel. Then we subtract the offsets to get the net emissions in the jurisdictions that allow that accounting method.
Integration with Hyperledger Fabric
This network would be connected with Fabric channels such as the utility emissions channel through the auditors. The utility emissions channel is operated by an auditor on behalf of its customers. The auditor would also be on this network and would issue audited emissions tokens to its customers' wallets. The customers would then transact in emissions and offsets on this network using their wallets.
Possible Use Cases
Cap and Trade:
- The central bank could be the cap and trade authority.
- Tokens for allowable emissions could be issued to all members of the cap and trade regime.
- They can trade the tokens amongst themselves.
- As emissions are counted, during an audit, cap and trade tokens should be retired.
Green Bank:
- The central bank is a green bank, which raises funds for climate projects.
- For approved projects, the bank would issue emissions tokens to project developers based on the projected emissions reductions of the projects. Wouldn't that make the bank an issuer? Shouldn't the issuer only issue offsets upon verification that the projected emissions reductions have actually been reduced or projected emissions removals have actually been removed?
- When the actor's emissions reductions are verified, the certificate authority exchanges them for tokens.
- The tokens can then be redeemed for money. Don't issuers have yet to validated verified reductions before node operators register them on blockchain thus making them available for exchange?
Network Operator Model:
- The network operator is a neutral, blockchain technology vendor who runs the network for a (very very very small) fee.
- It could mint and issue tokens in response to requests from network members, who pay a fee for the tokens to be issued.
Outstanding Issues
Transfer of emissions down the supply chain and avoiding double counting are major issues to be addressed in the future. The problem is that emissions are counted in multiple ledgers, for example this document from Gold Standard describes how they could be counted in both offsets and national registries. See also the Gold Standard double counting guidelines document. Doesn't including the interval dates, location coordinates, and tax map key in the metadata prevent double counting?
Get Involved
7 Open
0 Closed
- Separate functions for retire and burn in emissions audits and offset tokensemissions-tokens#564 opened
Jun 20, 2022 by sichen1234 - change unit of emissions token from tCO2e to kgCO2eutility-emissionsemissions-tokensscope-3-emissions#526 opened
Apr 15, 2022 by sichen1234 - modify dApp to connect to Hedera through HashConnectemissions-tokenshedera#517 opened
Apr 06, 2022 by sichen1234 - deploy emissions tokens to Hedera testnetemissions-tokenshedera#514 opened
Apr 01, 2022 by sichen1234 - should "industry" role be given by contract owner?emissions-tokensmethane#503 opened
Mar 22, 2022 by sichen1234 - The Graph integration through create-eth-appethereumemissions-tokens#81 opened
Feb 16, 2021 by sichen1234
Get Involved
This is an open source project and anyone is welcome to get involved and we will be happy to see you contribute.
1) Start by subscribing to the Climate SIG mailing list for updates and meeting notifications.
2) Join our bi-monthly Peer Programming Zoom call for developers on Mondays at 9 AM US Pacific time (UTC-07:00 America/Los Angeles.) Please check the calendar for the next call.
3) Check out the good first issues from our blockchain-carbon-accounting in Hyperledger-labs and feel free to contribute a fix for one that looks interesting to you.
4) See our How to Contribute page for other ways how you could get involved.
- No labels
13 Comments
Robin Klemens
Hi Si Chen, thanks for sharing your idea of the Net Emissions Data Channel. I like the idea of having all net emissions accounted for each individual person/organization/company etc.
In the following, I post some questions which came to my mind:
Si Chen
Thanks for your comments:
I'll put these answers in the main wiki page as well.
Darren Zal
Great concept Si Chen,
I like the idea of preventing emissions tokens from being transferred once issued to the emitter,
and issuing another token to represent the “footprint” which can be passed down supply chains.
You mention an auditor issuing these “footprint” tokens to customers of emission token recipients.
It seems this would be easy upstream where transactions are high value and easily human audit-able,
but it would be challenging downstream, say in a B2C or C2C markets.
Why not allow these “footprint” tokens to be transferred freely without an auditor, to allow them to be passed down supply chains together with the goods and services they are linked to? Although this movement could allow them to be hidden, they remain linked to the emissions tokens from which they came, which cannot be moved.
And if the goods and services are tokenized then the offset tokens can be packaged with those, making them hard to hide and allowing them to automatically travel around with transfer of goods and services.
Considering carbon markets are useful for offsetting, and allowed for in the Paris agreement, why not allow issued offset tokens to be traded freely before being “retired”?
Or could the minted tokens be traded before they are issued?
Here is a sample scenario:
Offset token O is minted and tradable in offset markets, it is “active”.
Emission token E is minted and issued to recipient / emitter, it cannot be moved, it is “retired”.
However, another “footprint” token F is issued to recipient along with E, this one is “active” indicating it has not been offset.
F travels down supply chain together with the goods and services which the emissions are attributed to.
Emission footprint is eventually offset by retiring F tokens with a proportional amount of offsets O tokens, which “retires” both F and O
“offsetting” F with O issues a new token FO which represents offset emissions.
FO is further passed down supply chain to prove carbon neutrality.
Si Chen
Thanks for your feedback Darren Zal. You make some good points here. The emissions offsets and REC's could be available for trading until they are "retired," in which case they're owned by a particular party. I'll change the page for that.
As for the footprint token, I did some research on double counting. It's actually a very big problem which results from all these siloed ledgers of emissions offsets. For example, this document from the Gold Standard talks about the problem when offsets could also be counted in a national registry of emissions reduction. They've even published a Double Counting guideline document. Suffice it to say, this is a bigger problem which needs to be addressed by coordinating across multiple ledgers. I think it's better if we remove this feature for now.
Peter Clarke
Background
The US CLEAN Future Act was introduced into the US. House of Representatives as a draft bill on 2 March 2021.
This proposed legislation will materially impact the business requirements analysis
of the core Emissions Token Network within the Utility Emissions Channel.
Purpose
This post is
Highlights
Energy Attribution Certificate or Carbon Offset?
An Energy Attribution Certificate is measured in MWh of electricity generated from an eligible renewable system. An EAC is termed a REC
in the United States
I recommend referring to the MWh electricity attribute as the EAC Component of the Zero Emission Electricity Credit.
A Carbon Offset or Permit has no connection to a specific renewable generator except as a policy or legal convenience.
Hybrid Instrument
The Zero Emission Electricity Credit is a hybrid EAC Offset. It is easy to understand:
1.0 -[ Average Carbon Intensity/Carbon Intensity Factor] = ZECC
CARBON INTENSITY.—The term ‘‘carbon intensity’’ means the carbon dioxide equivalent emissions associated with the generation of 1 megawatt hour of electric energy, as determined by EPA
This will be an external data source.
CARBON INTENSITY FACTOR.—
Carbon Intensity Factor
Peter Clarke
David Dornyoh
Here is an Executive Summary of the Business Requirements
Peter Clarke Peter has taken a first review of the ZEEC or Zero Emission Electricity Certificate as contemplated by the CLEAN Futures Act.
Si Chenhas created a prototype of the Emissions Token Network with the Utility Emissions Channel as a Fabric Project by Robin Klemens
The workflow would now be to integrate these various streams. A subset of members have the objective of connecting this integrated platform as part of their roadmap to COP26.
In the meantime is Earth Day on or about 22 April and thus I will work on integration for November while sharing progress with the Earth Day MVP.
Robin Klemens
Hi David Dornyoh , thanks for your efforts towards COP26!
To which diagram are you referring to in 2.?
Can you share the roadmap of the subsets of members to COP26 with us? This could help to further coordinate the efforts of the overall group.
Thx,
Robin
Peter Clarke
Si and Robin have created a Utility Emissions Network and Emissions Token Network on AWS and Digital Ocean respectively.
Ry Jones has a template for technical material that is perfect for Hyperledger Labs READme documents. Technical material on Wiki is best moved to Github with a link from this wiki as a reference.
Summary:
This post is to let Robin Klemensknow that a utility blockchain is available to 'Join' and technical READme can be found on Github. Thank you.
Robin Klemens
Hi Peter, can you share the link to the template for technical materials provided by Ry Jones, pls?
Ry Jones
Hi, Robin. I'm not sure what Peter Clarkehas in mind - however, the TSC repo is probably a good start.
Peter Clarke
Hello Ry - Best Practices Badges / Templates - Learning Materials Development Working Group - Hyperledger Confluence
This set of guidelines is excellent! I had this in mind when working with developers . TSC Repo also very valuable.
Thank you.
Peter Clarke
Part I - Go to How to Contribute and then Click on "Issues"
Part II Build ZEEC Network or the Zero Emissions Electricity Certificate Blockchain
Part III Design Offset and REC tokens based upon ZEEC definitions
Part IV Choose taxonomy and cross-chain/multi channel architecture
Part V Build Ethereum Dapp/Wallet . Test other technologies (
Token Standards:
ERC-20 - the most popular of the Ethereum token standards (used by BNB, USDT, LINK)
ERC-223 - incorporates token Fallback technology which ensures that should the token be sent to a smart contract that does not work with that particular type of token, the tokens are returned to the original address.
ERC-721 - are non-fungible tokens (NFT), that cannot be replaced or replicated, can represent ownership over an asset.
ERC-777 - a revised version of ERC-20 with features like offering users more control over their tokens and allowing operators to send tokens on behalf of other addresses.
Tear down build and clean up. Write report and publish findings to members.
Securitisation network stays in Fabric 1.4 and at Operating System/Multi Channel Level
Instructions for ZEEC network
This will be the project for CASIG Energy.