|
| 1 | +--- |
| 2 | +label: Hypercerts |
| 3 | +order: -1 |
| 4 | +--- |
| 5 | + |
| 6 | +Change Code leverages the Hypercerts protocol, in turn developed from the ERC1155 token standard for semi-fungible tokens. While adhering to the requirements of the standard, Change Code modifies *how* some of the schema fields are used, adapting them to our theory of change and implementation needs. |
| 7 | + |
| 8 | +## ERC1155 Fields |
| 9 | + |
| 10 | +Name | `CC Hypercert | {Good Generator} {Index}` |
| 11 | +: The Hypercert name mirrors the name used for a project's IOUs. The concept of an index is again used to support single organizations working across multiple initiatives. |
| 12 | + |
| 13 | +Description |
| 14 | +: A description, not exceeding 200 characters, of the work to be done by the project. |
| 15 | + |
| 16 | +Image |
| 17 | +: While the image field is required by the Hypercerts standard, we do not believe a single immutable image to be valuable for the purposes of serious impact validation. To satisfy this requirement, the Changescape backend will automatically generate and provide an image to satisfy the requirement. |
| 18 | + |
| 19 | +## Hypercert Dimensions |
| 20 | + |
| 21 | +work_scope |
| 22 | +: A list of tasks to be done by the project. In development parlance this is a list of *outputs*--e.g. # of solar panels installed, kilos of supplies, $ of direct aid, # of vaccines. |
| 23 | + |
| 24 | +work_timeframe |
| 25 | +: The time period during which the work for the project is to be carried out. In line with the Hypercerts standard, this is represented as an ordered pair of UTC timestamps. |
| 26 | + |
| 27 | +impact_scope |
| 28 | +: Inside the Changescape `impact scope` is used to refer thematically to projects by category. For example, the [UN Sustainable Development Goals (SDGs)](https://sdgs.un.org/goals) or the [Ecological Benefits Framework (EBF)](https://ebfcommons.org/lex-icons/). Because the Hypercerts data is only aspirational, it would be premature to immutably publish indicators, which are instead reserved to be published only once verified inside Change Credits. |
| 29 | + |
| 30 | +impact_timeframe |
| 31 | +: The time period during which impact *outcomes* will be measured and calculated. For Hypercerts inside the Changescape, the start time is set equal to the start time for the `work_timeframe` while the end time is set for the end of the work period plus five (5) years. Again this data is represented as an ordered pair of UTC timestamps. |
| 32 | + |
| 33 | +contributors |
| 34 | +: A list of participants (organizations) that are contributing to the work done in the project. Each element in the list is composed of an on-chain address, a name, and a weight. The purpose of the weight is to signal relative contribution and may optionally be used to weight distributions among contributors. |
| 35 | + |
| 36 | +rights |
| 37 | +: As of version 1.0 of the Hypercerts standard, this value can only be set to *public display*. As it is a required field, Change Code simply applies the default value but does not otherwise use this information. |
| 38 | + |
| 39 | +hidden_properties |
| 40 | +: In development |
| 41 | + |
| 42 | +## Example Hypercert Dimensions |
| 43 | + |
| 44 | +``` |
| 45 | +"hypercert": { |
| 46 | + "work_scope": { |
| 47 | + "name": "Work Scope", |
| 48 | + "value": ["sustainable land management"], |
| 49 | + "excludes": [], |
| 50 | + "display_value": "sustainable land management" |
| 51 | + }, |
| 52 | + "impact_scope": { |
| 53 | + "name": "Impact Scope", |
| 54 | + "value": [SDG 13], [SDG 15] |
| 55 | + "excludes": [], |
| 56 | + "display_value": "SDG 13 - Climate Action", "SDG 15 - Life on Land" |
| 57 | + }, |
| 58 | + "work_timeframe": { |
| 59 | + "name": "Work Timeframe", |
| 60 | + "value": [1704096000, 1735711200], |
| 61 | + "display_value": "2024-01-01 -> 2024-12-31" |
| 62 | + }, |
| 63 | + "impact_timeframe": { |
| 64 | + "name": "Impact Timeframe", |
| 65 | + "value": [1704096000, 1893477600], |
| 66 | + "display_value": "2024-01-01 -> 2030-12-31" |
| 67 | + }, |
| 68 | + "contributors": { |
| 69 | + "name": "Contributors", |
| 70 | + "value": ["0xa1fa1fa000000000000000000000000000000000", "Project Developer", 0.9], ["0xa1fa1fa000000000000000000000000000000000", "Carbon Standards Body", 0.1] |
| 71 | + "display_value": "Project Developer", "Carbon Standards Body" |
| 72 | + }, |
| 73 | + "rights": { |
| 74 | + "name": "Rights", |
| 75 | + "value": ["Public Display"], |
| 76 | + "display_value": "Public Display" |
| 77 | + } |
| 78 | +} |
| 79 | +``` |
| 80 | + |
| 81 | +Additional details on the Hypercerts implementation itself can be found in the documentation [here](https://hypercerts.org/docs/implementation/metadata). |
0 commit comments