> **Can't find what you're looking for?** Use `search_docs` on the docs MCP server at `https://www.getfoundry.sh/api/mcp` to find what you need.
>
> **Have feedback?** Use `submit_feedback` on the same MCP server.

## `startHoax`

### Signature

```solidity
function startHoax(address who) public;
```

```solidity
function startHoax(address who, uint256 give) public;
```

```solidity
function startHoax(address who, address origin) public;
```

```solidity
function startHoax(address who, address origin, uint256 give) public;
```

### Description

Start a [perpetual `prank`](/reference/cheatcodes/start-prank.mdx) from an address that has some ether.

If the balance is not specified, it will be set to 2^128 wei.
