diff --git a/docs/bnb-opbnb/developers/multisig-wallet.md b/docs/bnb-opbnb/developers/multisig-wallet.md deleted file mode 100644 index ed1b096918..0000000000 --- a/docs/bnb-opbnb/developers/multisig-wallet.md +++ /dev/null @@ -1,24 +0,0 @@ - ---- -title: BNB Chain Safe Multi-Sig Wallet Service -index: yes ---- -# BNB Chain Safe Multi-Sig Wallet Service - -BNB Chain deployed a multi-sig wallet service based on the Gnosis Safe protocol on opBNB mainnet, opBNB testnet and BSC testnet. It provides users with a secure and convenient way to manage their digital assets and transactions. -![img](../img/image-20231027125614827.png) - -# 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 opBNB testnet and opBNB mainnet: - -Testnet: [https://safe-transaction-opbnb-testnet.bnbchain.org/](https://safe-transaction-opbnb-testnet.bnbchain.org/) - -Mainnet: [https://safe-transaction-opbnb-mainnet.bnbchain.org/](https://safe-transaction-opbnb-mainnet.bnbchain.org/) - -Read the [api-kit Doc](https://docs.safe.global/safe-core-aa-sdk/api-kit/reference) for details. diff --git a/docs/bnb-smart-chain/developers/multisig-wallet.md b/docs/bnb-smart-chain/developers/multisig-wallet.md new file mode 100644 index 0000000000..6182734fa0 --- /dev/null +++ b/docs/bnb-smart-chain/developers/multisig-wallet.md @@ -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. diff --git a/mkdocs.yml b/mkdocs.yml index 84288a848a..13652988c3 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -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 @@ -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