Refactor
Some checks failed
Build / cleanup-runs (pull_request) Failing after 2s
Build / build (pull_request) Successful in 36s
Deploy Contract / cleanup-runs (pull_request) Failing after 6s
CodeQL / Analyze (go) (pull_request) Successful in 1m13s
Deploy Contract / deploy (pull_request) Failing after 36s
Pull Request Labeler / triage (pull_request) Failing after 3s
Dependency Review / dependency-review (pull_request) Successful in 1m31s
Lint / Run flake8 on python integration tests (pull_request) Failing after 48s
Lint / Run golangci-lint (pull_request) Successful in 52s
Tests / cleanup-runs (pull_request) Failing after 8s
Semgrep / Scan (pull_request) Failing after 11s
Run Gosec / Gosec (pull_request) Successful in 1m8s
Tests / test-importer (pull_request) Successful in 1m27s
Tests / test-unit-cover (pull_request) Successful in 1m29s
Tests / test-rpc (pull_request) Successful in 1m48s
Tests / sdk_tests (pull_request) Failing after 3m11s

This commit is contained in:
Thomas E Lackey 2024-01-09 23:12:56 -06:00
parent 19a7b4d3eb
commit b8f56076ff

View File

@ -1,17 +1,13 @@
#!/bin/bash
KEYNAME=`uuidgen | tr -d '-'`
KEYRING_DIR=`mktemp -d`
KEYRING=test
LACONIC_CONFIG=${LACONIC_CONFIG:-$HOME/.laconic/config.yml}
ACCOUNT_JSON=$(laconicd keys add $KEYNAME --keyring-backend $KEYRING --algo eth_secp256k1 --keyring-dir $KEYRING_DIR --output json)
PRIVATE_KEY=$(yes | laconicd keys export $KEYNAME --keyring-backend $KEYRING --keyring-dir $KEYRING_DIR --unarmored-hex --unsafe)
PUB_KEY=$(echo $ACCOUNT_JSON | jq -r ".pubkey | fromjson | .key")
ACCOUNT_JSON=$(echo $ACCOUNT_JSON | jq ".privkey = \"$PRIVATE_KEY\"" | jq ".pubkey = \"$PUB_KEY\"")
laconicd keys delete $KEYNAME --keyring-backend $KEYRING --keyring-dir $KEYRING_DIR -y 2> /dev/null
rm -rf $KEYRING_DIR
@ -24,4 +20,4 @@ BOND_AMOUNT=$((AVG_RECORD_PHOTON * NUM_RECORDS))
laconic -c $LACONIC_CONFIG cns tokens send --address $(echo $ACCOUNT_JSON | jq -r '.address') --type aphoton --quantity $((BOND_AMOUNT + BOND_OVERHEAD)) > /dev/null
BOND_ID=$(laconic -c $LACONIC_CONFIG cns bond create --user-key $PRIVATE_KEY --type aphoton --quantity $BOND_AMOUNT | jq -r '.bondId')
echo $ACCOUNT_JSON | jq ".bond = \"$BOND_ID\"" | jq ".balance = $BOND_AMOUNT"
echo $ACCOUNT_JSON | jq ".bond = \"$BOND_ID\"" | jq ".balance = $BOND_AMOUNT" | jq ".privkey = \"$PRIVATE_KEY\"" | jq ".pubkey = \"$PUB_KEY\""