cosmos-sdk/tests/cli
Emmanuel Odeke f52d92a40e modules/coin/rest: implemented CreateRole
* Note: Role must be a hex string, as enforced in tests/rest/cli.sh

```shell
$ curl -X POST http://localhost:8998/build/create_role --data \
'{
  "role":"DEADBEEF", "seq": 1,
  "min_sigs": 1,
  "signers": [{
    "addr": "4FF759D47C81754D8F553DCCAC8651D0AF74C7F9", "app": "role"
  }]
}'
```

```HTTP
HTTP/1.1 200 OK
Content-Type: application/json
Date: Tue, 08 Aug 2017 19:15:13 GMT
Content-Length: 387

{
  "type": "chain/tx",
  "data": {
    "chain_id": "test_chain_id",
    "expires_at": 0,
    "tx": {
      "type": "role/create",
      "data": {
        "role": "DEADBEEF",
        "min_sigs": 1,
        "signers": [
          {
            "chain": "",
            "app": "role",
            "addr": "4FF759D47C81754D8F553DCCAC8651D0AF74C7F9"
          }
        ]
      }
    }
  }
}
```

Updates #200
2017-08-18 22:32:04 +01:00
..
basictx.sh Fix up flag handling 2017-07-29 17:23:21 -04:00
common.sh role cli uses hex for consistency 2017-08-04 14:44:28 +02:00
counter.sh --sequence=-1 broken if no sequence yet 2017-07-19 13:27:29 +02:00
eyes.sh Really renames etc -> eyes... finish the job 2017-08-07 19:21:07 +02:00
ibc.sh IBC post packet test passes 2017-07-27 16:41:37 -04:00
init.sh auto-sequencing 2017-07-19 00:13:39 -04:00
keys.sh auto-sequencing 2017-07-19 00:13:39 -04:00
rest.sh modules/coin/rest: implemented CreateRole 2017-08-18 22:32:04 +01:00
restart.sh Remove all sequence from coin, fixed cli tests 2017-07-12 19:25:15 +02:00
roles.sh role cli uses hex for consistency 2017-08-04 14:44:28 +02:00
rpc.sh Updated light-client 2017-07-27 16:41:36 -04:00