> For the complete documentation index, see [llms.txt](https://waxdao.gitbook.io/wax-smart-contract-development-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://waxdao.gitbook.io/wax-smart-contract-development-guide/tips-and-tricks/readonly-actions.md).

# Readonly Actions

Readonly actions work just like action return values, but in my opinion they are even cooler.

1. You don't need any session or private key to sign them.
2. The transaction does not actually get submitted on-chain, consuming 0 CPU from your wallet. All it does is simulate the transaction, and return the data.

Here's an example implementation using Wharfkit.

```javascript
const { ContractKit } = require("@wharfkit/contract")
const { APIClient } = require("@wharfkit/antelope")

const contractKit = new ContractKit({
  client: new APIClient({ url: "https://api.waxdaobp.io" })
});

const USER = "someuser"
const FARM_NAME = "somefarm"
let claimable_balances = []

const showRewards = async () => {

    try { 

      const contract = await contractKit.load("tf.waxdao")

      const result = await contract.readonly('showreward', {
            user: USER,
            farm_name: FARM_NAME
      })                          

      claimable_balances = result
       
    } catch (e) {
        console.log(`error in showreward action: ${e}`);
    }
};

showRewards();
```

And here is the contract action.

```cpp
[[eosio::action, eosio::read_only]]
vector<extended_asset> tokenstaking::showreward(const name& user, const name& farm_name){
	farm_struct farm = get_farm( farm_name );
	vector<reward_struct> rs = get_rewards( farm_name );
	staker_struct staker = get_staker( user, farm_name );
	mass_update_rewards( farm, rs );
	update_staker_rewards( staker, rs );
	vector<extended_asset> pending_rewards;

	for( auto& b : staker.claimable_balances ){
		if( b.quantity.amount > 0){
			pending_rewards.push_back( b );
		}
	}

	return pending_rewards;
}
```

This will return a list of pending rewards for a user, so they can be displayed on a front end etc. All without any special front end math, and without submitting a transaction on chain!


---

# 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://waxdao.gitbook.io/wax-smart-contract-development-guide/tips-and-tricks/readonly-actions.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.
