File tree Expand file tree Collapse file tree 11 files changed +39
-31
lines changed Expand file tree Collapse file tree 11 files changed +39
-31
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ services:
66 cardano-node :
77 image : ghcr.io/input-output-hk/ogmios-tracker/cardano-node:${CARDANO_NODE_VERSION:-10.1.2}
88 ogmios :
9- image : ghcr.io/input-output-hk/ogmios-tracker/ogmios:v${OGMIOS_VERSION:-6.8 .0}
9+ image : ghcr.io/input-output-hk/ogmios-tracker/ogmios:v${OGMIOS_VERSION:-6.9 .0}
1010 cardano-submit-api :
1111 image : ghcr.io/input-output-hk/ogmios-tracker/cardano-submit-api:${CARDANO_NODE_VERSION:-10.1.2}
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ services:
199199
200200 ogmios :
201201 << : *logging
202- image : cardanosolutions/ogmios:v${OGMIOS_VERSION:-6.8 .0}
202+ image : cardanosolutions/ogmios:v${OGMIOS_VERSION:-6.9 .0}
203203 command :
204204 [
205205 ' --host' ,
Original file line number Diff line number Diff line change 5959 "tscNoEmit" : " echo typescript --noEmit command not implemented yet"
6060 },
6161 "devDependencies" : {
62- "@cardano-ogmios/client" : " 6.8 .0" ,
62+ "@cardano-ogmios/client" : " 6.9 .0" ,
6363 "@cardano-sdk/util-dev" : " workspace:~" ,
6464 "@types/bunyan" : " ^1.8.8" ,
6565 "@types/cors" : " ^2.8.13" ,
Original file line number Diff line number Diff line change 5757 },
5858 "dependencies" : {
5959 "@biglup/is-cid" : " ^1.0.3" ,
60- "@cardano-ogmios/client" : " 6.8 .0" ,
61- "@cardano-ogmios/schema" : " 6.8 .0" ,
60+ "@cardano-ogmios/client" : " 6.9 .0" ,
61+ "@cardano-ogmios/schema" : " 6.9 .0" ,
6262 "@cardano-sdk/crypto" : " workspace:~" ,
6363 "@cardano-sdk/util" : " workspace:~" ,
6464 "@foxglove/crc" : " ^0.0.3" ,
Original file line number Diff line number Diff line change 3737 "prepack" : " yarn build"
3838 },
3939 "devDependencies" : {
40- "@cardano-ogmios/schema" : " 6.8 .0" ,
40+ "@cardano-ogmios/schema" : " 6.9 .0" ,
4141 "@dcspark/cardano-multiplatform-lib-nodejs" : " ^3.1.1" ,
4242 "@types/blake2b" : " ^2.1.0" ,
4343 "@types/libsodium-wrappers-sumo" : " ^0.7.5" ,
Original file line number Diff line number Diff line change @@ -151,9 +151,17 @@ for NODE_ID in ${SP_NODES_ID}; do
151151 --key-reg-deposit-amt ${keyDeposit} \
152152 --out-file " ${TRANSACTIONS_DIR} /staking${NODE_ID} reg.cert"
153153
154+ # Wait for utxo to become available
155+ txIn=" $( cardano-cli latest query utxo --address " $( cat " ${DELEGATORS_DIR} /payment${NODE_ID} .addr" ) " --testnet-magic $NETWORK_MAGIC --out-file /dev/stdout | jq -r ' keys[0]' ) " ;
156+ while [ " $txIn " == " null" ]; do
157+ echo " TxIN is null, retrying..."
158+ txIn=" $( cardano-cli latest query utxo --address " $( cat " ${DELEGATORS_DIR} /payment${NODE_ID} .addr" ) " --testnet-magic $NETWORK_MAGIC --out-file /dev/stdout | jq -r ' keys[0]' ) " ;
159+ sleep 1
160+ done
161+
154162 cardano-cli latest transaction build \
155163 --testnet-magic $NETWORK_MAGIC \
156- --tx-in " $( cardano-cli query utxo --address " $( cat " ${DELEGATORS_DIR} /payment ${NODE_ID} .addr " ) " --testnet-magic $NETWORK_MAGIC --out-file /dev/stdout | jq -r ' keys[0] ' ) " \
164+ --tx-in " $txIn " \
157165 --change-address " $( cat ${DELEGATORS_DIR} /payment${NODE_ID} .addr) " \
158166 --certificate-file " ${TRANSACTIONS_DIR} /staking${NODE_ID} reg.cert" \
159167 --witness-override 2 \
Original file line number Diff line number Diff line change 7575 },
7676 "dependencies" : {
7777 "@cardano-foundation/ledgerjs-hw-app-cardano" : " ^7.1.4" ,
78- "@cardano-ogmios/client" : " 6.8 .0" ,
78+ "@cardano-ogmios/client" : " 6.9 .0" ,
7979 "@cardano-sdk/cardano-services" : " workspace:~" ,
8080 "@cardano-sdk/cardano-services-client" : " workspace:~" ,
8181 "@cardano-sdk/core" : " workspace:~" ,
Original file line number Diff line number Diff line change 3737 "prepack" : " yarn build"
3838 },
3939 "devDependencies" : {
40- "@cardano-ogmios/schema" : " 6.8 .0" ,
40+ "@cardano-ogmios/schema" : " 6.9 .0" ,
4141 "@cardano-sdk/cardano-services-client" : " workspace:~" ,
4242 "@cardano-sdk/util-dev" : " workspace:~" ,
4343 "@cardano-sdk/util-rxjs" : " workspace:~" ,
5454 "ws" : " ^8.5.0"
5555 },
5656 "dependencies" : {
57- "@cardano-ogmios/client" : " 6.8 .0" ,
58- "@cardano-ogmios/schema" : " 6.8 .0" ,
57+ "@cardano-ogmios/client" : " 6.9 .0" ,
58+ "@cardano-ogmios/schema" : " 6.9 .0" ,
5959 "@cardano-sdk/core" : " workspace:~" ,
6060 "@cardano-sdk/crypto" : " workspace:~" ,
6161 "@cardano-sdk/projection" : " workspace:~" ,
Original file line number Diff line number Diff line change 4040 },
4141 "devDependencies" : {
4242 "@cardano-foundation/ledgerjs-hw-app-cardano" : " ^7.1.4" ,
43- "@cardano-ogmios/client" : " 6.8 .0" ,
43+ "@cardano-ogmios/client" : " 6.9 .0" ,
4444 "@cardano-sdk/cardano-services-client" : " workspace:~" ,
4545 "@cardano-sdk/ogmios" : " workspace:~" ,
4646 "@cardano-sdk/util-dev" : " workspace:~" ,
Original file line number Diff line number Diff line change @@ -408,8 +408,8 @@ cacheEntries = {
408408"@blockfrost/blockfrost-js@npm:5.5.0" = { filename = "@blockfrost-blockfrost-js-npm-5.5.0-b5af01a7d6-2770f3ca14.zip"; sha512 = "2770f3ca1492ab5c3cc9a233cfdc004e2d136eb3ac0c3f19c847156c96df561737c167861a3e2db409fef3c6a07e72b8109c10e05afc50cb9208416bb99cb2f0"; };
409409"@blockfrost/openapi@npm:0.1.60" = { filename = "@blockfrost-openapi-npm-0.1.60-64f77da01a-2ab66de532.zip"; sha512 = "2ab66de532917fef3f1e88ab0cbb4259f79ba9b73fd865cd815f1e836d596de4394ece2914bd8b5ac8f0d38a7f7e11226a6a21ec298a4becf4d273e40abb08f4"; };
410410"@cardano-foundation/ledgerjs-hw-app-cardano@npm:7.1.4" = { filename = "@cardano-foundation-ledgerjs-hw-app-cardano-npm-7.1.4-f617fd42e1-e4314ad801.zip"; sha512 = "e4314ad8014a39c0ff5ed4ce523954c0d773d64e5f59333eeac51cc1f1bba3cf1ad5cf96d0d395319cd30be04c3fc3864a79249570de9e534b6ce3c3c968bff2"; };
411- "@cardano-ogmios/client@npm:6.8 .0" = { filename = "@cardano-ogmios-client-npm-6.8 .0-217da39f58-6f564abba9 .zip"; sha512 = "6f564abba9467dc66fe7297cae6937976193140ec2e8da1f3107cd9329de411cb9045d1de44d7f66d3ec428070ac9e163291e532d67e2804f263726e14dc9f81 "; };
412- "@cardano-ogmios/schema@npm:6.8 .0" = { filename = "@cardano-ogmios-schema-npm-6.8 .0-7563578048-ba048d4977 .zip"; sha512 = "ba048d4977c09cd7863a47a8a3c8f4755d65abf2841419797fa87d1839fedb3d0b8e27f005e03af33090e27b3d1ef9b5e27370a21c16aee102cf2e0d37a47602 "; };
411+ "@cardano-ogmios/client@npm:6.9 .0" = { filename = "@cardano-ogmios-client-npm-6.9 .0-b814847e62-f46d36bc2d .zip"; sha512 = "f46d36bc2dea077454ce29e503b2881736ad7887570a79d8c5c87c2ef6ecc0e972bb489812c3e95f214e93d4f4dff23a6dcaeb336b867f25bc1274441acbf491 "; };
412+ "@cardano-ogmios/schema@npm:6.9 .0" = { filename = "@cardano-ogmios-schema-npm-6.9 .0-a0db1ac693-5e607c8471 .zip"; sha512 = "5e607c84710e05268fa10757547fcc79df7dc5dbaf6b2b78c50e1701184a19ba8b2bd5b4d4040048cbe10404f82732c7269efe55e6202a50048fae1aa5d10a54 "; };
413413"@cardanosolutions/json-bigint@npm:1.0.1" = { filename = "@cardanosolutions-json-bigint-npm-1.0.1-b157608882-cd52446a76.zip"; sha512 = "cd52446a76516c528c69d431c1b593a029e87106968bd2b8e6074761025b77fc18a1b8ae6a10a6e5897446058ca79e0864de6c7d609240275e30cc9f0d2f2fd1"; };
414414"@chainsafe/is-ip@npm:2.0.2" = { filename = "@chainsafe-is-ip-npm-2.0.2-6962206849-2600350ba1.zip"; sha512 = "2600350ba1c8fbad5d1ebee71317beeb29fbaebf43780d89e30f8c6c2d27b95ebdab0284dfbab7336b5eb6d8ffcc7081e3e4c5b221889dc366463f83bbe38adb"; };
415415"@chainsafe/netmask@npm:2.0.0" = { filename = "@chainsafe-netmask-npm-2.0.0-44b57d979f-90d27154c1.zip"; sha512 = "90d27154c11ff878130150766ebfc490c829cd5249a61f7018fa4cefe3a18d92394285bb435c38bd0dbe45261006a82572e95ac201e9b28157de80127a6a3d06"; };
You can’t perform that action at this time.
0 commit comments