9
9
10
10
A client library for Cardano in Java. This library simplifies the interaction with Cardano blockchain from a Java application.
11
11
12
- ### ** Latest Stable Version** : [ 0.5.0 ] ( https://github.com/bloxbean/cardano-client-lib/releases/tag/v0.5.0 )
12
+ ### ** Latest Stable Version** : [ 0.5.1 ] ( https://github.com/bloxbean/cardano-client-lib/releases/tag/v0.5.1 )
13
13
14
14
### More details --> [ Documentation] ( https://cardano-client.dev/ )
15
15
@@ -21,6 +21,7 @@ A client library for Cardano in Java. This library simplifies the interaction wi
21
21
### ** Tutorials**
22
22
- [ Simple Ada transfer] ( https://cardano-client.dev/docs/gettingstarted/simple-transfer )
23
23
- [ Multisig transfer using Native Script] ( https://cardano-client.dev/docs/gettingstarted/multisig-quickstart )
24
+ - [ Governance Api] ( https://cardano-client.dev/docs/apis/governance-api )
24
25
25
26
### ** Old Posts**
26
27
@@ -76,7 +77,10 @@ For fine-grained dependency management, add one or more below modules as require
76
77
| [ cip20] ( cip/cip20 ) | cardano-client-cip20 | [ CIP 20 - Transaction message/comment metadata] ( https://cips.cardano.org/cips/cip20/ ) <br > ** Dependencies:** metadata |
77
78
| [ cip25] ( cip/cip25 ) | cardano-client-cip25 | [ CIP 25 - Media NFT Metadata Standard] ( https://cips.cardano.org/cips/cip25/ ) <br > ** Dependencies:** metadata |
78
79
| [ cip27] ( cip/cip27 ) | cardano-client-cip27 | [ CIP 27 - CNFT Community Royalties Standard] ( https://cips.cardano.org/cips/cip27/ ) <br > ** Dependencies:** cip25 |
79
- | [ cip30] ( cip/cip30 ) | cardano-client-cip30 | [ CIP 30 - Cardano dApp-Wallet Web Bridge] ( https://cips.cardano.org/cips/cip30/ ) <br > ** Dependencies:** cip8, core |
80
+ | [ cip30] ( cip/cip30 ) | cardano-client-cip30 | [ CIP 30 - Cardano dApp-Wallet Web Bridge] ( https://cips.cardano.org/cips/cip30/ ) <br > ** Dependencies:** cip8, core <br /> |
81
+ | [ cip68] ( cip/cip68 ) | cardano-client-cip68 | [ CIP 68 - Datum Metadata Standard] ( https://cips.cardano.org/cips/cip68/ ) <br > ** Dependencies:** cip67, cip25, plutus, transaction-spec |
82
+ | [ ogmios-supplier] ( ogmios-supplier ) | cardano-client-ogmios-supplier | Provides Ogmios specific implementation for ProtocolParamsSupplier and TransactionProcessor. |
83
+ | [ kupo-supplier] ( kupo-supplier ) | cardano-client-kupo-supplier | Provides Kupo specific implementation for UtxoSupplier. |
80
84
81
85
## Use as a library in a Java Project
82
86
@@ -90,7 +94,7 @@ For fine-grained dependency management, add one or more below modules as require
90
94
<dependency >
91
95
<groupId >com.bloxbean.cardano</groupId >
92
96
<artifactId >cardano-client-lib</artifactId >
93
- <version >0.5.0 </version >
97
+ <version >0.5.1 </version >
94
98
</dependency >
95
99
```
96
100
- Backend modules
@@ -101,49 +105,49 @@ For fine-grained dependency management, add one or more below modules as require
101
105
<dependency >
102
106
<groupId >com.bloxbean.cardano</groupId >
103
107
<artifactId >cardano-client-backend-blockfrost</artifactId >
104
- <version >0.5.0 </version >
108
+ <version >0.5.1 </version >
105
109
</dependency >
106
110
107
111
<!-- For Koios backend -->
108
112
<dependency >
109
113
<groupId >com.bloxbean.cardano</groupId >
110
114
<artifactId >cardano-client-backend-koios</artifactId >
111
- <version >0.5.0 </version >
115
+ <version >0.5.1 </version >
112
116
</dependency >
113
117
114
118
<!-- For Ogmios / Kupo backend -->
115
119
<dependency >
116
120
<groupId >com.bloxbean.cardano</groupId >
117
121
<artifactId >cardano-client-backend-ogmios</artifactId >
118
- <version >0.5.0 </version >
122
+ <version >0.5.1 </version >
119
123
</dependency >
120
124
```
121
125
122
126
** For Gradle, add the following dependencies to build.gradle**
123
127
124
128
- Core Module
125
129
```
126
- implementation 'com.bloxbean.cardano:cardano-client-lib:0.5.0 '
130
+ implementation 'com.bloxbean.cardano:cardano-client-lib:0.5.1 '
127
131
```
128
132
- Backend modules
129
133
- For backend support, use one of the following supported backend module
130
134
131
135
``` groovy
132
136
//For Blockfrost
133
- implementation 'com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.0 '
137
+ implementation 'com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.1 '
134
138
135
139
//For Koios
136
- implementation 'com.bloxbean.cardano:cardano-client-backend-koios:0.5.0 '
140
+ implementation 'com.bloxbean.cardano:cardano-client-backend-koios:0.5.1 '
137
141
138
142
//For Ogmios / Kupo
139
- implementation 'com.bloxbean.cardano:cardano-client-backend-ogmios:0.5.0 '
143
+ implementation 'com.bloxbean.cardano:cardano-client-backend-ogmios:0.5.1 '
140
144
141
145
```
142
146
143
147
144
148
### For snapshot binaries
145
149
146
- ** SNAPSHOT_VERSION :** 0.5.1 -SNAPSHOT (Please verify the latest snapshot version in gradle.properties)
150
+ ** SNAPSHOT_VERSION :** 0.5.2 -SNAPSHOT (Please verify the latest snapshot version in gradle.properties)
147
151
148
152
- For Maven, add the following dependencies and repository to project's pom.xml
149
153
```
0 commit comments