> For the complete documentation index, see [llms.txt](https://dev.stagemeta.world/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dev.stagemeta.world/reference/blockchain-smart-contract/plaque-price-method.md).

# Plaque Price Method

The `plaquePrice()` is a `public` method that allows users to get the current TPA price.

<pre class="language-solidity"><code class="lang-solidity"><strong>function plaquePrice() public view (uint256)
</strong></code></pre>

#### Input & Output

This method takes no input parameters. It returns a `uint256` value representing the current `TPA price` in wei.

#### Usage

To use this method in your web3 code, you can create a new instance of the StageMeta contract and call the `plaquePrice()` method like this:

```typescript
const tpaPriceWei = await stageMetaContract.plaquePrice()
console.log("TPA Price in eth:", utils.formatEther(tpaPriceWei));
```
