> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paycrest.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Gateway Contract Addresses

> Deployment addresses for Paycrest Gateway contracts across all supported networks

Paycrest Gateway contracts are deployed across multiple EVM-compatible networks. The table below shows all current deployments, including networks that may not yet be fully supported by the aggregator.

<Note>
  Networks marked as "Coming Soon" have contracts deployed but aggregator support is pending.
</Note>

## Deployment Addresses

| Network             | Chain ID  | Gateway Address                              | Status         |
| ------------------- | --------- | -------------------------------------------- | -------------- |
| **Ethereum**        | 1         | `0x8d2C0D398832b814e3814802FF2dC8b8eF4381e5` | ✅ Live         |
| **Base**            | 8453      | `0x30F6A8457F8E42371E204a9c103f2Bd42341dD0F` | ✅ Live         |
| **Polygon**         | 137       | `0xfB411Cc6385Af50A562aFCb441864E9d541CDA67` | ✅ Live         |
| **BNB Smart Chain** | 56        | `0x1FA0EE7F9410F6fa49B7AD5Da72Cf01647090028` | ✅ Live         |
| **Arbitrum One**    | 42161     | `0xE8bc3B607CfE68F47000E3d200310D49041148Fc` | ✅ Live         |
| **Lisk**            | 1135      | `0xff0E00E0110C1FBb5315D276243497b66D3a4d8a` | ✅ Live         |
| **Celo**            | 42220     | `0xF418217E3f81092eF44b81C5C8336e6A6fDB0E4b` | ✅ Live         |
| **Scroll**          | 534352    | `0x663C5BfE7d44bA946C2dd4b2D1Cf9580319F9338` | ✅ Live         |
| **Asset Chain**     | 42420     | `0xff0E00E0110C1FBb5315D276243497b66D3a4d8a` | 🚧 Coming Soon |
| **Optimism**        | 10        | `0xD293fCd3dBc025603911853d893A4724CF9f70a0` | 🚧 Coming Soon |
| **Starknet**        | —         | TBA                                          | 🚧 Coming Soon |
| **Tron**            | 728126428 | `THyFP5ST9YyLZn6EzjKjFhZti6aKPgEXNU`         | 🚧 Coming Soon |

## Network Status Legend

* **✅ Live**: Fully supported by the Paycrest aggregator
* **🚧 Coming Soon**: Contract deployed but aggregator support pending

## Contract Verification

All Gateway contracts are verified on their respective network block explorers:

* **Ethereum**: [Etherscan](https://etherscan.io/address/0x8d2C0D398832b814e3814802FF2dC8b8eF4381e5)
* **Base**: [Basescan](https://basescan.org/address/0x30F6A8457F8E42371E204a9c103f2Bd42341dD0F)
* **Polygon**: [Polygonscan](https://polygonscan.com/address/0xfB411Cc6385Af50A562aFCb441864E9d541CDA67)
* **BNB Smart Chain**: [Bscscan](https://bscscan.com/address/0x1FA0EE7F9410F6fa49B7AD5Da72Cf01647090028)
* **Arbitrum One**: [Arbiscan](https://arbiscan.io/address/0xE8bc3B607CfE68F47000E3d200310D49041148Fc)
* **Lisk**: [Lisk Explorer](https://explorer.lisk.com/address/0xff0E00E0110C1FBb5315D276243497b66D3a4d8a)
* **Celo**: [Celo Explorer](https://explorer.celo.org/address/0xF418217E3f81092eF44b81C5C8336e6A6fDB0E4b)
* **Scroll**: [Scrollscan](https://scrollscan.com/address/0x663C5BfE7d44bA946C2dd4b2D1Cf9580319F9338)
* **Asset Chain**: [Asset Chain Explorer](https://explorer.assetchain.org/address/0xff0E00E0110C1FBb5315D276243497b66D3a4d8a)
* **Optimism**: [Optimistic Etherscan](https://optimistic.etherscan.io/address/0xD293fCd3dBc025603911853d893A4724CF9f70a0)
* **Tron**: [Tronscan](https://tronscan.org/#/address/THyFP5ST9YyLZn6EzjKjFhZti6aKPgEXNU)

## Integration

To integrate with the Gateway contract directly, use the address for your target network:

```javascript theme={null}
import { getContract } from "viem";

// Example: Base network
const GATEWAY_ADDRESS = "0x30F6A8457F8E42371E204a9c103f2Bd42341dD0F";

const gateway = getContract({
  address: GATEWAY_ADDRESS,
  abi: GATEWAY_ABI,
  publicClient,
  walletClient
});
```

For detailed integration guides, see:

* **[Smart Contract Interaction](/implementation-guides/smart-contract-interaction)** — Direct contract integration
* **[Sender API Integration](/implementation-guides/sender-api-integration)** — API-based integration

<Note>
  Contract addresses vary by network. Always use the correct address for your target network and verify it on the block explorer before use. Check our [contracts repository](https://github.com/paycrest/contracts) for the latest deployment information.
</Note>
