├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── SUPPORT.md ├── docs ├── build-on-opbnb │ ├── bep20-crosschain.md │ ├── deposit-to-opbnb.md │ ├── developer-cheat-sheet.md │ ├── developer-tools.md │ ├── geth-sync.md │ ├── getting-started.md │ ├── multisig-wallet.md │ ├── network-faucet.md │ ├── opbnb-network-info.md │ ├── set-gas-price.md │ ├── wallet-configuration.md │ └── withdraw-from-opbnb.md ├── contact.md ├── contribute.md ├── core-concepts │ ├── account-abstraction-on-opbnb.md │ ├── architecture.md │ ├── challenger.md │ ├── cross-chain.md │ ├── difference-BSC-Eth.md │ ├── difference-L2.md │ ├── gas-and-fees.md │ ├── need-for-opbnb.md │ ├── opbnb-contracts.md │ ├── optimisations-on-opstack.md │ ├── raas.md │ └── why-opstack.md ├── faq │ ├── build-on-opbnb-faqs.md │ ├── cross-chain-faqs.md │ ├── gas-and-fees-faqs.md │ ├── opbnb-bridge-faqs.md │ ├── opbnb-faq.md │ └── protocol-faqs.md ├── intro.md ├── intro │ └── why-opbnb.md ├── monitor │ └── rpc_nodes.json ├── tech-specs │ ├── censorship-resistence.md │ ├── parameters.md │ ├── plans.md │ └── solidity-difference.md └── tutorials │ ├── chain-configuration.md │ ├── creating-your-own-l2-rollup-testnet.md │ ├── full-stack-dapp.md │ ├── opbnbscan-verify-hardhat-truffle.md │ ├── pbss-pebble.md │ ├── run-nodes-best-practices.md │ ├── running-a-local-development-environment.md │ └── running-a-local-node.md ├── docusaurus.config.js ├── package.json ├── sidebars.js ├── src ├── components │ └── HomepageFeatures │ │ ├── index.js │ │ └── styles.module.css ├── css │ └── custom.css └── pages │ ├── index.js │ ├── index.module.css │ └── markdown-page.md ├── static ├── .nojekyll ├── image-20231103144553832.png └── img │ ├── 74pMzvad03dbTmcQx6wGiGfqlfrtWzhxUBRUYooy5vcwtfbjVbKlK71mknIozAWagJz6NFsoBqjIiClFbd_0KrpSsuIY5qs6h81XLGsqvAV-Gsh4CPOLCqmfIOCYUxe1kPri8US7jPEfy_aJFmGwIJQ.png │ ├── D63yQpYlnLUseqSJWf403Go4mrRaSQWM6LJ6EMsX6lJJH2BXlBEmy342JJp3hTW08mcjyClg4X6UmAOCTiTt1Hoq8APLdbyx8Z7UKtf0IYYYrwy5ZPtfcLv5LHgvEY7BXoLD6jUUlOnfe27gP0QhmEs.png │ ├── L1-L2.png │ ├── LlvtsQFvpzHkXr6s3aWyOLW6agzcChIOW3xx1sakQJRRSP448OS2Q7jdDGTLS77Ve6gbAZuHrMu16CqVavhpduOerSJCXvR70RZ6HLe03UhYyHtfHd9HqChc55XLdrG9Ogq922OCUt2Wk64wbmYawG0.png │ ├── add-bsc-metamask.png │ ├── add-bsc-trustwallet.png │ ├── advanced-setting.png │ ├── banner.png │ ├── bridge-supported-tokens.png │ ├── bsc-testnet-config.png │ ├── docusaurus.png │ ├── evm-state-data-access-optimization.png │ ├── faqs │ ├── Withdraw-confirmation.png │ ├── bridge-estimate.png │ ├── mm-balance-mismatch.png │ ├── wallet-estimate.png │ └── zkBridge_issue.png │ ├── faucet-tbnb.png │ ├── favicon.ico │ ├── gas-price-setting.png │ ├── image-20231027125614827.png │ ├── logo.svg │ ├── online-faucet-bnb.png │ ├── opBNB-arch.png │ ├── opBNB-bridge.png │ ├── opBNB-deploy-contract.PNG │ ├── opBNB-intro.png │ ├── opBNB-testnet-config.png │ ├── opbnb-connect-wallet.PNG │ ├── opbnb-helloworld-ui-2.PNG │ ├── opbnb-helloworld-ui.PNG │ ├── opbnb-metamask-tx.PNG │ ├── pool-sharing.png │ ├── prefetch.png │ ├── tutorial │ ├── docsVersionDropdown.png │ └── localeDropdown.png │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ ├── undraw_docusaurus_tree.svg │ ├── why-opbnb-tx-stats.png │ ├── withdraw-confirm-details.png │ ├── withdraw-confirm.png │ ├── withdraw-status.png │ └── withdraw.png └── yarn.lock /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | opbnb.bnbchain.org 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/bep20-crosschain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/bep20-crosschain.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/deposit-to-opbnb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/deposit-to-opbnb.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/developer-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/developer-cheat-sheet.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/developer-tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/developer-tools.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/geth-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/geth-sync.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/getting-started.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/multisig-wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/multisig-wallet.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/network-faucet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/network-faucet.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/opbnb-network-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/opbnb-network-info.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/set-gas-price.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/set-gas-price.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/wallet-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/wallet-configuration.md -------------------------------------------------------------------------------- /docs/build-on-opbnb/withdraw-from-opbnb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/build-on-opbnb/withdraw-from-opbnb.md -------------------------------------------------------------------------------- /docs/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/contact.md -------------------------------------------------------------------------------- /docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/contribute.md -------------------------------------------------------------------------------- /docs/core-concepts/account-abstraction-on-opbnb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/account-abstraction-on-opbnb.md -------------------------------------------------------------------------------- /docs/core-concepts/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/architecture.md -------------------------------------------------------------------------------- /docs/core-concepts/challenger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/challenger.md -------------------------------------------------------------------------------- /docs/core-concepts/cross-chain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/cross-chain.md -------------------------------------------------------------------------------- /docs/core-concepts/difference-BSC-Eth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/difference-BSC-Eth.md -------------------------------------------------------------------------------- /docs/core-concepts/difference-L2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/difference-L2.md -------------------------------------------------------------------------------- /docs/core-concepts/gas-and-fees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/gas-and-fees.md -------------------------------------------------------------------------------- /docs/core-concepts/need-for-opbnb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/need-for-opbnb.md -------------------------------------------------------------------------------- /docs/core-concepts/opbnb-contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/opbnb-contracts.md -------------------------------------------------------------------------------- /docs/core-concepts/optimisations-on-opstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/optimisations-on-opstack.md -------------------------------------------------------------------------------- /docs/core-concepts/raas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/raas.md -------------------------------------------------------------------------------- /docs/core-concepts/why-opstack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/core-concepts/why-opstack.md -------------------------------------------------------------------------------- /docs/faq/build-on-opbnb-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/faq/build-on-opbnb-faqs.md -------------------------------------------------------------------------------- /docs/faq/cross-chain-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/faq/cross-chain-faqs.md -------------------------------------------------------------------------------- /docs/faq/gas-and-fees-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/faq/gas-and-fees-faqs.md -------------------------------------------------------------------------------- /docs/faq/opbnb-bridge-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/faq/opbnb-bridge-faqs.md -------------------------------------------------------------------------------- /docs/faq/opbnb-faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/faq/opbnb-faq.md -------------------------------------------------------------------------------- /docs/faq/protocol-faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/faq/protocol-faqs.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/intro.md -------------------------------------------------------------------------------- /docs/intro/why-opbnb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/intro/why-opbnb.md -------------------------------------------------------------------------------- /docs/monitor/rpc_nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/monitor/rpc_nodes.json -------------------------------------------------------------------------------- /docs/tech-specs/censorship-resistence.md: -------------------------------------------------------------------------------- 1 | # The sequencer and censorship resistance mechanism 2 | -------------------------------------------------------------------------------- /docs/tech-specs/parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tech-specs/parameters.md -------------------------------------------------------------------------------- /docs/tech-specs/plans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tech-specs/plans.md -------------------------------------------------------------------------------- /docs/tech-specs/solidity-difference.md: -------------------------------------------------------------------------------- 1 | # Solidity differences from Ethereum and BSC -------------------------------------------------------------------------------- /docs/tutorials/chain-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tutorials/chain-configuration.md -------------------------------------------------------------------------------- /docs/tutorials/creating-your-own-l2-rollup-testnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tutorials/creating-your-own-l2-rollup-testnet.md -------------------------------------------------------------------------------- /docs/tutorials/full-stack-dapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tutorials/full-stack-dapp.md -------------------------------------------------------------------------------- /docs/tutorials/opbnbscan-verify-hardhat-truffle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tutorials/opbnbscan-verify-hardhat-truffle.md -------------------------------------------------------------------------------- /docs/tutorials/pbss-pebble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tutorials/pbss-pebble.md -------------------------------------------------------------------------------- /docs/tutorials/run-nodes-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tutorials/run-nodes-best-practices.md -------------------------------------------------------------------------------- /docs/tutorials/running-a-local-development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tutorials/running-a-local-development-environment.md -------------------------------------------------------------------------------- /docs/tutorials/running-a-local-node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docs/tutorials/running-a-local-node.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/src/pages/markdown-page.md -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/image-20231103144553832.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/image-20231103144553832.png -------------------------------------------------------------------------------- /static/img/74pMzvad03dbTmcQx6wGiGfqlfrtWzhxUBRUYooy5vcwtfbjVbKlK71mknIozAWagJz6NFsoBqjIiClFbd_0KrpSsuIY5qs6h81XLGsqvAV-Gsh4CPOLCqmfIOCYUxe1kPri8US7jPEfy_aJFmGwIJQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/74pMzvad03dbTmcQx6wGiGfqlfrtWzhxUBRUYooy5vcwtfbjVbKlK71mknIozAWagJz6NFsoBqjIiClFbd_0KrpSsuIY5qs6h81XLGsqvAV-Gsh4CPOLCqmfIOCYUxe1kPri8US7jPEfy_aJFmGwIJQ.png -------------------------------------------------------------------------------- /static/img/D63yQpYlnLUseqSJWf403Go4mrRaSQWM6LJ6EMsX6lJJH2BXlBEmy342JJp3hTW08mcjyClg4X6UmAOCTiTt1Hoq8APLdbyx8Z7UKtf0IYYYrwy5ZPtfcLv5LHgvEY7BXoLD6jUUlOnfe27gP0QhmEs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/D63yQpYlnLUseqSJWf403Go4mrRaSQWM6LJ6EMsX6lJJH2BXlBEmy342JJp3hTW08mcjyClg4X6UmAOCTiTt1Hoq8APLdbyx8Z7UKtf0IYYYrwy5ZPtfcLv5LHgvEY7BXoLD6jUUlOnfe27gP0QhmEs.png -------------------------------------------------------------------------------- /static/img/L1-L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/L1-L2.png -------------------------------------------------------------------------------- /static/img/LlvtsQFvpzHkXr6s3aWyOLW6agzcChIOW3xx1sakQJRRSP448OS2Q7jdDGTLS77Ve6gbAZuHrMu16CqVavhpduOerSJCXvR70RZ6HLe03UhYyHtfHd9HqChc55XLdrG9Ogq922OCUt2Wk64wbmYawG0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/LlvtsQFvpzHkXr6s3aWyOLW6agzcChIOW3xx1sakQJRRSP448OS2Q7jdDGTLS77Ve6gbAZuHrMu16CqVavhpduOerSJCXvR70RZ6HLe03UhYyHtfHd9HqChc55XLdrG9Ogq922OCUt2Wk64wbmYawG0.png -------------------------------------------------------------------------------- /static/img/add-bsc-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/add-bsc-metamask.png -------------------------------------------------------------------------------- /static/img/add-bsc-trustwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/add-bsc-trustwallet.png -------------------------------------------------------------------------------- /static/img/advanced-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/advanced-setting.png -------------------------------------------------------------------------------- /static/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/banner.png -------------------------------------------------------------------------------- /static/img/bridge-supported-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/bridge-supported-tokens.png -------------------------------------------------------------------------------- /static/img/bsc-testnet-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/bsc-testnet-config.png -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/evm-state-data-access-optimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/evm-state-data-access-optimization.png -------------------------------------------------------------------------------- /static/img/faqs/Withdraw-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/faqs/Withdraw-confirmation.png -------------------------------------------------------------------------------- /static/img/faqs/bridge-estimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/faqs/bridge-estimate.png -------------------------------------------------------------------------------- /static/img/faqs/mm-balance-mismatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/faqs/mm-balance-mismatch.png -------------------------------------------------------------------------------- /static/img/faqs/wallet-estimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/faqs/wallet-estimate.png -------------------------------------------------------------------------------- /static/img/faqs/zkBridge_issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/faqs/zkBridge_issue.png -------------------------------------------------------------------------------- /static/img/faucet-tbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/faucet-tbnb.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/gas-price-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/gas-price-setting.png -------------------------------------------------------------------------------- /static/img/image-20231027125614827.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/image-20231027125614827.png -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/online-faucet-bnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/online-faucet-bnb.png -------------------------------------------------------------------------------- /static/img/opBNB-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opBNB-arch.png -------------------------------------------------------------------------------- /static/img/opBNB-bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opBNB-bridge.png -------------------------------------------------------------------------------- /static/img/opBNB-deploy-contract.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opBNB-deploy-contract.PNG -------------------------------------------------------------------------------- /static/img/opBNB-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opBNB-intro.png -------------------------------------------------------------------------------- /static/img/opBNB-testnet-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opBNB-testnet-config.png -------------------------------------------------------------------------------- /static/img/opbnb-connect-wallet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opbnb-connect-wallet.PNG -------------------------------------------------------------------------------- /static/img/opbnb-helloworld-ui-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opbnb-helloworld-ui-2.PNG -------------------------------------------------------------------------------- /static/img/opbnb-helloworld-ui.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opbnb-helloworld-ui.PNG -------------------------------------------------------------------------------- /static/img/opbnb-metamask-tx.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/opbnb-metamask-tx.PNG -------------------------------------------------------------------------------- /static/img/pool-sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/pool-sharing.png -------------------------------------------------------------------------------- /static/img/prefetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/prefetch.png -------------------------------------------------------------------------------- /static/img/tutorial/docsVersionDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/tutorial/docsVersionDropdown.png -------------------------------------------------------------------------------- /static/img/tutorial/localeDropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/tutorial/localeDropdown.png -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /static/img/why-opbnb-tx-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/why-opbnb-tx-stats.png -------------------------------------------------------------------------------- /static/img/withdraw-confirm-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/withdraw-confirm-details.png -------------------------------------------------------------------------------- /static/img/withdraw-confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/withdraw-confirm.png -------------------------------------------------------------------------------- /static/img/withdraw-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/withdraw-status.png -------------------------------------------------------------------------------- /static/img/withdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/static/img/withdraw.png -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zikc2023/opbnb-docs/HEAD/yarn.lock --------------------------------------------------------------------------------