Shows info about the specified shared funds transaction  

CLI Example

Command syntax:

emit_delegate info - get info about emit delegate tx by hash
-net <net_name>
-tx <transaction_hash> - emit delegate tx hash to get info
[-H {hex(default) | base58}] - tx hash format

Options:

-net - name of the Cellframe Network. The list of networks can be found in the <Config_dir> \ etc \ network folder or received by The Cellframe-Node-CLI using command - net list
-tx - hash of the shared funds transaction 
-H - hash format: HEX or base58 (optional)

Example:

Command:

cellframe-node-cli emit_delegate info -net foobar -tx 0x6F6C94C2810E62B791E62E73985901B1E21B568E0AFE78744385F4D38FD5F84E

Response:

    tx_hash: 0x6F6C94C2810E62B791E62E73985901B1E21B568E0AFE78744385F4D38FD5F84E
        tx_hash_final: 0x6F6C94C2810E62B791E62E73985901B1E21B568E0AFE78744385F4D38FD5F84E
        balance: 
            coins: 6666.0
            datoshi: 6666000000000000000000
 
 
        take_verify: 
            signs_minimum: 2
            owner_hashes: 
                0x1C2FF55650EEF6BD9505794636F3F7F21C1525410DF44CD8CFBC3F1DAC2D1380, 
                0x9A6B3651BB2CA1C07CF9F6EA9306E7E5BFE61D5D6CB23F97A96D03656403BA09
 
  
        token: 
            ticker: BUZ
            description:

JSON-RPC Example

Command:

curl -s --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d  '{"method":"emit_delegate", "subcommand":["info"], "arguments":{"net":"foobar","tx":"0x6F6C94C2810E62B791E62E73985901B1E21B568E0AFE78744385F4D38FD5F84E"}, "id":"1"}'

Response:

{
  "type": 2,
  "result": [
    {
      "tx_hash": "0x6F6C94C2810E62B791E62E73985901B1E21B568E0AFE78744385F4D38FD5F84E",
      "tx_hash_final": "0x6F6C94C2810E62B791E62E73985901B1E21B568E0AFE78744385F4D38FD5F84E",
      "balance": {
        "coins": "6666.0",
        "datoshi": "6666000000000000000000"
      },
      "take_verify": {
        "signs_minimum": 2,
        "owner_hashes": [
          "0x1C2FF55650EEF6BD9505794636F3F7F21C1525410DF44CD8CFBC3F1DAC2D1380",
          "0x9A6B3651BB2CA1C07CF9F6EA9306E7E5BFE61D5D6CB23F97A96D03656403BA09"
        ]
      },
      "token": {
        "ticker": "BUZ",
        "description": null
      }
    }
  ],
  "id": 1
}