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
24 changes: 0 additions & 24 deletions docs/bnb-opbnb/developers/multisig-wallet.md

This file was deleted.

36 changes: 36 additions & 0 deletions docs/bnb-smart-chain/developers/multisig-wallet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: BNB Chain Safe Multi-Sig Wallet Service
index: yes
---
# BNB Chain Safe Multi-Sig Wallet Service

Safe now supports BSC Mainnet and opBNB Mainnet. BNB Chain deployed a multi-sig wallet service on BSC Testnet, opBNB Testnet. It provides users with a secure and convenient way to manage their digital assets and transactions.

# How to Use the BNB Chain Multi-Sig Wallet Service

To use the BNB Chain multi-sig wallet service, connect with your own EOA wallet to start. Visit [https://multisig.bnbchain.org/welcome](https://multisig.bnbchain.org/welcome)

Read the [Safe Doc](https://docs.safe.global/getting-started/readme) for details.

# Safe Transaction Service API
To create or list safe transactions programmatically, use the Safe Transaction Service API. Here are the endpoints for the BSC testnet, opBNB testnet, BSC mainnet and opBNB mainnet:

Mainnet: [https://docs.safe.global/core-api/api-overview](https://docs.safe.global/core-api/api-overview)

Testnet:
- [https://safe-transaction-bsc-testnet.bnbchain.org/](https://safe-transaction-bsc-testnet.bnbchain.org/)
- [https://safe-transaction-opbnb-testnet.bnbchain.org/](https://safe-transaction-opbnb-testnet.bnbchain.org/)

## Example Usage

The Safe Transaction Service API is generic and can be used across different networks by simply changing the endpoint. Here's an example of how to query the service status on BSC testnet:

```bash
curl --location --request GET 'https://safe-transaction-bsc-testnet.bnbchain.org/api/v1/about/' \
--header 'accept: application/json' \
--header 'X-CSRFToken: YOUR_CSRF_TOKEN_HERE'
```

To use the same API on opBNB testnet, simply replace the endpoint with `https://safe-transaction-opbnb-testnet.bnbchain.org/`.

Read the [api-kit Doc](https://docs.safe.global/safe-core-aa-sdk/api-kit/reference) for details.
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ nav:
- Paymaster API Spec: ./bnb-smart-chain/developers/paymaster/paymaster-api.md
- Wallet Integration: ./bnb-smart-chain/developers/paymaster/wallet-integration.md
- Try Gasless Transaction: ./bnb-smart-chain/developers/paymaster/wallet-demo.md
- Multi-sig Wallet: ./bnb-smart-chain/developers/multisig-wallet.md
- Staking:
- Overview: ./bnb-smart-chain/staking/overview.md
- User Guide: ./bnb-smart-chain/staking/user-guide.md
Expand Down Expand Up @@ -169,7 +170,6 @@ nav:
- Developer Tools: ./bnb-opbnb/developers/developer-tools.md
- Network Faucet: ./bnb-opbnb/developers/network-faucet.md
- Wallet Gas Price Setting: ./bnb-opbnb/developers/set-gas-price.md
- Multi-sig Wallet: ./bnb-opbnb/developers/multisig-wallet.md
- BEP20 CrossChain Introduction: ./bnb-opbnb/developers/bep20-crosschain.md
- Geth P2P Sync Feature: ./bnb-opbnb/developers/geth-sync.md
- Developers Cheat Sheet: ./bnb-opbnb/developers/cheat-sheet.md
Expand Down