v0.2.0
Key Changes
- CIP 8 implementation
- CIP 30 signData, verify signature implementation
- koios-java-client dependency update
PR / Other Changes
- Fix Koios Limitations Header in README.md by @edridudi in #103
- Cip8 cbor Implementation by @satran004 in #110
- Remove JsonIgnore Annotation from getPolicyId() by @edridudi in #112
- Fix Koios Schema Change for Policy Assets Endpoint + Added Account Endpoint as Backend Service for Koios and BF by @edridudi in #113
- Cip30 & CIP8 specific enhancements by @satran004 in #114
- DataSignature Jackson Serialization & Deserialization by @edridudi in #115
- Helper methods in DataSignature by @satran004 in #116
Full Changelog: v0.2.0-beta3...v0.2.0
Dependencies
- Core module
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-lib</artifactId>
<version>0.2.0</version>
</dependency>
- Backend modules
- For backend support, use one of the following supported backend module
<!-- For Blockfrost backend -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-blockfrost</artifactId>
<version>0.2.0</version>
</dependency>
<!-- For Koios backend -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-koios</artifactId>
<version>0.2.0</version>
</dependency>
<!-- For Ogmios backend -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-ogmios</artifactId>
<version>0.2.0</version>
</dependency>
<!-- For Cardano Graphql backend -->
<dependency>
<groupId>com.bloxbean.cardano</groupId>
<artifactId>cardano-client-backend-gql</artifactId>
<version>0.2.0</version>
</dependency>
For Gradle, add the following dependencies to build.gradle
- Core Module
implementation 'com.bloxbean.cardano:cardano-client-lib:0.2.0'
- Backend modules
- For backend support, use one of the following supported backend module
//For Blockfrost
implementation 'com.bloxbean.cardano:cardano-client-backend-blockfrost:0.2.0'
//For Koios
implementation 'com.bloxbean.cardano:cardano-client-backend-koios:0.2.0'
//For Ogmios
implementation 'com.bloxbean.cardano:cardano-client-backend-ogmios:0.2.0'
//For Cardano Graphql
implementation 'com.bloxbean.cardano:cardano-client-backend-gql:0.2.0'