Refills funds on the specified [[Shared Funds|shared funds]] transaction.   ## Request Structure `JSON object:` ```JSON { "method": "wallet", "subcommand": ["shared","refill"], "arguments": { "net": "net_name", "w": "wallet_name", "value": "value", "tx": "tx_hash", "fee": "fee_value", "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]] **`w`** - the name of the wallet which has a right to debit funds and refill **`value`** - amount of funds to refill **`tx`** - hash of the shared funds transaction **`fee`** - commission for 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","refill"], "arguments": { "net": "riemann", "w": "wallet1", "tx": "0xE9282B8E283C14879CAAF78C9EA14530B9ABBB639C5D917E00A1A5F068E01B94", "value": "250.0e+18", "fee": "0.05e+18" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ { "status": "success", "tx_hash": "0x49D9B857E6A7B2F88A5D4975B34A7D5E8C408BD1BF005F25C294D75D0503CB07" } ], "id": 1 } ```