[
    {
        "method": "callcontract",
        "type": "get",
        "params": [
            "contractAddress",
            "address"
        ],
        "Description": "Returns the balance of the address in the given token contract."
    },
    {
        "method": "getbalance",
        "type": "get",
        "params": [
            "address"
        ],
        "Description": "Returns the current balance of the address."
    },
    {
        "method": "getnonce",
        "type": "get",
        "params": [
            "address",
            "status(pending)"
        ],
        "Description": "Returns the current nonce of the address."
    },
    {
        "method": "gettransaction",
        "type": "get",
        "params": [
            "transaction hash"
        ],
        "Description": "Returns the Transaction identified by the transaction hash."
    },
    {
        "method": "gettransactionstatus",
        "type": "get",
        "params": [
            "transaction hash"
        ],
        "Description": "Returns the current status of the transaction identified by the transaction hash."
    },
    {
        "method": "getconfirmationcount",
        "type": "get",
        "params": [
            "transaction hash"
        ],
        "Description": "Returns the current confirmations  of the transaction identified by the transaction hash."
    },
    {
        "method": "getgasprice",
        "type": "get",
        "params": [],
        "Description": "Returns the recommended gas price."
    },
    {
        "method": "sendsignedtransaction",
        "type": "post",
        "params": [
            "single json object containing the signed transaction identified by signedtx"
        ],
        "Description": "Returns the result of the transaction submission."
    }
]