> For the complete documentation index, see [llms.txt](https://andrewkimjoseph.gitbook.io/celina-sdk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://andrewkimjoseph.gitbook.io/celina-sdk/types/contractcallparams.md).

# ContractCallParams

[**@andrewkimjoseph/celina-sdk**](/celina-sdk/api-reference/api-reference.md)

***

[@andrewkimjoseph/celina-sdk](/celina-sdk/api-reference/api-reference.md) / [services/contract.service](https://github.com/andrewkimjoseph/celina-sdk/blob/main/docs/api-reference/services/contract.service/README.md) / ContractCallParams

## Interface: ContractCallParams

Defined in: [src/services/contract.service.ts:14](https://github.com/andrewkimjoseph/celina-sdk/blob/970ab720c805303ead8b20406c6579ecdcf2193a/src/services/contract.service.ts#L14)

Parameters for a read-only or gas-estimated contract call on Celo mainnet.

### Properties

#### abi

> **abi**: `Abi`

Defined in: [src/services/contract.service.ts:20](https://github.com/andrewkimjoseph/celina-sdk/blob/970ab720c805303ead8b20406c6579ecdcf2193a/src/services/contract.service.ts#L20)

Contract ABI JSON (must include `functionName`).

***

#### contractAddress

> **contractAddress**: `` `0x${string}` ``

Defined in: [src/services/contract.service.ts:16](https://github.com/andrewkimjoseph/celina-sdk/blob/970ab720c805303ead8b20406c6579ecdcf2193a/src/services/contract.service.ts#L16)

Target contract address.

***

#### fromAddress?

> `optional` **fromAddress?**: `` `0x${string}` ``

Defined in: [src/services/contract.service.ts:24](https://github.com/andrewkimjoseph/celina-sdk/blob/970ab720c805303ead8b20406c6579ecdcf2193a/src/services/contract.service.ts#L24)

Optional `msg.sender` for state-dependent view calls.

***

#### functionArgs?

> `optional` **functionArgs?**: `unknown`\[]

Defined in: [src/services/contract.service.ts:22](https://github.com/andrewkimjoseph/celina-sdk/blob/970ab720c805303ead8b20406c6579ecdcf2193a/src/services/contract.service.ts#L22)

Positional arguments for the function (default `[]`).

***

#### functionName

> **functionName**: `string`

Defined in: [src/services/contract.service.ts:18](https://github.com/andrewkimjoseph/celina-sdk/blob/970ab720c805303ead8b20406c6579ecdcf2193a/src/services/contract.service.ts#L18)

ABI function name to invoke.

***

#### value?

> `optional` **value?**: `string`

Defined in: [src/services/contract.service.ts:26](https://github.com/andrewkimjoseph/celina-sdk/blob/970ab720c805303ead8b20406c6579ecdcf2193a/src/services/contract.service.ts#L26)

Wei value as decimal string for payable calls (default `"0"`).


---

# 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://andrewkimjoseph.gitbook.io/celina-sdk/types/contractcallparams.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.
