Shows info about the specified [[Shared Funds|shared funds]] transaction.
## Request Structure
`JSON object:`
```JSON
{
"method": "wallet",
"subcommand": ["shared","info"],
"arguments": {
"net": "net_name",
"tx": "tx_hash",
"H": "base58"
},
"id": "1"
}
```
`Parameters:`
**`net (network_name)`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]]
**`tx`** - hash of the shared funds transaction
**`H`** - transaction hash format: HEX or base58 `optional`
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '{
"method": "wallet",
"subcommand": ["shared","info"],
"arguments": {
"net": "riemann",
"tx": "0xE9282B8E283C14879CAAF78C9EA14530B9ABBB639C5D917E00A1A5F068E01B94"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"tx_hash": "0xE9282B8E283C14879CAAF78C9EA14530B9ABBB639C5D917E00A1A5F068E01B94",
"tx_hash_final": "0xD3C92681668FE50A39DE1CDC9EE885EE4F89ED3F52F0DE16248C4986DCF72E46",
"tags": [],
"balance": {
"coins": "500.0",
"datoshi": "500000000000000000000"
},
"take_verify": {
"signs_minimum": 2,
"owner_hashes": [
"0xA35F98638A7F23C2D1875FCBA9C44D1C1A915B5742096E0177131884F0B2931D",
"0x1EA4552E58495035E1DC3F6D20A9F59CBC2E5D95E41888147368A54326E38CC1"
]
},
"token": {
"ticker": "tKEL",
"description": null
}
}
],
"id": 1
}
```