state

GET

/cosmwasm/wasm/v1/contract/{address}/state

AllContractState gets all raw store data for a single contract

Parameters

address*stringpath

address is the address of the contract

Responses

Example Usage

import { getQueryClient } from '@sei-js/cosmjs';

const queryClient = await getQueryClient("YOUR_RPC_URL");
const { eCosmwasmWasmV1AllContractState } = queryClient.cosmwasm.wasm.v1;

const params: QueryeRequest = { 
	address: ""
 };
const response: QueryeResponseSDKType = await eCosmwasmWasmV1AllContractState(params);