Skip to content

Commit

Permalink
feat: bloxbean CCL: 0.5.0 (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
matiwinnetou authored Oct 8, 2023
1 parent f7d8682 commit 6421723
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ dependencies {
implementation("com.querydsl:querydsl-jpa")
annotationProcessor("com.querydsl:querydsl-apt")

implementation("com.bloxbean.cardano:cardano-client-address:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-address:0.5.0")

implementation("software.amazon.awssdk:sns:2.20.153")

Expand Down
12 changes: 6 additions & 6 deletions backend-services/vote-commitment-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ dependencies {
implementation("com.querydsl:querydsl-jpa")
annotationProcessor("com.querydsl:querydsl-apt")

implementation("com.bloxbean.cardano:cardano-client-crypto:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-address:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-metadata:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-quicktx:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-cip30:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-crypto:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-address:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-metadata:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-quicktx:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-cip30:0.5.0")

implementation("io.blockfrost:blockfrost-java:0.1.3")

Expand Down
12 changes: 6 additions & 6 deletions backend-services/voting-admin-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ dependencies {
testCompileOnly("org.projectlombok:lombok:1.18.28")
testAnnotationProcessor("org.projectlombok:lombok:1.18.28")

implementation("com.bloxbean.cardano:cardano-client-crypto:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-address:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-metadata:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-quicktx:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-cip30:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-crypto:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-address:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-metadata:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-quicktx:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-cip30:0.5.0")

implementation("com.nimbusds:nimbus-jose-jwt:9.34")
implementation("com.google.crypto.tink:tink:1.10.0")
Expand Down
2 changes: 1 addition & 1 deletion backend-services/voting-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ dependencies {
implementation("com.nimbusds:nimbus-jose-jwt:9.35")
implementation("com.google.crypto.tink:tink:1.11.0")

implementation("com.bloxbean.cardano:cardano-client-cip30:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-cip30:0.5.0")

implementation("io.blockfrost:blockfrost-java:0.1.3")

Expand Down
4 changes: 2 additions & 2 deletions backend-services/voting-ledger-follower-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ dependencies {
implementation("com.querydsl:querydsl-jpa")
annotationProcessor("com.querydsl:querydsl-apt")

implementation("com.bloxbean.cardano:cardano-client-crypto:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-crypto:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-backend-blockfrost:0.5.0")

implementation("com.bloxbean.cardano:yaci-store-spring-boot-starter:0.0.12")
implementation("com.bloxbean.cardano:yaci-store-blocks-spring-boot-starter:0.0.12")
Expand Down
4 changes: 2 additions & 2 deletions backend-services/voting-verification-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ dependencies {
implementation("com.querydsl:querydsl-jpa")
annotationProcessor("com.querydsl:querydsl-apt")

implementation("com.bloxbean.cardano:cardano-client-address:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-cip30:0.5.0-beta3")
implementation("com.bloxbean.cardano:cardano-client-address:0.5.0")
implementation("com.bloxbean.cardano:cardano-client-cip30:0.5.0")

implementation("io.vavr:vavr:0.10.4")

Expand Down
4 changes: 2 additions & 2 deletions scripts/check_address.sc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// mati@Mateuszs-MBP scripts % amm check_address.sc --mnemonic "solution ..."

import $ivy.`com.bloxbean.cardano:cardano-client-lib:0.5.0-beta3`
import $ivy.`com.bloxbean.cardano:cardano-client-lib:0.5.0`

import $ivy.`org.slf4j:slf4j-simple:2.0.9`

Expand All @@ -21,4 +21,4 @@ def main(mnemonic: String) = {
}

// curl -H "project_id: password" https://cardano-preprod.blockfrost.io/api/v0/accounts/stake_test1uzw478du6llchakgyety622kngsg8jcgs5jl72qnadm5y3skdkp5u
// {"stake_address":"stake_test1uzw478du6llchakgyety622kngsg8jcgs5jl72qnadm5y3skdkp5u","active":true,"active_epoch":96,"controlled_amount":"2997489065","rewards_sum":"0","withdrawals_sum":"0","reserves_sum":"0","treasury_sum":"0","withdrawable_amount":"0","pool_id":"pool1xafhfcvhyk2cyr7lprt4luxjcxgh8z87z6fke7d6grvvzljga3l"}%
// {"stake_address":"stake_test1uzw478du6llchakgyety622kngsg8jcgs5jl72qnadm5y3skdkp5u","active":true,"active_epoch":96,"controlled_amount":"2997489065","rewards_sum":"0","withdrawals_sum":"0","reserves_sum":"0","treasury_sum":"0","withdrawable_amount":"0","pool_id":"pool1xafhfcvhyk2cyr7lprt4luxjcxgh8z87z6fke7d6grvvzljga3l"}%
4 changes: 2 additions & 2 deletions scripts/cip_30_sign.sc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// brew install amm
// amm cip_30_sign.sc

import $ivy.`com.bloxbean.cardano:cardano-client-lib:0.5.0-beta2`
import $ivy.`com.bloxbean.cardano:cardano-client-cip30:0.5.0-beta2`
import $ivy.`com.bloxbean.cardano:cardano-client-lib:0.5.0`
import $ivy.`com.bloxbean.cardano:cardano-client-cip30:0.5.0`

import $ivy.`com.lihaoyi:requests_3:0.8.0`
import $ivy.`com.fasterxml.jackson.core:jackson-core:2.15.2`
Expand Down
File renamed without changes.

0 comments on commit 6421723

Please sign in to comment.