├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── artifacts ├── FormulaGrammar.json ├── Readme.md ├── Taxonomy.json ├── base │ ├── base.json │ ├── fractional-fungible │ │ └── latest │ │ │ ├── fractional-fungible.json │ │ │ ├── fractional-fungible.md │ │ │ └── fractional-fungible.proto │ ├── fractional-non-fungible │ │ └── latest │ │ │ ├── fractional-non-fungible.json │ │ │ ├── fractional-non-fungible.md │ │ │ └── fractional-non-fungible.proto │ ├── singleton │ │ └── latest │ │ │ ├── singleton.json │ │ │ ├── singleton.md │ │ │ └── singleton.proto │ ├── tokens.proto │ ├── unique-fractional-fungible │ │ └── latest │ │ │ ├── unique-fractional-fungible.json │ │ │ ├── unique-fractional-fungible.md │ │ │ └── unique-fractional-fungible.proto │ ├── unique-whole-fungible │ │ └── latest │ │ │ ├── unique-whole-fungible.json │ │ │ ├── unique-whole-fungible.md │ │ │ └── unique-whole-fungible.proto │ ├── whole-fungible │ │ └── latest │ │ │ ├── whole-fungible.json │ │ │ ├── whole-fungible.md │ │ │ └── whole-fungible.proto │ └── whole-non-fungible │ │ └── latest │ │ ├── whole-non-fungible.json │ │ ├── whole-non-fungible.md │ │ └── whole-non-fungible.proto ├── behavior-groups │ ├── credible-claim-control │ │ └── latest │ │ │ ├── credible-claim-control.json │ │ │ ├── credible-claim-control.md │ │ │ └── credible-claim-control.proto │ ├── offsetable-supply-control │ │ └── latest │ │ │ ├── offsetable-supply-control.json │ │ │ ├── offsetable-supply-control.md │ │ │ └── offsetable-supply-control.proto │ ├── processed-claim-control │ │ └── latest │ │ │ ├── processed-claim-control.json │ │ │ ├── processed-claim-control.md │ │ │ └── processed-claim-control.proto │ └── supply-control │ │ └── latest │ │ ├── supply-control.json │ │ ├── supply-control.md │ │ └── supply-control.proto ├── behaviors │ ├── attestable │ │ └── latest │ │ │ ├── attestable.json │ │ │ ├── attestable.md │ │ │ └── attestable.proto │ ├── burnable │ │ └── latest │ │ │ ├── burnable.json │ │ │ ├── burnable.md │ │ │ └── burnable.proto │ ├── compliant │ │ └── latest │ │ │ ├── compliant.json │ │ │ ├── compliant.md │ │ │ └── compliant.proto │ ├── credible │ │ └── latest │ │ │ ├── credible.json │ │ │ ├── credible.md │ │ │ └── credible.proto │ ├── delegable │ │ └── latest │ │ │ ├── delegable.json │ │ │ ├── delegable.md │ │ │ └── delegable.proto │ ├── divisible │ │ └── latest │ │ │ ├── divisible.json │ │ │ ├── divisible.md │ │ │ └── divisible.proto │ ├── encumberable │ │ └── latest │ │ │ ├── encumberable.json │ │ │ ├── encumberable.md │ │ │ └── encumberable.proto │ ├── fabricate │ │ └── latest │ │ │ ├── fabricate.json │ │ │ ├── fabricate.md │ │ │ └── fabricate.proto │ ├── holdable │ │ └── latest │ │ │ ├── holdable.json │ │ │ ├── holdable.md │ │ │ └── holdable.proto │ ├── indivisible │ │ └── latest │ │ │ ├── indivisible.json │ │ │ ├── indivisible.md │ │ │ └── indivisible.proto │ ├── issuable │ │ └── latest │ │ │ ├── issuable.json │ │ │ ├── issuable.md │ │ │ └── issuable.proto │ ├── logable │ │ └── latest │ │ │ ├── logable.json │ │ │ ├── logable.md │ │ │ └── logable.proto │ ├── mintable │ │ └── latest │ │ │ ├── mintable.json │ │ │ ├── mintable.md │ │ │ └── mintable.proto │ ├── non-transferable │ │ └── latest │ │ │ ├── non-transferable.json │ │ │ ├── non-transferable.md │ │ │ └── non-transferable.proto │ ├── offsetable │ │ └── latest │ │ │ ├── offsetable.json │ │ │ ├── offsetable.md │ │ │ └── offsetable.proto │ ├── overdraftable │ │ └── latest │ │ │ ├── overdraftable.json │ │ │ ├── overdraftable.md │ │ │ └── overdraftable.proto │ ├── pausable │ │ └── latest │ │ │ ├── pausable.json │ │ │ ├── pausable.md │ │ │ └── pausable.proto │ ├── processable │ │ └── latest │ │ │ ├── processable.json │ │ │ ├── processable.md │ │ │ └── processable.proto │ ├── redeemable │ │ └── latest │ │ │ ├── redeemable.json │ │ │ ├── redeemable.md │ │ │ └── redeemable.proto │ ├── referenceable │ │ └── latest │ │ │ ├── referenceable.json │ │ │ ├── referenceable.md │ │ │ └── referenceable.proto │ ├── revocable │ │ └── latest │ │ │ ├── revocable.json │ │ │ ├── revocable.md │ │ │ └── revocable.proto │ ├── roles │ │ └── latest │ │ │ ├── roles.json │ │ │ ├── roles.md │ │ │ └── roles.proto │ ├── singleton │ │ └── latest │ │ │ ├── singleton.json │ │ │ ├── singleton.md │ │ │ └── singleton.proto │ ├── transferable │ │ └── latest │ │ │ ├── transferable.json │ │ │ ├── transferable.md │ │ │ ├── transferable.pdf │ │ │ └── transferable.proto │ └── unique-transferable │ │ └── latest │ │ ├── unique-transferable.json │ │ ├── unique-transferable.md │ │ └── unique-transferable.proto ├── property-sets │ ├── cea │ │ └── latest │ │ │ ├── cea.json │ │ │ ├── cea.md │ │ │ └── cea.proto │ ├── cesp │ │ └── latest │ │ │ ├── cesp.json │ │ │ ├── cesp.md │ │ │ └── cesp.proto │ ├── co-benefit │ │ └── latest │ │ │ ├── co-benefit.json │ │ │ ├── co-benefit.md │ │ │ └── co-benefit.proto │ ├── core-carbon-principles │ │ └── latest │ │ │ ├── core-carbon-principles.json │ │ │ ├── core-carbon-principles.md │ │ │ └── core-carbon-principles.proto │ ├── date-range │ │ └── latest │ │ │ ├── date-range.json │ │ │ ├── date-range.md │ │ │ └── date-range.proto │ ├── durability │ │ └── latest │ │ │ ├── durability.json │ │ │ ├── durability.md │ │ │ └── durability.proto │ ├── ecological-checkpoint │ │ └── latest │ │ │ ├── ecological-checkpoint.json │ │ │ ├── ecological-checkpoint.md │ │ │ └── ecological-checkpoint.proto │ ├── ecological-claim-source │ │ └── latest │ │ │ ├── ecological-claim-source.json │ │ │ ├── ecological-claim-source.md │ │ │ └── ecological-claim-source.proto │ ├── ecological-project-info │ │ └── latest │ │ │ ├── ecological-project-info.json │ │ │ ├── ecological-project-info.md │ │ │ └── ecological-project-info.proto │ ├── ego │ │ └── latest │ │ │ ├── ego.json │ │ │ ├── ego.md │ │ │ └── ego.proto │ ├── emission-generator │ │ └── latest │ │ │ ├── emission-generator.json │ │ │ ├── emission-generator.md │ │ │ └── emission-generator.proto │ ├── file │ │ └── latest │ │ │ ├── file.json │ │ │ ├── file.md │ │ │ └── file.proto │ ├── geolocation │ │ └── latest │ │ │ ├── geolocation.json │ │ │ ├── geolocation.md │ │ │ └── geolocation.proto │ ├── ggbsc │ │ └── latest │ │ │ ├── ggbsc.json │ │ │ ├── ggbsc.md │ │ │ └── ggbsc.proto │ ├── mitigation-activity │ │ └── latest │ │ │ ├── mitigation-activity.json │ │ │ ├── mitigation-activity.md │ │ │ └── mitigation-activity.proto │ ├── modular-benefit-project │ │ └── latest │ │ │ ├── modularbenefitproject.json │ │ │ ├── modularbenefitproject.md │ │ │ └── modularbenefitproject.proto │ ├── paris-agreement-compliance │ │ └── latest │ │ │ ├── paris-agreement-compliance.json │ │ │ ├── paris-agreement-compliance.md │ │ │ └── paris-agreement-compliance.proto │ ├── replacement │ │ └── latest │ │ │ ├── replacement.json │ │ │ ├── replacement.md │ │ │ └── replacement.proto │ ├── sku │ │ └── latest │ │ │ ├── sku.json │ │ │ ├── sku.md │ │ │ └── sku.proto │ └── verified-link │ │ └── latest │ │ ├── verified-link.json │ │ ├── verified-link.md │ │ └── verified-link.proto └── token-templates │ ├── definitions │ ├── Bill-of-Lading │ │ └── latest │ │ │ ├── Bill-of-Lading.docx │ │ │ ├── Bill-of-Lading.json │ │ │ ├── Bill-of-Lading.md │ │ │ └── Bill-of-Lading.proto │ ├── Bond │ │ └── latest │ │ │ ├── Bond.json │ │ │ ├── Bond.md │ │ │ └── Bond.proto │ ├── CET-old │ │ └── latest │ │ │ ├── CET-old-version.json │ │ │ ├── CET-old-version.md │ │ │ └── CET-old-version.proto │ ├── CET │ │ └── latest │ │ │ ├── CET.json │ │ │ └── CET.md │ ├── Carbon-ReductionRemoval-Unit │ │ └── latest │ │ │ ├── Carbon-ReductionRemoval-Unit.json │ │ │ ├── Carbon-ReductionRemoval-Unit.md │ │ │ ├── Carbon-ReductionRemoval-Unit.proto │ │ │ └── build-tech-specs.sh │ ├── Carbon-Reference-Token │ │ └── latest │ │ │ ├── Carbon-Reference-Token.json │ │ │ ├── Carbon-Reference-Token.md │ │ │ ├── Carbon-Reference-Token.proto │ │ │ └── build-tech-specs.sh │ ├── Document │ │ └── latest │ │ │ ├── Document.json │ │ │ ├── Document.md │ │ │ ├── Document.proto │ │ │ └── DocumentToken.pptx │ ├── EThaler │ │ └── latest │ │ │ ├── EThaler.json │ │ │ ├── EThaler.md │ │ │ └── EThaler.proto │ ├── Ecological-Claim │ │ └── latest │ │ │ ├── Ecological-Claim.json │ │ │ ├── Ecological-Claim.md │ │ │ ├── Ecological-Claim.proto │ │ │ └── build-tech-specs.sh │ ├── Ecological-Project │ │ └── latest │ │ │ ├── Ecological-Project.json │ │ │ ├── Ecological-Project.md │ │ │ ├── Ecological-Project.proto │ │ │ └── build-tech-specs.sh │ ├── Emoney │ │ └── latest │ │ │ ├── Emoney.json │ │ │ ├── Emoney.md │ │ │ └── Emoney.proto │ ├── FabToken │ │ └── latest │ │ │ ├── FabToken.json │ │ │ ├── FabToken.md │ │ │ └── FabToken.proto │ ├── Inventory │ │ └── latest │ │ │ ├── Inventory.json │ │ │ ├── Inventory.md │ │ │ └── Inventory.proto │ ├── Issuance │ │ └── latest │ │ │ ├── Issuance.json │ │ │ ├── Issuance.md │ │ │ └── Issuance.proto │ ├── LearningToken1 │ │ └── latest │ │ │ ├── LearningToken1.json │ │ │ ├── LearningToken1.md │ │ │ └── LearningToken1.proto │ ├── LearningToken2 │ │ └── latest │ │ │ ├── LearningToken2.json │ │ │ ├── LearningToken2.md │ │ │ └── LearningToken2.proto │ ├── License-Diploma │ │ └── latest │ │ │ ├── License-Diploma.json │ │ │ ├── License-Diploma.md │ │ │ └── License-Diploma.proto │ ├── Log │ │ └── latest │ │ │ ├── Log.json │ │ │ ├── Log.md │ │ │ ├── Log.proto │ │ │ └── LogToken.pptx │ ├── Loyalty │ │ └── latest │ │ │ ├── Loyalty.json │ │ │ ├── Loyalty.md │ │ │ └── Loyalty.proto │ ├── Natural-GemStone │ │ └── latest │ │ │ ├── Natural-Gemstone.json │ │ │ ├── Natural-Gemstone.md │ │ │ └── Natural-Gemstone.proto │ ├── OriginalArt │ │ └── latest │ │ │ ├── OriginalArt.json │ │ │ ├── OriginalArt.md │ │ │ └── OriginalArt.proto │ ├── Processed-Claim │ │ └── latest │ │ │ ├── Processed-Claim.json │ │ │ ├── Processed-Claim.md │ │ │ ├── Processed-Claim.proto │ │ │ └── build-tech-specs.sh │ ├── ReservedTicket │ │ └── latest │ │ │ ├── ReservedTicket.json │ │ │ ├── ReservedTicket.md │ │ │ └── ReservedTicket.proto │ ├── UEFA-Euro-2020-VIP │ │ └── latest │ │ │ └── UEFA-Euro-2020-VIP.json │ └── common │ │ ├── readme.md │ │ └── sustainability │ │ └── common.proto │ ├── formulas │ ├── [tF{~d,t,g,SC}+phSKU] │ │ └── latest │ │ │ ├── [tF{~d,t,g,SC}+phSKU].json │ │ │ ├── [tF{~d,t,g,SC}+phSKU].md │ │ │ └── [tF{~d,t,g,SC}+phSKU].proto │ ├── [tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA] │ │ └── latest │ │ │ ├── [tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA].json │ │ │ ├── [tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA].md │ │ │ └── [tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA].proto │ ├── [tF’{d,t,e,v,g,OSC}+phCCP] │ │ └── latest │ │ │ ├── [tF’{d,t,e,v,g,OSC}+phCCP].json │ │ │ ├── [tF’{d,t,e,v,g,OSC}+phCCP].md │ │ │ └── [tF’{d,t,e,v,g,OSC}+phCCP].proto │ ├── [tF’{d,t,m,r}+phEGO+phGGPSC] │ │ └── latest │ │ │ ├── [tF’{d,t,m,r}+phEGO+phGGPSC].json │ │ │ ├── [tF’{d,t,m,r}+phEGO+phGGPSC].md │ │ │ └── [tF’{d,t,m,r}+phEGO+phGGPSC].proto │ ├── [tN{d,t,b}+phEPI+phMBPr] │ │ └── latest │ │ │ ├── [tN{d,t,b}+phEPI+phMBPr].json │ │ │ ├── [tN{d,t,b}+phEPI+phMBPr].md │ │ │ └── [tN{d,t,b}+phEPI+phMBPr].proto │ ├── [tN{d,t,e,v,g,OSC}+phCCP] │ │ └── latest │ │ │ ├── [tN{d,t,e,v,g,OSC}+phCCP].json │ │ │ ├── [tN{d,t,e,v,g,OSC}+phCCP].md │ │ │ └── [tN{d,t,e,v,g,OSC}+phCCP].proto │ ├── [tN{~d,t,c,SC}+phFile] │ │ └── latest │ │ │ ├── [tN{~d,t,c,SC}+phFile].json │ │ │ ├── [tN{~d,t,c,SC}+phFile].md │ │ │ └── [tN{~d,t,c,SC}+phFile].proto │ ├── [tN{~d,t,s,e,b}+phFile] │ │ └── latest │ │ │ ├── [tN{~d,t,s,e,b}+phFile].json │ │ │ ├── [tN{~d,t,s,e,b}+phFile].md │ │ │ └── [tN{~d,t,s,e,b}+phFile].proto │ ├── [tN{~d,~t,g,e,CCC}+phEC] │ │ └── latest │ │ │ ├── [tN{~d,~t,g,CCC}+phEC].json │ │ │ ├── [tN{~d,~t,g,CCC}+phEC].md │ │ │ └── [tN{~d,~t,g,CCC}+phEC].proto │ ├── [tN{~d,~t,g,e,PCC}+phCB+phECS+phEC] │ │ └── latest │ │ │ ├── [tN{~d,~t,g,e,PCC}+phCB+phECS+phEC].json │ │ │ ├── [tN{~d,~t,g,e,PCC}+phCB+phECS+phEC].md │ │ │ └── [tN{~d,~t,g,e,PCC}+phCB+phECS+phEC].proto │ ├── [tN{~d,~t,g,m}+phEC] │ │ └── latest │ │ │ ├── [tN{~d,~t,g,m}+phEC].json │ │ │ ├── [tN{~d,~t,g,m}+phEC].md │ │ │ └── [tN{~d,~t,g,m}+phEC].proto │ ├── tF'{~d,f,u,r,e} │ │ └── latest │ │ │ ├── tF'{~d,f,u,r,e}.json │ │ │ ├── tF'{~d,f,u,r,e}.md │ │ │ └── tF'{~d,f,u,r,e}.proto │ ├── tF'{~d,t,i} │ │ └── latest │ │ │ ├── tF'{~d,t,i}.json │ │ │ ├── tF'{~d,t,i}.md │ │ │ └── tF'{~d,t,i}.proto │ ├── tF{d,t,b} │ │ └── latest │ │ │ ├── tF{d,t,b}.json │ │ │ ├── tF{d,t,b}.md │ │ │ └── tF{d,t,b}.proto │ ├── tF{d,t,g,h,c,SC} │ │ └── latest │ │ │ ├── tF{d,t,g,h,c,SC}.json │ │ │ ├── tF{d,t,g,h,c,SC}.md │ │ │ └── tF{d,t,g,h,c,SC}.proto │ ├── tF{d,t,p,c,SC} │ │ └── latest │ │ │ ├── tF{d,t,p,c,SC}.json │ │ │ ├── tF{d,t,p,c,SC}.md │ │ │ └── tF{d,t,p,c,SC}.proto │ ├── tF{~d,m,a,r,b,t,q}+phDR+phGL │ │ └── latest │ │ │ ├── tF{~d,m,a,r,b,t,q}+phDR+phGL.json │ │ │ ├── tF{~d,m,a,r,b,t,q}+phDR+phGL.md │ │ │ └── tF{~d,m,a,r,b,t,q}+phDR+phGL.proto │ ├── tF{~d,t,c} │ │ └── latest │ │ │ ├── tF{~d,t,c}.json │ │ │ ├── tF{~d,t,c}.md │ │ │ └── tF{~d,t,c}.proto │ ├── tF{~d,t,g,SC} │ │ └── latest │ │ │ ├── tF{~d,t,g,SC}.json │ │ │ ├── tF{~d,t,g,SC}.md │ │ │ └── tF{~d,t,g,SC}.proto │ ├── tF{~d,~t,SC} │ │ └── latest │ │ │ ├── tF{~d,~t,SC}.json │ │ │ ├── tF{~d,~t,SC}.md │ │ │ └── tF{~d,~t,SC}.proto │ ├── tN{s,t} │ │ └── latest │ │ │ ├── tN{s,t}.json │ │ │ ├── tN{s,t}.md │ │ │ └── tN{s,t}.proto │ ├── tN{s,~t,a} │ │ └── latest │ │ │ ├── tN{s,~t,a}.json │ │ │ ├── tN{s,~t,a}.md │ │ │ └── tN{s,~t,a}.proto │ ├── tN{~d,t,b,g} │ │ └── latest │ │ │ ├── tN{~d,t,b,g}.json │ │ │ ├── tN{~d,t,b,g}.md │ │ │ └── tN{~d,t,b,g}.proto │ ├── tN{~d,t,g,SC} │ │ └── latest │ │ │ ├── tN{~d,t,g,SC}.json │ │ │ ├── tN{~d,t,g,SC}.md │ │ │ └── tN{~d,t,g,SC}.proto │ ├── tN{~d,~t,m,a,r}+phDR+phGL │ │ └── latest │ │ │ ├── tN{~d,~t,m,a,r}+phDR+phGL.json │ │ │ ├── tN{~d,~t,m,a,r}+phDR+phGL.md │ │ │ └── tN{~d,~t,m,a,r}+phDR+phGL.proto │ └── tN{~t,~d,b,s,r,l} │ │ └── latest │ │ ├── tN{~t,~d,b,s,r,l}.json │ │ ├── tN{~t,~d,b,s,r,l}.md │ │ └── tN{~t,~d,b,s,r,l}.proto │ └── specifications │ ├── Bill-of-Lading │ └── latest │ │ └── Bill-of-Lading-spec.docx │ ├── Bond │ └── latest │ │ ├── Bond-spec.docx │ │ └── Bond-spec.pdf │ ├── CET │ └── latest │ │ ├── CET-spec.docx │ │ └── CET-spec.pdf │ ├── Carbon-Reduction-or-Removal-Unit │ └── latest │ │ └── Carbon-Reduction-or-Removal-Unit-spec.docx │ ├── Carbon-Reference-Token │ └── latest │ │ └── Carbon-Reference-Token-spec.docx │ ├── Document │ └── latest │ │ ├── Document-spec.docx │ │ └── Document-spec.pdf │ ├── EThaler │ └── latest │ │ ├── EThaler-spec.docx │ │ └── EThaler-spec.pdf │ ├── Ecological-Claim │ └── latest │ │ └── Ecological-Claim-spec.docx │ ├── Ecological-Project │ └── latest │ │ └── Ecological-Project-spec.docx │ ├── Emoney │ └── latest │ │ └── Emoney-spec.pdf │ ├── FabToken │ └── latest │ │ └── FabToken-spec.pdf │ ├── Inventory │ └── latest │ │ ├── Inventory-spec.docx │ │ └── Inventory-spec.pdf │ ├── Issuance │ └── latest │ │ └── Issuance-spec.pdf │ ├── LearningToken1 │ └── latest │ │ ├── LearningToken1-spec.docx │ │ └── LearningToken1-spec.pdf │ ├── LearningToken2 │ └── latest │ │ ├── LearningToken2-spec.docx │ │ └── LearningToken2-spec.pdf │ ├── License-Diploma │ └── latest │ │ └── License-Diploma-spec.pdf │ ├── Loyalty │ └── latest │ │ └── Loyalty-spec.pdf │ ├── Natural-Gemstone │ └── latest │ │ └── Natural-Gemstone-spec.pdf │ ├── OriginalArt │ └── latest │ │ └── OriginalArt-spec.pdf │ ├── Processed-Claim │ └── latest │ │ └── Processed-Claim-spec.docx │ └── ReservedTicket │ └── latest │ └── ReservedTicket-spec.pdf ├── dmrv ├── extensions │ ├── readme.md │ ├── rec │ │ └── irec │ │ │ ├── documentation.md │ │ │ ├── irecAimClaimSourceExtension.json │ │ │ └── irecImpactClaimCheckpointExtension.json │ └── samples │ │ ├── irecAimClaimSourceExt.json │ │ └── irecImpactClaimCheckpointExt.json ├── protos │ ├── buildMrvModel.sh │ ├── common.proto │ ├── dmrv.proto │ └── sustainability.proto ├── readme.md └── spec │ ├── LICENSE │ ├── Vem-2.0-lt-hiera.png │ ├── diagrams.md │ ├── dmrv-diagram-20230905.png │ ├── index.html │ ├── openapi-schema.json │ ├── samples │ ├── AccountableImpactOrganization.json │ ├── ActivityImpactModule.json │ ├── CRU.json │ ├── FullLineage.json │ ├── ImpactClaim.json │ ├── ProcessedClaim.json │ ├── REC.json │ ├── RECFullLineage.json │ ├── SpanDataPackage.json │ └── VerificationProcessAgreement.json │ └── v3.0 │ ├── IWA-v3-model.png │ ├── dmrv-openapi.json │ ├── index.html │ └── samples │ ├── AccountableImpactOrganization.json │ ├── ActivityImpactModule.json │ ├── CRU.json │ ├── DataPackage.json │ ├── FullLineage.json │ ├── ImpactClaim.json │ ├── OriginationProcessAgreement.json │ ├── ProcessedClaim.json │ ├── REC.json │ └── RECFullLineage.json ├── images ├── ArtifactModel.png ├── ArtifactObjectModel.png ├── BaseModel.png ├── BaseObject.png ├── BaseObjectModel.png ├── BaseWithGrammarModel.png ├── BehaviorGroupModel.png ├── BehaviorGroupObjectModel.png ├── BehaviorModel.png ├── BehaviorObjectModel.png ├── CoreModel.png ├── PropertySetModel.png ├── PropertySetObjectModel.png ├── TTF-Designer-5.png ├── TTF-Designer-7.png ├── TaxonomyService.png ├── TokenTemplateModel.png ├── TokenTemplateObjectModel.png ├── TokenTemplates.png ├── artifact-hl.png ├── artifact-model.png ├── artifactTree.png ├── baseToken.png ├── baseTokenTypes.png ├── behavior-groups.png ├── branch-leaf.png ├── branchSelection.png ├── branches-nodes.png ├── bundle.png ├── codeMap.png ├── collections.png ├── common-behaviors.png ├── contracting.png ├── control.png ├── createClass.png ├── definition-structure.png ├── definitionToSpec.png ├── definitionToTemplate.png ├── design.png ├── fileHierarchy.png ├── formingATemplate.png ├── formula.png ├── formulaGrammar.png ├── get-ticket-resp.png ├── get-ticket.png ├── hierarchy-model.png ├── hierarchy.png ├── implementationMap.png ├── interactClass.png ├── maps.png ├── metadata.png ├── reference.png ├── sequenceDiagram.png ├── taxonomy-model.png ├── template.png ├── templateContext.png ├── templateDefinition.png ├── templateFormula.png ├── templateImpl.png ├── templates.png ├── tokenArtifact.png ├── tokenInterface.png ├── tokenSpec.png ├── tokenSpecification.png ├── tokenTemplate.png ├── tom.png ├── ttf-end-ext.png ├── txfer-request.png ├── txfer-response.png ├── typedArtifact.png ├── typedSpec.png ├── visualhierarchy.png ├── workinggroup.png └── workshopProcess.png ├── logicalIM.md ├── taxonomy-artifact-format.md ├── taxonomy-model.md ├── token-control-messages.md └── token-taxonomy.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/_config.yml -------------------------------------------------------------------------------- /artifacts/FormulaGrammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/FormulaGrammar.json -------------------------------------------------------------------------------- /artifacts/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/Readme.md -------------------------------------------------------------------------------- /artifacts/Taxonomy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/Taxonomy.json -------------------------------------------------------------------------------- /artifacts/base/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/base.json -------------------------------------------------------------------------------- /artifacts/base/fractional-fungible/latest/fractional-fungible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/fractional-fungible/latest/fractional-fungible.json -------------------------------------------------------------------------------- /artifacts/base/fractional-fungible/latest/fractional-fungible.md: -------------------------------------------------------------------------------- 1 | # fractional-fungible a TTF Base -------------------------------------------------------------------------------- /artifacts/base/fractional-fungible/latest/fractional-fungible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/fractional-fungible/latest/fractional-fungible.proto -------------------------------------------------------------------------------- /artifacts/base/fractional-non-fungible/latest/fractional-non-fungible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/fractional-non-fungible/latest/fractional-non-fungible.json -------------------------------------------------------------------------------- /artifacts/base/fractional-non-fungible/latest/fractional-non-fungible.md: -------------------------------------------------------------------------------- 1 | # fractional non-fungible a TTF Base -------------------------------------------------------------------------------- /artifacts/base/fractional-non-fungible/latest/fractional-non-fungible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/fractional-non-fungible/latest/fractional-non-fungible.proto -------------------------------------------------------------------------------- /artifacts/base/singleton/latest/singleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/singleton/latest/singleton.json -------------------------------------------------------------------------------- /artifacts/base/singleton/latest/singleton.md: -------------------------------------------------------------------------------- 1 | # singleton a TTF Base -------------------------------------------------------------------------------- /artifacts/base/singleton/latest/singleton.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/singleton/latest/singleton.proto -------------------------------------------------------------------------------- /artifacts/base/tokens.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/tokens.proto -------------------------------------------------------------------------------- /artifacts/base/unique-fractional-fungible/latest/unique-fractional-fungible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/unique-fractional-fungible/latest/unique-fractional-fungible.json -------------------------------------------------------------------------------- /artifacts/base/unique-fractional-fungible/latest/unique-fractional-fungible.md: -------------------------------------------------------------------------------- 1 | # fractional-fungible a TTF Base -------------------------------------------------------------------------------- /artifacts/base/unique-fractional-fungible/latest/unique-fractional-fungible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/unique-fractional-fungible/latest/unique-fractional-fungible.proto -------------------------------------------------------------------------------- /artifacts/base/unique-whole-fungible/latest/unique-whole-fungible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/unique-whole-fungible/latest/unique-whole-fungible.json -------------------------------------------------------------------------------- /artifacts/base/unique-whole-fungible/latest/unique-whole-fungible.md: -------------------------------------------------------------------------------- 1 | # whole-fungible a TTF Base -------------------------------------------------------------------------------- /artifacts/base/unique-whole-fungible/latest/unique-whole-fungible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/unique-whole-fungible/latest/unique-whole-fungible.proto -------------------------------------------------------------------------------- /artifacts/base/whole-fungible/latest/whole-fungible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/whole-fungible/latest/whole-fungible.json -------------------------------------------------------------------------------- /artifacts/base/whole-fungible/latest/whole-fungible.md: -------------------------------------------------------------------------------- 1 | # whole-fungible a TTF Base -------------------------------------------------------------------------------- /artifacts/base/whole-fungible/latest/whole-fungible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/whole-fungible/latest/whole-fungible.proto -------------------------------------------------------------------------------- /artifacts/base/whole-non-fungible/latest/whole-non-fungible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/whole-non-fungible/latest/whole-non-fungible.json -------------------------------------------------------------------------------- /artifacts/base/whole-non-fungible/latest/whole-non-fungible.md: -------------------------------------------------------------------------------- 1 | # whole-non-fungible a TTF Base -------------------------------------------------------------------------------- /artifacts/base/whole-non-fungible/latest/whole-non-fungible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/base/whole-non-fungible/latest/whole-non-fungible.proto -------------------------------------------------------------------------------- /artifacts/behavior-groups/credible-claim-control/latest/credible-claim-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behavior-groups/credible-claim-control/latest/credible-claim-control.json -------------------------------------------------------------------------------- /artifacts/behavior-groups/credible-claim-control/latest/credible-claim-control.md: -------------------------------------------------------------------------------- 1 | # Credible Claim Control behavior group 2 | -------------------------------------------------------------------------------- /artifacts/behavior-groups/credible-claim-control/latest/credible-claim-control.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behavior-groups/credible-claim-control/latest/credible-claim-control.proto -------------------------------------------------------------------------------- /artifacts/behavior-groups/offsetable-supply-control/latest/offsetable-supply-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behavior-groups/offsetable-supply-control/latest/offsetable-supply-control.json -------------------------------------------------------------------------------- /artifacts/behavior-groups/offsetable-supply-control/latest/offsetable-supply-control.md: -------------------------------------------------------------------------------- 1 | # offsetable-supply-control a TTF BehaviorGroup 2 | -------------------------------------------------------------------------------- /artifacts/behavior-groups/offsetable-supply-control/latest/offsetable-supply-control.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behavior-groups/offsetable-supply-control/latest/offsetable-supply-control.proto -------------------------------------------------------------------------------- /artifacts/behavior-groups/processed-claim-control/latest/processed-claim-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behavior-groups/processed-claim-control/latest/processed-claim-control.json -------------------------------------------------------------------------------- /artifacts/behavior-groups/processed-claim-control/latest/processed-claim-control.md: -------------------------------------------------------------------------------- 1 | # processed-claim-control a TTF BehaviorGroup 2 | -------------------------------------------------------------------------------- /artifacts/behavior-groups/processed-claim-control/latest/processed-claim-control.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behavior-groups/processed-claim-control/latest/processed-claim-control.proto -------------------------------------------------------------------------------- /artifacts/behavior-groups/supply-control/latest/supply-control.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behavior-groups/supply-control/latest/supply-control.json -------------------------------------------------------------------------------- /artifacts/behavior-groups/supply-control/latest/supply-control.md: -------------------------------------------------------------------------------- 1 | # supply-control a TTF BehaviorGroup -------------------------------------------------------------------------------- /artifacts/behavior-groups/supply-control/latest/supply-control.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behavior-groups/supply-control/latest/supply-control.proto -------------------------------------------------------------------------------- /artifacts/behaviors/attestable/latest/attestable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/attestable/latest/attestable.json -------------------------------------------------------------------------------- /artifacts/behaviors/attestable/latest/attestable.md: -------------------------------------------------------------------------------- 1 | # attestable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/attestable/latest/attestable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/attestable/latest/attestable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/burnable/latest/burnable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/burnable/latest/burnable.json -------------------------------------------------------------------------------- /artifacts/behaviors/burnable/latest/burnable.md: -------------------------------------------------------------------------------- 1 | # burnable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/burnable/latest/burnable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/burnable/latest/burnable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/compliant/latest/compliant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/compliant/latest/compliant.json -------------------------------------------------------------------------------- /artifacts/behaviors/compliant/latest/compliant.md: -------------------------------------------------------------------------------- 1 | # compliant a TTF Behavior 2 | -------------------------------------------------------------------------------- /artifacts/behaviors/compliant/latest/compliant.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/compliant/latest/compliant.proto -------------------------------------------------------------------------------- /artifacts/behaviors/credible/latest/credible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/credible/latest/credible.json -------------------------------------------------------------------------------- /artifacts/behaviors/credible/latest/credible.md: -------------------------------------------------------------------------------- 1 | # credible behavior 2 | -------------------------------------------------------------------------------- /artifacts/behaviors/credible/latest/credible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/credible/latest/credible.proto -------------------------------------------------------------------------------- /artifacts/behaviors/delegable/latest/delegable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/delegable/latest/delegable.json -------------------------------------------------------------------------------- /artifacts/behaviors/delegable/latest/delegable.md: -------------------------------------------------------------------------------- 1 | # delegable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/delegable/latest/delegable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/delegable/latest/delegable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/divisible/latest/divisible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/divisible/latest/divisible.json -------------------------------------------------------------------------------- /artifacts/behaviors/divisible/latest/divisible.md: -------------------------------------------------------------------------------- 1 | # Divisible a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/divisible/latest/divisible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/divisible/latest/divisible.proto -------------------------------------------------------------------------------- /artifacts/behaviors/encumberable/latest/encumberable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/encumberable/latest/encumberable.json -------------------------------------------------------------------------------- /artifacts/behaviors/encumberable/latest/encumberable.md: -------------------------------------------------------------------------------- 1 | # encumberable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/encumberable/latest/encumberable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/encumberable/latest/encumberable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/fabricate/latest/fabricate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/fabricate/latest/fabricate.json -------------------------------------------------------------------------------- /artifacts/behaviors/fabricate/latest/fabricate.md: -------------------------------------------------------------------------------- 1 | # fabricate a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/fabricate/latest/fabricate.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/fabricate/latest/fabricate.proto -------------------------------------------------------------------------------- /artifacts/behaviors/holdable/latest/holdable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/holdable/latest/holdable.json -------------------------------------------------------------------------------- /artifacts/behaviors/holdable/latest/holdable.md: -------------------------------------------------------------------------------- 1 | # holdable a TTF Behavior 2 | -------------------------------------------------------------------------------- /artifacts/behaviors/holdable/latest/holdable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/holdable/latest/holdable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/indivisible/latest/indivisible.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/indivisible/latest/indivisible.json -------------------------------------------------------------------------------- /artifacts/behaviors/indivisible/latest/indivisible.md: -------------------------------------------------------------------------------- 1 | # Indivisible a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/indivisible/latest/indivisible.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/indivisible/latest/indivisible.proto -------------------------------------------------------------------------------- /artifacts/behaviors/issuable/latest/issuable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/issuable/latest/issuable.json -------------------------------------------------------------------------------- /artifacts/behaviors/issuable/latest/issuable.md: -------------------------------------------------------------------------------- 1 | # issuable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/issuable/latest/issuable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/issuable/latest/issuable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/logable/latest/logable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/logable/latest/logable.json -------------------------------------------------------------------------------- /artifacts/behaviors/logable/latest/logable.md: -------------------------------------------------------------------------------- 1 | # logable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/logable/latest/logable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/logable/latest/logable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/mintable/latest/mintable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/mintable/latest/mintable.json -------------------------------------------------------------------------------- /artifacts/behaviors/mintable/latest/mintable.md: -------------------------------------------------------------------------------- 1 | # mintable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/mintable/latest/mintable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/mintable/latest/mintable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/non-transferable/latest/non-transferable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/non-transferable/latest/non-transferable.json -------------------------------------------------------------------------------- /artifacts/behaviors/non-transferable/latest/non-transferable.md: -------------------------------------------------------------------------------- 1 | # non-transferable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/non-transferable/latest/non-transferable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/non-transferable/latest/non-transferable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/offsetable/latest/offsetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/offsetable/latest/offsetable.json -------------------------------------------------------------------------------- /artifacts/behaviors/offsetable/latest/offsetable.md: -------------------------------------------------------------------------------- 1 | # offsetable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/offsetable/latest/offsetable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/offsetable/latest/offsetable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/overdraftable/latest/overdraftable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/overdraftable/latest/overdraftable.json -------------------------------------------------------------------------------- /artifacts/behaviors/overdraftable/latest/overdraftable.md: -------------------------------------------------------------------------------- 1 | # overdraftable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/overdraftable/latest/overdraftable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/overdraftable/latest/overdraftable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/pausable/latest/pausable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/pausable/latest/pausable.json -------------------------------------------------------------------------------- /artifacts/behaviors/pausable/latest/pausable.md: -------------------------------------------------------------------------------- 1 | # pausable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/pausable/latest/pausable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/pausable/latest/pausable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/processable/latest/processable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/processable/latest/processable.json -------------------------------------------------------------------------------- /artifacts/behaviors/processable/latest/processable.md: -------------------------------------------------------------------------------- 1 | # credible a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/processable/latest/processable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/processable/latest/processable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/redeemable/latest/redeemable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/redeemable/latest/redeemable.json -------------------------------------------------------------------------------- /artifacts/behaviors/redeemable/latest/redeemable.md: -------------------------------------------------------------------------------- 1 | # redeemable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/redeemable/latest/redeemable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/redeemable/latest/redeemable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/referenceable/latest/referenceable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/referenceable/latest/referenceable.json -------------------------------------------------------------------------------- /artifacts/behaviors/referenceable/latest/referenceable.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/behaviors/referenceable/latest/referenceable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/referenceable/latest/referenceable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/revocable/latest/revocable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/revocable/latest/revocable.json -------------------------------------------------------------------------------- /artifacts/behaviors/revocable/latest/revocable.md: -------------------------------------------------------------------------------- 1 | # revocable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/revocable/latest/revocable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/revocable/latest/revocable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/roles/latest/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/roles/latest/roles.json -------------------------------------------------------------------------------- /artifacts/behaviors/roles/latest/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/roles/latest/roles.md -------------------------------------------------------------------------------- /artifacts/behaviors/roles/latest/roles.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/roles/latest/roles.proto -------------------------------------------------------------------------------- /artifacts/behaviors/singleton/latest/singleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/singleton/latest/singleton.json -------------------------------------------------------------------------------- /artifacts/behaviors/singleton/latest/singleton.md: -------------------------------------------------------------------------------- 1 | # singleton a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/singleton/latest/singleton.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/singleton/latest/singleton.proto -------------------------------------------------------------------------------- /artifacts/behaviors/transferable/latest/transferable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/transferable/latest/transferable.json -------------------------------------------------------------------------------- /artifacts/behaviors/transferable/latest/transferable.md: -------------------------------------------------------------------------------- 1 | # transferable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/transferable/latest/transferable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/transferable/latest/transferable.pdf -------------------------------------------------------------------------------- /artifacts/behaviors/transferable/latest/transferable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/transferable/latest/transferable.proto -------------------------------------------------------------------------------- /artifacts/behaviors/unique-transferable/latest/unique-transferable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/unique-transferable/latest/unique-transferable.json -------------------------------------------------------------------------------- /artifacts/behaviors/unique-transferable/latest/unique-transferable.md: -------------------------------------------------------------------------------- 1 | # unique-transferable a TTF Behavior -------------------------------------------------------------------------------- /artifacts/behaviors/unique-transferable/latest/unique-transferable.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/behaviors/unique-transferable/latest/unique-transferable.proto -------------------------------------------------------------------------------- /artifacts/property-sets/cea/latest/cea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/cea/latest/cea.json -------------------------------------------------------------------------------- /artifacts/property-sets/cea/latest/cea.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/property-sets/cea/latest/cea.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/cea/latest/cea.proto -------------------------------------------------------------------------------- /artifacts/property-sets/cesp/latest/cesp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/cesp/latest/cesp.json -------------------------------------------------------------------------------- /artifacts/property-sets/cesp/latest/cesp.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/property-sets/cesp/latest/cesp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/cesp/latest/cesp.proto -------------------------------------------------------------------------------- /artifacts/property-sets/co-benefit/latest/co-benefit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/co-benefit/latest/co-benefit.json -------------------------------------------------------------------------------- /artifacts/property-sets/co-benefit/latest/co-benefit.md: -------------------------------------------------------------------------------- 1 | # co-benefit a TTF PropertySet 2 | -------------------------------------------------------------------------------- /artifacts/property-sets/co-benefit/latest/co-benefit.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/co-benefit/latest/co-benefit.proto -------------------------------------------------------------------------------- /artifacts/property-sets/core-carbon-principles/latest/core-carbon-principles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/core-carbon-principles/latest/core-carbon-principles.json -------------------------------------------------------------------------------- /artifacts/property-sets/core-carbon-principles/latest/core-carbon-principles.md: -------------------------------------------------------------------------------- 1 | # core-carbon-principles a TTF PropertySet 2 | -------------------------------------------------------------------------------- /artifacts/property-sets/core-carbon-principles/latest/core-carbon-principles.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/core-carbon-principles/latest/core-carbon-principles.proto -------------------------------------------------------------------------------- /artifacts/property-sets/date-range/latest/date-range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/date-range/latest/date-range.json -------------------------------------------------------------------------------- /artifacts/property-sets/date-range/latest/date-range.md: -------------------------------------------------------------------------------- 1 | # date-range a TTF PropertySet -------------------------------------------------------------------------------- /artifacts/property-sets/date-range/latest/date-range.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/date-range/latest/date-range.proto -------------------------------------------------------------------------------- /artifacts/property-sets/durability/latest/durability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/durability/latest/durability.json -------------------------------------------------------------------------------- /artifacts/property-sets/durability/latest/durability.md: -------------------------------------------------------------------------------- 1 | # durability a TTF PropertySet 2 | -------------------------------------------------------------------------------- /artifacts/property-sets/durability/latest/durability.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/durability/latest/durability.proto -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-checkpoint/latest/ecological-checkpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ecological-checkpoint/latest/ecological-checkpoint.json -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-checkpoint/latest/ecological-checkpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ecological-checkpoint/latest/ecological-checkpoint.md -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-checkpoint/latest/ecological-checkpoint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ecological-checkpoint/latest/ecological-checkpoint.proto -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-claim-source/latest/ecological-claim-source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ecological-claim-source/latest/ecological-claim-source.json -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-claim-source/latest/ecological-claim-source.md: -------------------------------------------------------------------------------- 1 | # ecological-claim-source a TTF PropertySet 2 | -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-claim-source/latest/ecological-claim-source.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ecological-claim-source/latest/ecological-claim-source.proto -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-project-info/latest/ecological-project-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ecological-project-info/latest/ecological-project-info.json -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-project-info/latest/ecological-project-info.md: -------------------------------------------------------------------------------- 1 | # ecological-project-info a TTF PropertySet 2 | -------------------------------------------------------------------------------- /artifacts/property-sets/ecological-project-info/latest/ecological-project-info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ecological-project-info/latest/ecological-project-info.proto -------------------------------------------------------------------------------- /artifacts/property-sets/ego/latest/ego.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ego/latest/ego.json -------------------------------------------------------------------------------- /artifacts/property-sets/ego/latest/ego.md: -------------------------------------------------------------------------------- 1 | # ego a TTF PropertySet 2 | -------------------------------------------------------------------------------- /artifacts/property-sets/ego/latest/ego.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ego/latest/ego.proto -------------------------------------------------------------------------------- /artifacts/property-sets/emission-generator/latest/emission-generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/emission-generator/latest/emission-generator.json -------------------------------------------------------------------------------- /artifacts/property-sets/emission-generator/latest/emission-generator.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/property-sets/emission-generator/latest/emission-generator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/emission-generator/latest/emission-generator.proto -------------------------------------------------------------------------------- /artifacts/property-sets/file/latest/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/file/latest/file.json -------------------------------------------------------------------------------- /artifacts/property-sets/file/latest/file.md: -------------------------------------------------------------------------------- 1 | # sku a TTF PropertySet -------------------------------------------------------------------------------- /artifacts/property-sets/file/latest/file.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/file/latest/file.proto -------------------------------------------------------------------------------- /artifacts/property-sets/geolocation/latest/geolocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/geolocation/latest/geolocation.json -------------------------------------------------------------------------------- /artifacts/property-sets/geolocation/latest/geolocation.md: -------------------------------------------------------------------------------- 1 | # geoLocation a TTF PropertySet -------------------------------------------------------------------------------- /artifacts/property-sets/geolocation/latest/geolocation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/geolocation/latest/geolocation.proto -------------------------------------------------------------------------------- /artifacts/property-sets/ggbsc/latest/ggbsc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ggbsc/latest/ggbsc.json -------------------------------------------------------------------------------- /artifacts/property-sets/ggbsc/latest/ggbsc.md: -------------------------------------------------------------------------------- 1 | # ggbsc a TTF PropertySet -------------------------------------------------------------------------------- /artifacts/property-sets/ggbsc/latest/ggbsc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/ggbsc/latest/ggbsc.proto -------------------------------------------------------------------------------- /artifacts/property-sets/mitigation-activity/latest/mitigation-activity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/mitigation-activity/latest/mitigation-activity.json -------------------------------------------------------------------------------- /artifacts/property-sets/mitigation-activity/latest/mitigation-activity.md: -------------------------------------------------------------------------------- 1 | # mitigation activity a TTF PropertySet -------------------------------------------------------------------------------- /artifacts/property-sets/mitigation-activity/latest/mitigation-activity.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/mitigation-activity/latest/mitigation-activity.proto -------------------------------------------------------------------------------- /artifacts/property-sets/modular-benefit-project/latest/modularbenefitproject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/modular-benefit-project/latest/modularbenefitproject.json -------------------------------------------------------------------------------- /artifacts/property-sets/modular-benefit-project/latest/modularbenefitproject.md: -------------------------------------------------------------------------------- 1 | # modular benefit project a TTF PropertySet -------------------------------------------------------------------------------- /artifacts/property-sets/modular-benefit-project/latest/modularbenefitproject.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/modular-benefit-project/latest/modularbenefitproject.proto -------------------------------------------------------------------------------- /artifacts/property-sets/paris-agreement-compliance/latest/paris-agreement-compliance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/paris-agreement-compliance/latest/paris-agreement-compliance.json -------------------------------------------------------------------------------- /artifacts/property-sets/paris-agreement-compliance/latest/paris-agreement-compliance.md: -------------------------------------------------------------------------------- 1 | # paris-agreement-compliance a TTF PropertySet 2 | -------------------------------------------------------------------------------- /artifacts/property-sets/paris-agreement-compliance/latest/paris-agreement-compliance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/paris-agreement-compliance/latest/paris-agreement-compliance.proto -------------------------------------------------------------------------------- /artifacts/property-sets/replacement/latest/replacement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/replacement/latest/replacement.json -------------------------------------------------------------------------------- /artifacts/property-sets/replacement/latest/replacement.md: -------------------------------------------------------------------------------- 1 | # replacement a TTF PropertySet 2 | -------------------------------------------------------------------------------- /artifacts/property-sets/replacement/latest/replacement.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/replacement/latest/replacement.proto -------------------------------------------------------------------------------- /artifacts/property-sets/sku/latest/sku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/sku/latest/sku.json -------------------------------------------------------------------------------- /artifacts/property-sets/sku/latest/sku.md: -------------------------------------------------------------------------------- 1 | # sku a TTF PropertySet -------------------------------------------------------------------------------- /artifacts/property-sets/sku/latest/sku.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/sku/latest/sku.proto -------------------------------------------------------------------------------- /artifacts/property-sets/verified-link/latest/verified-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/verified-link/latest/verified-link.json -------------------------------------------------------------------------------- /artifacts/property-sets/verified-link/latest/verified-link.md: -------------------------------------------------------------------------------- 1 | # verified-link a TTF PropertySet -------------------------------------------------------------------------------- /artifacts/property-sets/verified-link/latest/verified-link.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/property-sets/verified-link/latest/verified-link.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Bill-of-Lading/latest/Bill-of-Lading.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Bill-of-Lading/latest/Bill-of-Lading.docx -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Bill-of-Lading/latest/Bill-of-Lading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Bill-of-Lading/latest/Bill-of-Lading.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Bill-of-Lading/latest/Bill-of-Lading.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Bill-of-Lading/latest/Bill-of-Lading.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Bond/latest/Bond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Bond/latest/Bond.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Bond/latest/Bond.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Bond/latest/Bond.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/CET-old/latest/CET-old-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/CET-old/latest/CET-old-version.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/CET-old/latest/CET-old-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/CET-old/latest/CET-old-version.md -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/CET-old/latest/CET-old-version.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/CET/latest/CET.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/CET/latest/CET.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/CET/latest/CET.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Carbon-ReductionRemoval-Unit/latest/Carbon-ReductionRemoval-Unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Carbon-ReductionRemoval-Unit/latest/Carbon-ReductionRemoval-Unit.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Carbon-ReductionRemoval-Unit/latest/Carbon-ReductionRemoval-Unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Carbon-ReductionRemoval-Unit/latest/Carbon-ReductionRemoval-Unit.md -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Carbon-ReductionRemoval-Unit/latest/Carbon-ReductionRemoval-Unit.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Carbon-ReductionRemoval-Unit/latest/Carbon-ReductionRemoval-Unit.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Carbon-ReductionRemoval-Unit/latest/build-tech-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Carbon-ReductionRemoval-Unit/latest/build-tech-specs.sh -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Carbon-Reference-Token/latest/Carbon-Reference-Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Carbon-Reference-Token/latest/Carbon-Reference-Token.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Carbon-Reference-Token/latest/Carbon-Reference-Token.md: -------------------------------------------------------------------------------- 1 | #Carbon-Reference-Token -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Carbon-Reference-Token/latest/Carbon-Reference-Token.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Carbon-Reference-Token/latest/Carbon-Reference-Token.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Carbon-Reference-Token/latest/build-tech-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Carbon-Reference-Token/latest/build-tech-specs.sh -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Document/latest/Document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Document/latest/Document.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Document/latest/Document.md: -------------------------------------------------------------------------------- 1 | # Document a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Document/latest/Document.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Document/latest/Document.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Document/latest/DocumentToken.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Document/latest/DocumentToken.pptx -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/EThaler/latest/EThaler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/EThaler/latest/EThaler.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/EThaler/latest/EThaler.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/EThaler/latest/EThaler.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Ecological-Claim/latest/Ecological-Claim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Ecological-Claim/latest/Ecological-Claim.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Ecological-Claim/latest/Ecological-Claim.md: -------------------------------------------------------------------------------- 1 | # ecological claim token -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Ecological-Claim/latest/Ecological-Claim.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Ecological-Claim/latest/Ecological-Claim.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Ecological-Claim/latest/build-tech-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Ecological-Claim/latest/build-tech-specs.sh -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Ecological-Project/latest/Ecological-Project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Ecological-Project/latest/Ecological-Project.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Ecological-Project/latest/Ecological-Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Ecological-Project/latest/Ecological-Project.md -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Ecological-Project/latest/Ecological-Project.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Ecological-Project/latest/Ecological-Project.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Ecological-Project/latest/build-tech-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Ecological-Project/latest/build-tech-specs.sh -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Emoney/latest/Emoney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Emoney/latest/Emoney.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Emoney/latest/Emoney.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Emoney/latest/Emoney.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/FabToken/latest/FabToken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/FabToken/latest/FabToken.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/FabToken/latest/FabToken.md: -------------------------------------------------------------------------------- 1 | # FabToken Spec 2 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/FabToken/latest/FabToken.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/FabToken/latest/FabToken.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Inventory/latest/Inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Inventory/latest/Inventory.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Inventory/latest/Inventory.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Inventory/latest/Inventory.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Issuance/latest/Issuance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Issuance/latest/Issuance.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Issuance/latest/Issuance.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Issuance/latest/Issuance.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/LearningToken1/latest/LearningToken1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/LearningToken1/latest/LearningToken1.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/LearningToken1/latest/LearningToken1.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/LearningToken1/latest/LearningToken1.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/LearningToken2/latest/LearningToken2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/LearningToken2/latest/LearningToken2.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/LearningToken2/latest/LearningToken2.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/LearningToken2/latest/LearningToken2.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/License-Diploma/latest/License-Diploma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/License-Diploma/latest/License-Diploma.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/License-Diploma/latest/License-Diploma.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/License-Diploma/latest/License-Diploma.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Log/latest/Log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Log/latest/Log.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Log/latest/Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Log/latest/Log.md -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Log/latest/Log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Log/latest/Log.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Log/latest/LogToken.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Log/latest/LogToken.pptx -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Loyalty/latest/Loyalty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Loyalty/latest/Loyalty.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Loyalty/latest/Loyalty.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Loyalty/latest/Loyalty.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Natural-GemStone/latest/Natural-Gemstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Natural-GemStone/latest/Natural-Gemstone.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Natural-GemStone/latest/Natural-Gemstone.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Natural-GemStone/latest/Natural-Gemstone.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/OriginalArt/latest/OriginalArt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/OriginalArt/latest/OriginalArt.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/OriginalArt/latest/OriginalArt.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/OriginalArt/latest/OriginalArt.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Processed-Claim/latest/Processed-Claim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Processed-Claim/latest/Processed-Claim.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Processed-Claim/latest/Processed-Claim.md: -------------------------------------------------------------------------------- 1 | # Processed Claim token template 2 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Processed-Claim/latest/Processed-Claim.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Processed-Claim/latest/Processed-Claim.proto -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/Processed-Claim/latest/build-tech-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/Processed-Claim/latest/build-tech-specs.sh -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/ReservedTicket/latest/ReservedTicket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/ReservedTicket/latest/ReservedTicket.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/ReservedTicket/latest/ReservedTicket.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/ReservedTicket/latest/ReservedTicket.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/UEFA-Euro-2020-VIP/latest/UEFA-Euro-2020-VIP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/UEFA-Euro-2020-VIP/latest/UEFA-Euro-2020-VIP.json -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/common/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/common/readme.md -------------------------------------------------------------------------------- /artifacts/token-templates/definitions/common/sustainability/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/definitions/common/sustainability/common.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF{~d,t,g,SC}+phSKU]/latest/[tF{~d,t,g,SC}+phSKU].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tF{~d,t,g,SC}+phSKU]/latest/[tF{~d,t,g,SC}+phSKU].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF{~d,t,g,SC}+phSKU]/latest/[tF{~d,t,g,SC}+phSKU].md: -------------------------------------------------------------------------------- 1 | # Inventory a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF{~d,t,g,SC}+phSKU]/latest/[tF{~d,t,g,SC}+phSKU].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tF{~d,t,g,SC}+phSKU]/latest/[tF{~d,t,g,SC}+phSKU].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA]/latest/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA]/latest/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA]/latest/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA]/latest/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA]/latest/[tF’{d,g,ref,~t,v,OSC}+phEG+phCESP+phCEA].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,t,e,v,g,OSC}+phCCP]/latest/[tF’{d,t,e,v,g,OSC}+phCCP].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tF’{d,t,e,v,g,OSC}+phCCP]/latest/[tF’{d,t,e,v,g,OSC}+phCCP].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,t,e,v,g,OSC}+phCCP]/latest/[tF’{d,t,e,v,g,OSC}+phCCP].md: -------------------------------------------------------------------------------- 1 | # [tF’{d,t,e,v,g,OSC}+phCCP] a TTF TokenTemplate 2 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,t,e,v,g,OSC}+phCCP]/latest/[tF’{d,t,e,v,g,OSC}+phCCP].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tF’{d,t,e,v,g,OSC}+phCCP]/latest/[tF’{d,t,e,v,g,OSC}+phCCP].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,t,m,r}+phEGO+phGGPSC]/latest/[tF’{d,t,m,r}+phEGO+phGGPSC].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tF’{d,t,m,r}+phEGO+phGGPSC]/latest/[tF’{d,t,m,r}+phEGO+phGGPSC].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,t,m,r}+phEGO+phGGPSC]/latest/[tF’{d,t,m,r}+phEGO+phGGPSC].md: -------------------------------------------------------------------------------- 1 | # FractionalFungible a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tF’{d,t,m,r}+phEGO+phGGPSC]/latest/[tF’{d,t,m,r}+phEGO+phGGPSC].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tF’{d,t,m,r}+phEGO+phGGPSC]/latest/[tF’{d,t,m,r}+phEGO+phGGPSC].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{d,t,b}+phEPI+phMBPr]/latest/[tN{d,t,b}+phEPI+phMBPr].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{d,t,b}+phEPI+phMBPr]/latest/[tN{d,t,b}+phEPI+phMBPr].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{d,t,b}+phEPI+phMBPr]/latest/[tN{d,t,b}+phEPI+phMBPr].md: -------------------------------------------------------------------------------- 1 | # Singleton a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{d,t,b}+phEPI+phMBPr]/latest/[tN{d,t,b}+phEPI+phMBPr].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{d,t,b}+phEPI+phMBPr]/latest/[tN{d,t,b}+phEPI+phMBPr].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{d,t,e,v,g,OSC}+phCCP]/latest/[tN{d,t,e,v,g,OSC}+phCCP].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{d,t,e,v,g,OSC}+phCCP]/latest/[tN{d,t,e,v,g,OSC}+phCCP].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{d,t,e,v,g,OSC}+phCCP]/latest/[tN{d,t,e,v,g,OSC}+phCCP].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{d,t,e,v,g,OSC}+phCCP]/latest/[tN{d,t,e,v,g,OSC}+phCCP].md -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{d,t,e,v,g,OSC}+phCCP]/latest/[tN{d,t,e,v,g,OSC}+phCCP].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{d,t,e,v,g,OSC}+phCCP]/latest/[tN{d,t,e,v,g,OSC}+phCCP].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,t,c,SC}+phFile]/latest/[tN{~d,t,c,SC}+phFile].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,t,c,SC}+phFile]/latest/[tN{~d,t,c,SC}+phFile].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,t,c,SC}+phFile]/latest/[tN{~d,t,c,SC}+phFile].md: -------------------------------------------------------------------------------- 1 | # WholeNonFungible a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,t,c,SC}+phFile]/latest/[tN{~d,t,c,SC}+phFile].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,t,c,SC}+phFile]/latest/[tN{~d,t,c,SC}+phFile].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,t,s,e,b}+phFile]/latest/[tN{~d,t,s,e,b}+phFile].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,t,s,e,b}+phFile]/latest/[tN{~d,t,s,e,b}+phFile].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,t,s,e,b}+phFile]/latest/[tN{~d,t,s,e,b}+phFile].md: -------------------------------------------------------------------------------- 1 | # Document a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,t,s,e,b}+phFile]/latest/[tN{~d,t,s,e,b}+phFile].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,t,s,e,b}+phFile]/latest/[tN{~d,t,s,e,b}+phFile].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,e,CCC}+phEC]/latest/[tN{~d,~t,g,CCC}+phEC].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,~t,g,e,CCC}+phEC]/latest/[tN{~d,~t,g,CCC}+phEC].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,e,CCC}+phEC]/latest/[tN{~d,~t,g,CCC}+phEC].md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,e,CCC}+phEC]/latest/[tN{~d,~t,g,CCC}+phEC].proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC]/latest/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC]/latest/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC]/latest/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC].md: -------------------------------------------------------------------------------- 1 | # WholeNonFungible a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC]/latest/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC]/latest/[tN{~d,~t,g,e,PCC}+phCB+phECS+phEC].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,m}+phEC]/latest/[tN{~d,~t,g,m}+phEC].json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,~t,g,m}+phEC]/latest/[tN{~d,~t,g,m}+phEC].json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,m}+phEC]/latest/[tN{~d,~t,g,m}+phEC].md: -------------------------------------------------------------------------------- 1 | # WholeNonFungible a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/[tN{~d,~t,g,m}+phEC]/latest/[tN{~d,~t,g,m}+phEC].proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/[tN{~d,~t,g,m}+phEC]/latest/[tN{~d,~t,g,m}+phEC].proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF'{~d,f,u,r,e}/latest/tF'{~d,f,u,r,e}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF'{~d,f,u,r,e}/latest/tF'{~d,f,u,r,e}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF'{~d,f,u,r,e}/latest/tF'{~d,f,u,r,e}.md: -------------------------------------------------------------------------------- 1 | # Loyalty a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF'{~d,f,u,r,e}/latest/tF'{~d,f,u,r,e}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF'{~d,f,u,r,e}/latest/tF'{~d,f,u,r,e}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF'{~d,t,i}/latest/tF'{~d,t,i}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF'{~d,t,i}/latest/tF'{~d,t,i}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF'{~d,t,i}/latest/tF'{~d,t,i}.md: -------------------------------------------------------------------------------- 1 | # tF'{~d,t,i} a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF'{~d,t,i}/latest/tF'{~d,t,i}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF'{~d,t,i}/latest/tF'{~d,t,i}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,b}/latest/tF{d,t,b}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{d,t,b}/latest/tF{d,t,b}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,b}/latest/tF{d,t,b}.md: -------------------------------------------------------------------------------- 1 | # FractionalFungible a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,b}/latest/tF{d,t,b}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{d,t,b}/latest/tF{d,t,b}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,g,h,c,SC}/latest/tF{d,t,g,h,c,SC}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{d,t,g,h,c,SC}/latest/tF{d,t,g,h,c,SC}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,g,h,c,SC}/latest/tF{d,t,g,h,c,SC}.md: -------------------------------------------------------------------------------- 1 | # Emoney a TTF TokenTemplate 2 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,g,h,c,SC}/latest/tF{d,t,g,h,c,SC}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{d,t,g,h,c,SC}/latest/tF{d,t,g,h,c,SC}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,p,c,SC}/latest/tF{d,t,p,c,SC}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{d,t,p,c,SC}/latest/tF{d,t,p,c,SC}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,p,c,SC}/latest/tF{d,t,p,c,SC}.md: -------------------------------------------------------------------------------- 1 | # eThaler a TTF TokenTemplate 2 | # models wholesale CBDC 3 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{d,t,p,c,SC}/latest/tF{d,t,p,c,SC}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{d,t,p,c,SC}/latest/tF{d,t,p,c,SC}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,m,a,r,b,t,q}+phDR+phGL/latest/tF{~d,m,a,r,b,t,q}+phDR+phGL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{~d,m,a,r,b,t,q}+phDR+phGL/latest/tF{~d,m,a,r,b,t,q}+phDR+phGL.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,m,a,r,b,t,q}+phDR+phGL/latest/tF{~d,m,a,r,b,t,q}+phDR+phGL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,m,a,r,b,t,q}+phDR+phGL/latest/tF{~d,m,a,r,b,t,q}+phDR+phGL.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,t,c}/latest/tF{~d,t,c}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{~d,t,c}/latest/tF{~d,t,c}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,t,c}/latest/tF{~d,t,c}.md: -------------------------------------------------------------------------------- 1 | # Fixed Supply Whole Fungible a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,t,c}/latest/tF{~d,t,c}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{~d,t,c}/latest/tF{~d,t,c}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,t,g,SC}/latest/tF{~d,t,g,SC}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{~d,t,g,SC}/latest/tF{~d,t,g,SC}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,t,g,SC}/latest/tF{~d,t,g,SC}.md: -------------------------------------------------------------------------------- 1 | # Loyalty a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,t,g,SC}/latest/tF{~d,t,g,SC}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{~d,t,g,SC}/latest/tF{~d,t,g,SC}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,~t,SC}/latest/tF{~d,~t,SC}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{~d,~t,SC}/latest/tF{~d,~t,SC}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,~t,SC}/latest/tF{~d,~t,SC}.md: -------------------------------------------------------------------------------- 1 | # Non-Transferable Loyalty a TTF TokenTemplate 2 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tF{~d,~t,SC}/latest/tF{~d,~t,SC}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tF{~d,~t,SC}/latest/tF{~d,~t,SC}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{s,t}/latest/tN{s,t}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{s,t}/latest/tN{s,t}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{s,t}/latest/tN{s,t}.md: -------------------------------------------------------------------------------- 1 | # Singleton a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{s,t}/latest/tN{s,t}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{s,t}/latest/tN{s,t}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{s,~t,a}/latest/tN{s,~t,a}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{s,~t,a}/latest/tN{s,~t,a}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{s,~t,a}/latest/tN{s,~t,a}.md: -------------------------------------------------------------------------------- 1 | # Singleton a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{s,~t,a}/latest/tN{s,~t,a}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{s,~t,a}/latest/tN{s,~t,a}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,t,b,g}/latest/tN{~d,t,b,g}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{~d,t,b,g}/latest/tN{~d,t,b,g}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,t,b,g}/latest/tN{~d,t,b,g}.md: -------------------------------------------------------------------------------- 1 | # WholeNonFungible a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,t,b,g}/latest/tN{~d,t,b,g}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{~d,t,b,g}/latest/tN{~d,t,b,g}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,t,g,SC}/latest/tN{~d,t,g,SC}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{~d,t,g,SC}/latest/tN{~d,t,g,SC}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,t,g,SC}/latest/tN{~d,t,g,SC}.md: -------------------------------------------------------------------------------- 1 | # WholeNonFungible a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,t,g,SC}/latest/tN{~d,t,g,SC}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{~d,t,g,SC}/latest/tN{~d,t,g,SC}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,~t,m,a,r}+phDR+phGL/latest/tN{~d,~t,m,a,r}+phDR+phGL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{~d,~t,m,a,r}+phDR+phGL/latest/tN{~d,~t,m,a,r}+phDR+phGL.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,~t,m,a,r}+phDR+phGL/latest/tN{~d,~t,m,a,r}+phDR+phGL.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~d,~t,m,a,r}+phDR+phGL/latest/tN{~d,~t,m,a,r}+phDR+phGL.proto: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~t,~d,b,s,r,l}/latest/tN{~t,~d,b,s,r,l}.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{~t,~d,b,s,r,l}/latest/tN{~t,~d,b,s,r,l}.json -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~t,~d,b,s,r,l}/latest/tN{~t,~d,b,s,r,l}.md: -------------------------------------------------------------------------------- 1 | # Log a TTF TokenTemplate -------------------------------------------------------------------------------- /artifacts/token-templates/formulas/tN{~t,~d,b,s,r,l}/latest/tN{~t,~d,b,s,r,l}.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/formulas/tN{~t,~d,b,s,r,l}/latest/tN{~t,~d,b,s,r,l}.proto -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Bill-of-Lading/latest/Bill-of-Lading-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Bill-of-Lading/latest/Bill-of-Lading-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Bond/latest/Bond-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Bond/latest/Bond-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Bond/latest/Bond-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Bond/latest/Bond-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/CET/latest/CET-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/CET/latest/CET-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/CET/latest/CET-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/CET/latest/CET-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Carbon-Reduction-or-Removal-Unit/latest/Carbon-Reduction-or-Removal-Unit-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Carbon-Reduction-or-Removal-Unit/latest/Carbon-Reduction-or-Removal-Unit-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Carbon-Reference-Token/latest/Carbon-Reference-Token-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Carbon-Reference-Token/latest/Carbon-Reference-Token-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Document/latest/Document-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Document/latest/Document-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Document/latest/Document-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Document/latest/Document-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/EThaler/latest/EThaler-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/EThaler/latest/EThaler-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/EThaler/latest/EThaler-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/EThaler/latest/EThaler-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Ecological-Claim/latest/Ecological-Claim-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Ecological-Claim/latest/Ecological-Claim-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Ecological-Project/latest/Ecological-Project-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Ecological-Project/latest/Ecological-Project-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Emoney/latest/Emoney-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Emoney/latest/Emoney-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/FabToken/latest/FabToken-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/FabToken/latest/FabToken-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Inventory/latest/Inventory-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Inventory/latest/Inventory-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Inventory/latest/Inventory-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Inventory/latest/Inventory-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Issuance/latest/Issuance-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Issuance/latest/Issuance-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/LearningToken1/latest/LearningToken1-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/LearningToken1/latest/LearningToken1-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/LearningToken1/latest/LearningToken1-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/LearningToken1/latest/LearningToken1-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/LearningToken2/latest/LearningToken2-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/LearningToken2/latest/LearningToken2-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/LearningToken2/latest/LearningToken2-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/LearningToken2/latest/LearningToken2-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/License-Diploma/latest/License-Diploma-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/License-Diploma/latest/License-Diploma-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Loyalty/latest/Loyalty-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Loyalty/latest/Loyalty-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Natural-Gemstone/latest/Natural-Gemstone-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Natural-Gemstone/latest/Natural-Gemstone-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/OriginalArt/latest/OriginalArt-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/OriginalArt/latest/OriginalArt-spec.pdf -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/Processed-Claim/latest/Processed-Claim-spec.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/Processed-Claim/latest/Processed-Claim-spec.docx -------------------------------------------------------------------------------- /artifacts/token-templates/specifications/ReservedTicket/latest/ReservedTicket-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/artifacts/token-templates/specifications/ReservedTicket/latest/ReservedTicket-spec.pdf -------------------------------------------------------------------------------- /dmrv/extensions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/extensions/readme.md -------------------------------------------------------------------------------- /dmrv/extensions/rec/irec/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/extensions/rec/irec/documentation.md -------------------------------------------------------------------------------- /dmrv/extensions/rec/irec/irecAimClaimSourceExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/extensions/rec/irec/irecAimClaimSourceExtension.json -------------------------------------------------------------------------------- /dmrv/extensions/rec/irec/irecImpactClaimCheckpointExtension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/extensions/rec/irec/irecImpactClaimCheckpointExtension.json -------------------------------------------------------------------------------- /dmrv/extensions/samples/irecAimClaimSourceExt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dmrv/extensions/samples/irecImpactClaimCheckpointExt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /dmrv/protos/buildMrvModel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/protos/buildMrvModel.sh -------------------------------------------------------------------------------- /dmrv/protos/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/protos/common.proto -------------------------------------------------------------------------------- /dmrv/protos/dmrv.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/protos/dmrv.proto -------------------------------------------------------------------------------- /dmrv/protos/sustainability.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/protos/sustainability.proto -------------------------------------------------------------------------------- /dmrv/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/readme.md -------------------------------------------------------------------------------- /dmrv/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/LICENSE -------------------------------------------------------------------------------- /dmrv/spec/Vem-2.0-lt-hiera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/Vem-2.0-lt-hiera.png -------------------------------------------------------------------------------- /dmrv/spec/diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/diagrams.md -------------------------------------------------------------------------------- /dmrv/spec/dmrv-diagram-20230905.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/dmrv-diagram-20230905.png -------------------------------------------------------------------------------- /dmrv/spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/index.html -------------------------------------------------------------------------------- /dmrv/spec/openapi-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/openapi-schema.json -------------------------------------------------------------------------------- /dmrv/spec/samples/AccountableImpactOrganization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/AccountableImpactOrganization.json -------------------------------------------------------------------------------- /dmrv/spec/samples/ActivityImpactModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/ActivityImpactModule.json -------------------------------------------------------------------------------- /dmrv/spec/samples/CRU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/CRU.json -------------------------------------------------------------------------------- /dmrv/spec/samples/FullLineage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/FullLineage.json -------------------------------------------------------------------------------- /dmrv/spec/samples/ImpactClaim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/ImpactClaim.json -------------------------------------------------------------------------------- /dmrv/spec/samples/ProcessedClaim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/ProcessedClaim.json -------------------------------------------------------------------------------- /dmrv/spec/samples/REC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/REC.json -------------------------------------------------------------------------------- /dmrv/spec/samples/RECFullLineage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/RECFullLineage.json -------------------------------------------------------------------------------- /dmrv/spec/samples/SpanDataPackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/SpanDataPackage.json -------------------------------------------------------------------------------- /dmrv/spec/samples/VerificationProcessAgreement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/samples/VerificationProcessAgreement.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/IWA-v3-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/IWA-v3-model.png -------------------------------------------------------------------------------- /dmrv/spec/v3.0/dmrv-openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/dmrv-openapi.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/index.html -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/AccountableImpactOrganization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/AccountableImpactOrganization.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/ActivityImpactModule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/ActivityImpactModule.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/CRU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/CRU.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/DataPackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/DataPackage.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/FullLineage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/FullLineage.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/ImpactClaim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/ImpactClaim.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/OriginationProcessAgreement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/OriginationProcessAgreement.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/ProcessedClaim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/ProcessedClaim.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/REC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/REC.json -------------------------------------------------------------------------------- /dmrv/spec/v3.0/samples/RECFullLineage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/dmrv/spec/v3.0/samples/RECFullLineage.json -------------------------------------------------------------------------------- /images/ArtifactModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/ArtifactModel.png -------------------------------------------------------------------------------- /images/ArtifactObjectModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/ArtifactObjectModel.png -------------------------------------------------------------------------------- /images/BaseModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/BaseModel.png -------------------------------------------------------------------------------- /images/BaseObject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/BaseObject.png -------------------------------------------------------------------------------- /images/BaseObjectModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/BaseObjectModel.png -------------------------------------------------------------------------------- /images/BaseWithGrammarModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/BaseWithGrammarModel.png -------------------------------------------------------------------------------- /images/BehaviorGroupModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/BehaviorGroupModel.png -------------------------------------------------------------------------------- /images/BehaviorGroupObjectModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/BehaviorGroupObjectModel.png -------------------------------------------------------------------------------- /images/BehaviorModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/BehaviorModel.png -------------------------------------------------------------------------------- /images/BehaviorObjectModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/BehaviorObjectModel.png -------------------------------------------------------------------------------- /images/CoreModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/CoreModel.png -------------------------------------------------------------------------------- /images/PropertySetModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/PropertySetModel.png -------------------------------------------------------------------------------- /images/PropertySetObjectModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/PropertySetObjectModel.png -------------------------------------------------------------------------------- /images/TTF-Designer-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/TTF-Designer-5.png -------------------------------------------------------------------------------- /images/TTF-Designer-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/TTF-Designer-7.png -------------------------------------------------------------------------------- /images/TaxonomyService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/TaxonomyService.png -------------------------------------------------------------------------------- /images/TokenTemplateModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/TokenTemplateModel.png -------------------------------------------------------------------------------- /images/TokenTemplateObjectModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/TokenTemplateObjectModel.png -------------------------------------------------------------------------------- /images/TokenTemplates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/TokenTemplates.png -------------------------------------------------------------------------------- /images/artifact-hl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/artifact-hl.png -------------------------------------------------------------------------------- /images/artifact-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/artifact-model.png -------------------------------------------------------------------------------- /images/artifactTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/artifactTree.png -------------------------------------------------------------------------------- /images/baseToken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/baseToken.png -------------------------------------------------------------------------------- /images/baseTokenTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/baseTokenTypes.png -------------------------------------------------------------------------------- /images/behavior-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/behavior-groups.png -------------------------------------------------------------------------------- /images/branch-leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/branch-leaf.png -------------------------------------------------------------------------------- /images/branchSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/branchSelection.png -------------------------------------------------------------------------------- /images/branches-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/branches-nodes.png -------------------------------------------------------------------------------- /images/bundle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/bundle.png -------------------------------------------------------------------------------- /images/codeMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/codeMap.png -------------------------------------------------------------------------------- /images/collections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/collections.png -------------------------------------------------------------------------------- /images/common-behaviors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/common-behaviors.png -------------------------------------------------------------------------------- /images/contracting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/contracting.png -------------------------------------------------------------------------------- /images/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/control.png -------------------------------------------------------------------------------- /images/createClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/createClass.png -------------------------------------------------------------------------------- /images/definition-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/definition-structure.png -------------------------------------------------------------------------------- /images/definitionToSpec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/definitionToSpec.png -------------------------------------------------------------------------------- /images/definitionToTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/definitionToTemplate.png -------------------------------------------------------------------------------- /images/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/design.png -------------------------------------------------------------------------------- /images/fileHierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/fileHierarchy.png -------------------------------------------------------------------------------- /images/formingATemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/formingATemplate.png -------------------------------------------------------------------------------- /images/formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/formula.png -------------------------------------------------------------------------------- /images/formulaGrammar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/formulaGrammar.png -------------------------------------------------------------------------------- /images/get-ticket-resp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/get-ticket-resp.png -------------------------------------------------------------------------------- /images/get-ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/get-ticket.png -------------------------------------------------------------------------------- /images/hierarchy-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/hierarchy-model.png -------------------------------------------------------------------------------- /images/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/hierarchy.png -------------------------------------------------------------------------------- /images/implementationMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/implementationMap.png -------------------------------------------------------------------------------- /images/interactClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/interactClass.png -------------------------------------------------------------------------------- /images/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/maps.png -------------------------------------------------------------------------------- /images/metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/metadata.png -------------------------------------------------------------------------------- /images/reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/reference.png -------------------------------------------------------------------------------- /images/sequenceDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/sequenceDiagram.png -------------------------------------------------------------------------------- /images/taxonomy-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/taxonomy-model.png -------------------------------------------------------------------------------- /images/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/template.png -------------------------------------------------------------------------------- /images/templateContext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/templateContext.png -------------------------------------------------------------------------------- /images/templateDefinition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/templateDefinition.png -------------------------------------------------------------------------------- /images/templateFormula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/templateFormula.png -------------------------------------------------------------------------------- /images/templateImpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/templateImpl.png -------------------------------------------------------------------------------- /images/templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/templates.png -------------------------------------------------------------------------------- /images/tokenArtifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/tokenArtifact.png -------------------------------------------------------------------------------- /images/tokenInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/tokenInterface.png -------------------------------------------------------------------------------- /images/tokenSpec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/tokenSpec.png -------------------------------------------------------------------------------- /images/tokenSpecification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/tokenSpecification.png -------------------------------------------------------------------------------- /images/tokenTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/tokenTemplate.png -------------------------------------------------------------------------------- /images/tom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/tom.png -------------------------------------------------------------------------------- /images/ttf-end-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/ttf-end-ext.png -------------------------------------------------------------------------------- /images/txfer-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/txfer-request.png -------------------------------------------------------------------------------- /images/txfer-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/txfer-response.png -------------------------------------------------------------------------------- /images/typedArtifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/typedArtifact.png -------------------------------------------------------------------------------- /images/typedSpec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/typedSpec.png -------------------------------------------------------------------------------- /images/visualhierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/visualhierarchy.png -------------------------------------------------------------------------------- /images/workinggroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/workinggroup.png -------------------------------------------------------------------------------- /images/workshopProcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/images/workshopProcess.png -------------------------------------------------------------------------------- /logicalIM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/logicalIM.md -------------------------------------------------------------------------------- /taxonomy-artifact-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/taxonomy-artifact-format.md -------------------------------------------------------------------------------- /taxonomy-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/taxonomy-model.md -------------------------------------------------------------------------------- /token-control-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/token-control-messages.md -------------------------------------------------------------------------------- /token-taxonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterWorkAlliance/TokenTaxonomyFramework/HEAD/token-taxonomy.md --------------------------------------------------------------------------------