> For the complete documentation index, see [llms.txt](https://tms-finance.gitbook.io/tms.finance/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tms-finance.gitbook.io/tms.finance/tms-contracts/what-to-do-if-your-contract-has-no-read-write-functions.md).

# What to Do If Your Contract Has No Read/Write Functions

If you open your contract on a block explorer and only see basic transfer functions (or no functions at all), your contract is a **proxy** that hasn't been linked to its implementation yet. Follow these steps to fix it.

***

### Step 1: Go to the Contract's Code Tab

1. Open your contract address on the block explorer (Etherscan, BscScan, etc.).
2. Click the **"Contract"** tab.
3. You should see some bytecode but no readable functions.

### Step 2: Verify It's a Proxy

1. On the Contract tab, look for a button or link that says **"Is this a proxy?"** or **"More Options" → "Is this a proxy?"**.
2. Click it.\
   \
   ![](/files/TjpG21ztKNXw4kF67bJ4)

### Step 3: Detect the Implementation Address

1. The explorer will attempt to detect the implementation contract address automatically.
2. If successful, it will display the implementation address. **Verify** that the address shown looks correct.
3. Click **"Verify"** or **"Save"** to confirm.

### Step 4: Access Read/Write as Proxy

1. Go back to the **"Contract"** tab.
2. You should now see two new tabs: **"Read as Proxy"** and **"Write as Proxy"**.
3. Use these tabs to interact with the contract as described in the other guides.

***

### Troubleshooting

* **"Is this a proxy?" not showing:** Make sure you are on the **Contract** tab, not the Transactions tab. On some explorers, it's under a **"More Options"** dropdown.
* **Functions still missing after verification:** Try refreshing the page. Some explorers take a minute to update.


---

# 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, and the optional `goal` query parameter:

```
GET https://tms-finance.gitbook.io/tms.finance/tms-contracts/what-to-do-if-your-contract-has-no-read-write-functions.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
