Skip to content

Releases: kadena-community/bag-of-holding

1.4.1

31 Jan 22:46
Compare
Choose a tag to compare

boh poll now takes any number of transaction IDs as raw arguments, and processes them all. The --tx flag is no longer needed.

1.4.0

31 Jan 19:13
95fecee
Compare
Choose a tag to compare

New Command: boh poll to easily query the result of a Transaction.

$ boh poll --node=tetsu.fosskers.ca:443 --chain=0 --tx=Y5yIaENtp5jS_-B3cjmoxdW3HkpDp3d6lRuF0C2sZb0
{
    "gas": 757,
    "result": {
        "status": "success",
        "data": "Write succeeded"
    },
    "reqKey": "Y5yIaENtp5jS_-B3cjmoxdW3HkpDp3d6lRuF0C2sZb0",
    "logs": "avgF5JhbUNCCbnySkpfYSm17ft-Pk4gtAW1JIBee950",
    "metaData": {
        "blockTime": 1580421471913670,
        "prevBlockHash": "jsL8JMWon6CbxOb8KFX0zkW2q9_kPEzdGbFNw_klIPs",
        "blockHash": "PQ5J4vxzV_14tBYqk1p0tNeq5l_-J0BU02VFq7nXL_Y",
        "blockHeight": 268343
    },
    "continuation": null,
    "txId": 318001
}

1.3.1

22 Jan 21:54
Compare
Choose a tag to compare

Fixed a bug involving trivial failures in transaction signing.

1.3.0

22 Jan 19:32
e36207c
Compare
Choose a tag to compare

boh now supports the Pact Signing API. When boh is open, it is running a small web server on Port 9467. Applications that want a transaction signature from you will make a request to this port, and an prompt box will appear for you to confirm or deny the transaction.

1.2.0

19 Dec 19:38
Compare
Choose a tag to compare

New Feature

The new boh keys command can be used to generate a key pair in the format that boh expects:

$ boh keys
{
    "private": "09fbe65c7adb5f4d6928d1544c4a844740a6777cbc57dfeb96286cea63c4a520",
    "public": "007104e41eb2e1284212a2d86debafc67c4a9b5b837913b851b146f6b12fbed4"
}

To pipe this to a file for later use:

$ boh keys > keys.json

Breaking Changes

The old way of opening boh to access the Wallet UI now requires the wallet command:

$ boh wallet --keyfile=keys.json --account=you --node=us-w1.chainweb.com:443

1.1.2

16 Dec 19:49
beafa72
Compare
Choose a tag to compare

This release disables since general Pact Transaction form, since it's currently unusable. The Transaction Wizard works fine, however.

1.1.1

10 Dec 19:39
9075fb3
Compare
Choose a tag to compare

Fixed a bug involving decimal places entered into the Transfer Wizard.

1.1.0

04 Dec 00:18
341e8c2
Compare
Choose a tag to compare

The former t command for writing Pact Transactions has been moved to p. In its place, t now opens the Transfer Wizard. Use this to easily perform single-chain transfers without writing your own Pact code.

Note: General transactions are still broken, but will be fixed in the next version.

1.0.1

29 Nov 18:03
bc30f8e
Compare
Choose a tag to compare

The dependency on chainweb has been removed, reducing boh's binary size by ~30%.