> For the complete documentation index, see [llms.txt](https://nomos-docs.gitbook.io/v1/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nomos-docs.gitbook.io/v1/nomos-providers/archway-nomos-client.md).

# Archway Nomos Client

ArchwayClient is the archway main provider without signer. It extends the cosmos client and read information that only archway has, such as fees, rewards, metadata, etc.

We implemented our version of the Archway client so that any read action in third party apps is forwarded and handled by our application.

### Interface

We implement the same functions as the Archway Query client since it has the same functions as the archway client.

```typescript
export declare class NomosArchwayClient extends NomosClient implements IArchwayQueryClient {
    readonly communicator: Communicator;
    protected constructor(tmClient: TendermintClient | undefined);
    static connect(endpoint: string | HttpEndpoint): Promise<NomosArchwayClient>;
    static connectWithBatchClient(endpoint: string | HttpEndpoint, options?: Partial<HttpBatchClientOptions>): Promise<NomosArchwayClient>;
    static create(tmClient: TendermintClient): Promise<NomosArchwayClient>;
    static createSync(tmClient: TendermintClient): NomosArchwayClient;
    getBlockRewardsTracking(): Promise<BlockTracking>;
    getContractMetadata(contract: string): Promise<ContractMetadata | undefined>;
    getContractPremium(contract: string): Promise<ContractPremium>;
    getEstimateTxFees(gasLimit?: number, contractAddress?: string): Promise<EstimateTxFees>;
    getOutstandingRewards(rewardsAddress: string): Promise<OutstandingRewards>;
    getRewardsPool(): Promise<RewardsPool>;
    getAllRewardsRecords(rewardsAddress: string): Promise<readonly RewardsRecord[]>;
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nomos-docs.gitbook.io/v1/nomos-providers/archway-nomos-client.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
