Module state

Retrieves the entire wasmx module's state

get
Responses
200
A successful response.
application/json
get
GET /injective/wasmx/v1/module_state HTTP/1.1
Host: inj.nownodes.io
Accept: */*
{
  "state": {
    "params": {
      "is_execution_enabled": true,
      "max_begin_block_total_gas": "text",
      "max_contract_gas_limit": "text",
      "min_gas_price": "text",
      "register_contract_access": {
        "permission": "ACCESS_TYPE_UNSPECIFIED",
        "addresses": [
          "text"
        ]
      }
    },
    "registered_contracts": [
      {
        "address": "text",
        "registered_contract": {
          "gas_limit": "text",
          "gas_price": "text",
          "is_executable": true,
          "code_id": "text",
          "admin_address": "text",
          "granter_address": "text",
          "fund_mode": "Unspecified"
        }
      }
    ]
  }
}