Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wearetheledger/fabric-shim-types
Typescript types for the hyperledger fabric-shim chaincode package
https://github.com/wearetheledger/fabric-shim-types
chaincode hyperledger-fabric typescript typings
Last synced: about 2 months ago
JSON representation
Typescript types for the hyperledger fabric-shim chaincode package
- Host: GitHub
- URL: https://github.com/wearetheledger/fabric-shim-types
- Owner: wearetheledger
- License: mit
- Archived: true
- Created: 2018-03-07T14:00:09.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-11T15:31:56.000Z (about 6 years ago)
- Last Synced: 2024-10-24T16:52:42.287Z (about 2 months ago)
- Topics: chaincode, hyperledger-fabric, typescript, typings
- Language: TypeScript
- Homepage: https://theledger.be
- Size: 38.1 KB
- Stars: 3
- Watchers: 9
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hyperledger-fabric - fabric-shim-types - Typescript types for the `fabric-shim` chaincode package. (Tools / Chaincode)
README
# This package isn't needed anymore as of 1.3 since fabric-shim includes types
## Version matching
| Fabric | Shim types |
| ------------- |:-------------:|
| v1.2.X | v2.0.X |
| V1.1.X | v1.0.6 |## How to add this type to your project
You can add these types to your project by appending it to your types in your `tsconfig.json````
{
"compilerOptions": {
... // include other options
"types": [
"@theledger/fabric-shim-types"
]
}
}
```