Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion apps/bend/content/developers/deployed-contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ head:

This is a list of addresses where contracts can be read from or written to.

> A full list of Contract ABIs can be found at https://github.com/berachain/doc-abis
> **Contract ABIs:**
>
> - **Mainnet ABIs:** [berachain/abis/tree/main/mainnet/contracts](https://github.com/berachain/abis/tree/main/mainnet/contracts)
> - **Testnet ABIs:** [berachain/abis/tree/main/bepolia/contracts](https://github.com/berachain/abis/tree/main/bepolia/contracts)

:::info
Deployed contracts have received several audits from various parties. All audit reports are publicly available on [Github](https://github.com/berachain/security-audits).
Expand Down
5 changes: 4 additions & 1 deletion apps/bex/content/developers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ For more information, see the [Balancer disclosure](https://forum.balancer.fi/t/

The following is a list of contract address in order to interact with Berachain BEX.

> A full list of Contract ABIs can be found at https://github.com/berachain/doc-abis
> **Contract ABIs:**
>
> - **Mainnet ABIs:** [berachain/abis/tree/main/mainnet/contracts](https://github.com/berachain/abis/tree/main/mainnet/contracts)
> - **Testnet ABIs:** [berachain/abis/tree/main/bepolia/contracts](https://github.com/berachain/abis/tree/main/bepolia/contracts)

## Mainnet Contracts

Expand Down
9 changes: 6 additions & 3 deletions apps/core/content/developers/deployed-contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ head:

This is a list of addresses where contracts can be read from or written to.

> A full list of Contract ABIs can be found at https://github.com/berachain/doc-abis
> **Contract ABIs:**
>
> - **Mainnet ABIs:** [berachain/abis/tree/main/mainnet/contracts](https://github.com/berachain/abis/tree/main/mainnet/contracts)
> - **Testnet ABIs:** [berachain/abis/tree/main/bepolia/contracts](https://github.com/berachain/abis/tree/main/bepolia/contracts)

:::info
Deployed contracts have received several audits from various parties.
Expand Down Expand Up @@ -57,7 +60,7 @@ const testnet_render_groups = {
<td>
<a target="_blank" :href="config.websites.berascan.url + 'address/' + sc['address']['berachainMainnet']">{{sc['address']['berachainMainnet']}}</a>
</td>
<td><template v-if="sc?.abi"><a :href="sc.abi">ABI</a></template></td>
<td><template v-if="sc?.abi"><a :href="sc.abi">ABI</a></template><template v-else-if="sc?.abiNote">{{ sc.abiNote }}</template></td>
</tr>
</template>
</template>
Expand All @@ -80,7 +83,7 @@ const testnet_render_groups = {
<td>
<a target="_blank" :href="config.websites.berascanBepolia.url + 'address/' + sc['address']['berachainBepolia']">{{sc['address']['berachainBepolia']}}</a>
</td>
<td><template v-if="sc?.abi"><a :href="sc.abi">ABI</a></template></td>
<td><template v-if="sc?.abi"><a :href="sc.abi">ABI</a></template><template v-else-if="sc?.abiNote">{{ sc.abiNote }}</template></td>
</tr>
</template>
</template>
Expand Down
4 changes: 4 additions & 0 deletions apps/core/content/learn/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Berachain Improvement Proposals (BRIPs) are welcome from anyone, by [contributin

Below are important changes shipped to Berachain.

## January 2026

**ABI repository migration** – Updated all contract ABI references to the new [abis repository](https://github.com/berachain/abis). See [Deployed Contracts](/developers/deployed-contracts) for the full list.

## December 2025

**Reward allocation documentation updates** – Updated [BeraChef reward allocation documentation](/learn/pol/blockrewards#berachef-reward-allocation-management) to clarify the automated cutting board mechanism.
Expand Down
Loading