├── .github └── workflows │ ├── deploy.yml │ └── test-deploy.yml ├── .gitignore ├── .nojekyll ├── CNAME ├── README.md ├── crowdin.yml ├── docs ├── CNAME ├── CoreIgnition │ ├── FAQs.md │ ├── Mechanics.md │ └── Overview.md ├── Dev-Guide │ ├── bridge-with-layerzero.md │ ├── contract-verify.md │ ├── core-bridge-resources.md │ ├── core-explorer.md │ ├── core-faucet.md │ ├── core-mainnet-wallet-config.md │ ├── core-subgraph.md │ ├── core-testnet-wallet-config.md │ ├── core-wallet-config.md │ ├── dapp-on-core.md │ ├── dev-tools.md │ ├── erc20-tokens.md │ ├── erc721-tokens.md │ ├── foundry.md │ ├── hardhat.md │ ├── network-config.md │ ├── precompile-addresses.md │ ├── remix.md │ ├── rpc-cli.md │ ├── rpc-list.md │ ├── rpc-postman.md │ └── smart-contract-guidelines.md ├── FAQs │ ├── LST-stCore-faqs.md │ ├── btc-staking-faqs.md │ ├── core-api-faqs.md │ ├── core-faqs.md │ ├── core-node-faqs.md │ ├── coreBTC-faqs.md │ ├── delegator-faqs.md │ ├── dual-staking-faqs.md │ └── validator-faqs.md ├── Learn │ ├── audit.md │ ├── bug-reporting.md │ ├── core-concepts │ │ ├── architecture.md │ │ ├── overview.md │ │ └── satoshi-plus-consensus │ │ │ ├── BitcoinStaking.md │ │ │ ├── DPoS.md │ │ │ ├── DPoW.md │ │ │ ├── components.md │ │ │ ├── rewards.md │ │ │ ├── security.md │ │ │ └── validator-election.md │ ├── economics │ │ └── core-token │ │ │ └── tokenomics-and-utility.md │ ├── governance.md │ ├── introduction │ │ ├── quickstart.md │ │ ├── what-is-core-chain.md │ │ └── why-core-chain.md │ └── products │ │ ├── btc-staking │ │ ├── Redeeming-Guide.md │ │ ├── btc-staking-working.md │ │ ├── design.md │ │ ├── dual-staking-guide.md │ │ ├── faqs-btc-staking.md │ │ ├── overview.md │ │ └── stake-btc-guide.md │ │ ├── coreBTC │ │ ├── design.md │ │ ├── how-to-guides.md │ │ └── overview.md │ │ ├── lstBTC │ │ └── overview.md │ │ └── stCore │ │ ├── design.md │ │ ├── overview.md │ │ └── stCore-on-Core.md ├── Node │ ├── Full-Node │ │ ├── on-mainnet.md │ │ └── on-testnet.md │ ├── config │ │ ├── archive-node-config.md │ │ ├── full-node.md │ │ ├── rpc-node-config.md │ │ ├── snapshot-node-config.md │ │ └── validator-node-config.md │ ├── maintenance │ │ ├── maintenance.md │ │ └── network-upgrade.md │ ├── overview.md │ ├── slashing │ │ ├── overview.md │ │ └── slashing-fee.md │ ├── sync │ │ └── snapshot-sync.md │ └── validator │ │ ├── overview.md │ │ ├── rewards.md │ │ ├── setting-up-validator.md │ │ ├── validator-election.md │ │ └── validator-register.md ├── api │ ├── api-documents │ │ ├── accounts.md │ │ ├── blocks.md │ │ ├── contracts.md │ │ ├── geth-proxy.md │ │ ├── statistics.md │ │ └── transactions.md │ ├── api.md │ ├── assets │ │ ├── image(1).png │ │ ├── image(10).png │ │ ├── image(2).png │ │ ├── image(3).png │ │ ├── image(4).png │ │ ├── image(5).png │ │ ├── image(6).png │ │ ├── image(7).png │ │ ├── image(8).png │ │ ├── image(9).png │ │ └── image.png │ ├── mainnet.yaml │ ├── mainnet │ │ ├── check-proxy-contract-verification-status-using-get.api.mdx │ │ ├── estimate-gas-using-get.api.mdx │ │ ├── eth-call-using-get.api.mdx │ │ ├── get-balance-using-get.api.mdx │ │ ├── get-block-by-number-using-get.api.mdx │ │ ├── get-block-number-by-timestamp-using-get.api.mdx │ │ ├── get-block-number-using-get.api.mdx │ │ ├── get-block-rewards-by-block-number-using-get.api.mdx │ │ ├── get-block-transaction-count-by-number-using-get.api.mdx │ │ ├── get-code-using-get.api.mdx │ │ ├── get-contract-abi-using-get.api.mdx │ │ ├── get-contract-source-code-using-get.api.mdx │ │ ├── get-erc-20-transfers-by-address-using-get.api.mdx │ │ ├── get-erc-721-transfers-by-address-using-get.api.mdx │ │ ├── get-estimated-block-countdown-time-using-get.api.mdx │ │ ├── get-gas-price-using-get.api.mdx │ │ ├── get-internal-tx-by-block-range-using-get.api.mdx │ │ ├── get-internal-tx-by-tx-hash-using-get.api.mdx │ │ ├── get-last-core-price-using-get.api.mdx │ │ ├── get-list-of-validators-using-get.api.mdx │ │ ├── get-mined-blocks-by-address-using-get.api.mdx │ │ ├── get-storage-at-using-get.api.mdx │ │ ├── get-total-core-supply-using-get.api.mdx │ │ ├── get-transaction-by-block-number-and-index-using-get.api.mdx │ │ ├── get-transaction-by-hash-using-get.api.mdx │ │ ├── get-transaction-count-using-get.api.mdx │ │ ├── get-transaction-receipt-status-using-get.api.mdx │ │ ├── get-transaction-receipt-using-get.api.mdx │ │ ├── get-tx-list-by-address-using-get.api.mdx │ │ ├── send-raw-transaction-using-get.api.mdx │ │ ├── sidebar.ts │ │ ├── verify-proxy-contract-curl-using-post.api.mdx │ │ ├── verify-proxy-contract-using-post.api.mdx │ │ └── verify-source-code-using-post.api.mdx │ ├── testnet.yaml │ ├── testnet │ │ ├── api-documentation.info.mdx │ │ ├── check-proxy-contract-verification-status-using-get.api.mdx │ │ ├── estimate-gas-using-get.api.mdx │ │ ├── eth-call-using-get.api.mdx │ │ ├── get-balance-using-get.api.mdx │ │ ├── get-block-by-number-using-get.api.mdx │ │ ├── get-block-number-by-timestamp-using-get.api.mdx │ │ ├── get-block-number-using-get.api.mdx │ │ ├── get-block-rewards-by-block-number-using-get.api.mdx │ │ ├── get-block-transaction-count-by-number-using-get.api.mdx │ │ ├── get-code-using-get.api.mdx │ │ ├── get-contract-abi-using-get.api.mdx │ │ ├── get-contract-source-code-using-get.api.mdx │ │ ├── get-erc-20-transfers-by-address-using-get.api.mdx │ │ ├── get-erc-721-transfers-by-address-using-get.api.mdx │ │ ├── get-estimated-block-countdown-time-using-get.api.mdx │ │ ├── get-gas-price-using-get.api.mdx │ │ ├── get-internal-tx-by-block-range-using-get.api.mdx │ │ ├── get-internal-tx-by-tx-hash-using-get.api.mdx │ │ ├── get-last-core-price-using-get.api.mdx │ │ ├── get-list-of-validators-using-get.api.mdx │ │ ├── get-mined-blocks-by-address-using-get.api.mdx │ │ ├── get-storage-at-using-get.api.mdx │ │ ├── get-total-core-supply-using-get.api.mdx │ │ ├── get-transaction-by-block-number-and-index-using-get.api.mdx │ │ ├── get-transaction-by-hash-using-get.api.mdx │ │ ├── get-transaction-count-using-get.api.mdx │ │ ├── get-transaction-receipt-status-using-get.api.mdx │ │ ├── get-transaction-receipt-using-get.api.mdx │ │ ├── get-tx-list-by-address-using-get.api.mdx │ │ ├── send-raw-transaction-using-get.api.mdx │ │ ├── sidebar.ts │ │ ├── verify-proxy-contract-curl-using-post.api.mdx │ │ ├── verify-proxy-contract-using-post.api.mdx │ │ └── verify-source-code-using-post.api.mdx │ └── tutorials │ │ ├── common-error-messages.md │ │ ├── creating-an-account.md │ │ └── generate-an-api-key.md ├── intro.md ├── stake-and-delegate │ ├── delegating-core.md │ ├── delegating-hash.md │ ├── delegators.md │ ├── dual-staking-working.md │ ├── dual-staking.md │ └── staking-overview.md └── stakingAPI │ ├── mainnet │ ├── core-staking-api.info.mdx │ ├── retrieve-btc-staking-status.api.mdx │ ├── retrieve-btc-staking-transactions.api.mdx │ ├── retrieve-collected-and-pending-rewards.api.mdx │ ├── retrieve-current-dual-staking-grade.api.mdx │ ├── retrieve-full-list-of-btc-staking-transactions.api.mdx │ ├── retrieve-latest-staking-round.api.mdx │ ├── retrieve-overall-staking-data-on-core-blockchain.api.mdx │ ├── retrieve-reward-claim-history.api.mdx │ ├── retrieve-reward-distribution-of-a-round.api.mdx │ ├── retrieve-staking-summary.api.mdx │ ├── retrieve-validator-details.api.mdx │ ├── sidebar.ts │ └── submit-redeem-script-for-staking-transaction.api.mdx │ ├── swagger │ ├── mainnet.yaml │ └── testnet.yaml │ └── testnet │ ├── core-staking-api.info.mdx │ ├── retrieve-btc-staking-status.api.mdx │ ├── retrieve-btc-staking-transactions.api.mdx │ ├── retrieve-collected-and-pending-rewards.api.mdx │ ├── retrieve-current-dual-staking-grade.api.mdx │ ├── retrieve-full-list-of-btc-staking-transactions.api.mdx │ ├── retrieve-latest-staking-round.api.mdx │ ├── retrieve-overall-staking-data-on-core-blockchain.api.mdx │ ├── retrieve-reward-claim-history.api.mdx │ ├── retrieve-reward-distribution-of-a-round.api.mdx │ ├── retrieve-staking-summary.api.mdx │ ├── retrieve-validator-details.api.mdx │ ├── sidebar.ts │ └── submit-redeem-script-for-staking-transaction.api.mdx ├── docusaurus.config.ts ├── i18n ├── en │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ └── current.json │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json ├── es │ ├── code.json │ ├── docusaurus-plugin-content-blog │ │ └── options.json │ ├── docusaurus-plugin-content-docs │ │ ├── current.json │ │ └── current │ │ │ ├── CoreIgnition │ │ │ ├── FAQs.md │ │ │ ├── Mechanics.md │ │ │ └── Overview.md │ │ │ ├── Dev-Guide │ │ │ ├── bridge-with-layerzero.md │ │ │ ├── contract-verify.md │ │ │ ├── core-bridge-resources.md │ │ │ ├── core-explorer.md │ │ │ ├── core-faucet.md │ │ │ ├── core-mainnet-wallet-config.md │ │ │ ├── core-subgraph.md │ │ │ ├── core-testnet-wallet-config.md │ │ │ ├── core-wallet-config.md │ │ │ ├── dapp-on-core.md │ │ │ ├── dev-tools.md │ │ │ ├── erc20-tokens.md │ │ │ ├── erc721-tokens.md │ │ │ ├── foundry.md │ │ │ ├── hardhat.md │ │ │ ├── network-config.md │ │ │ ├── precompile-addresses.md │ │ │ ├── remix.md │ │ │ ├── rpc-cli.md │ │ │ ├── rpc-list.md │ │ │ ├── rpc-postman.md │ │ │ └── smart-contract-guidelines.md │ │ │ ├── FAQs │ │ │ ├── btc-staking-faqs.md │ │ │ ├── core-api-faqs.md │ │ │ ├── core-faqs.md │ │ │ ├── core-node-faqs.md │ │ │ ├── coreBTC-faqs.md │ │ │ ├── delegator-faqs.md │ │ │ ├── dual-staking-faqs.md │ │ │ └── validator-faqs.md │ │ │ ├── Learn │ │ │ ├── audit.md │ │ │ ├── bug-reporting.md │ │ │ ├── core-concepts │ │ │ │ ├── architecture.md │ │ │ │ ├── overview.md │ │ │ │ └── satoshi-plus-consensus │ │ │ │ │ ├── BitcoinStaking.md │ │ │ │ │ ├── DPoS.md │ │ │ │ │ ├── DPoW.md │ │ │ │ │ ├── components.md │ │ │ │ │ ├── rewards.md │ │ │ │ │ ├── security.md │ │ │ │ │ └── validator-election.md │ │ │ ├── economics │ │ │ │ └── core-token │ │ │ │ │ └── tokenomics-and-utility.md │ │ │ ├── governance.md │ │ │ ├── introduction │ │ │ │ ├── quickstart.md │ │ │ │ ├── what-is-core-chain.md │ │ │ │ └── why-core-chain.md │ │ │ └── products │ │ │ │ ├── btc-staking │ │ │ │ ├── Redeeming-Guide.md │ │ │ │ ├── btc-staking-working.md │ │ │ │ ├── design.md │ │ │ │ ├── dual-staking-guide.md │ │ │ │ ├── faqs-btc-staking.md │ │ │ │ ├── overview.md │ │ │ │ └── stake-btc-guide.md │ │ │ │ ├── coreBTC │ │ │ │ ├── design.md │ │ │ │ ├── how-to-guides.md │ │ │ │ └── overview.md │ │ │ │ ├── lstBTC │ │ │ │ └── overview.md │ │ │ │ └── stCore │ │ │ │ ├── design.md │ │ │ │ ├── overview.md │ │ │ │ └── stCore-on-Core.md │ │ │ ├── Node │ │ │ ├── Full-Node │ │ │ │ ├── on-mainnet.md │ │ │ │ └── on-testnet.md │ │ │ ├── config │ │ │ │ ├── archive-node-config.md │ │ │ │ ├── full-node.md │ │ │ │ ├── rpc-node-config.md │ │ │ │ ├── snapshot-node-config.md │ │ │ │ └── validator-node-config.md │ │ │ ├── maintenance │ │ │ │ ├── maintenance.md │ │ │ │ └── network-upgrade.md │ │ │ ├── overview.md │ │ │ ├── slashing │ │ │ │ ├── overview.md │ │ │ │ └── slashing-fee.md │ │ │ ├── sync │ │ │ │ └── snapshot-sync.md │ │ │ └── validator │ │ │ │ ├── overview.md │ │ │ │ ├── rewards.md │ │ │ │ ├── running-validator.md │ │ │ │ ├── setting-up-validator.md │ │ │ │ ├── validator-election.md │ │ │ │ └── validator-register.md │ │ │ ├── api │ │ │ ├── assets │ │ │ │ ├── image(1).png │ │ │ │ ├── image(10).png │ │ │ │ ├── image(2).png │ │ │ │ ├── image(3).png │ │ │ │ ├── image(4).png │ │ │ │ ├── image(5).png │ │ │ │ ├── image(6).png │ │ │ │ ├── image(7).png │ │ │ │ ├── image(8).png │ │ │ │ ├── image(9).png │ │ │ │ └── image.png │ │ │ ├── mainnet.yaml │ │ │ ├── mainnet │ │ │ │ ├── check-proxy-contract-verification-status-using-get.api.mdx │ │ │ │ ├── estimate-gas-using-get.api.mdx │ │ │ │ ├── eth-call-using-get.api.mdx │ │ │ │ ├── get-balance-using-get.api.mdx │ │ │ │ ├── get-block-by-number-using-get.api.mdx │ │ │ │ ├── get-block-number-by-timestamp-using-get.api.mdx │ │ │ │ ├── get-block-number-using-get.api.mdx │ │ │ │ ├── get-block-rewards-by-block-number-using-get.api.mdx │ │ │ │ ├── get-block-transaction-count-by-number-using-get.api.mdx │ │ │ │ ├── get-code-using-get.api.mdx │ │ │ │ ├── get-contract-abi-using-get.api.mdx │ │ │ │ ├── get-contract-source-code-using-get.api.mdx │ │ │ │ ├── get-erc-20-transfers-by-address-using-get.api.mdx │ │ │ │ ├── get-erc-721-transfers-by-address-using-get.api.mdx │ │ │ │ ├── get-estimated-block-countdown-time-using-get.api.mdx │ │ │ │ ├── get-gas-price-using-get.api.mdx │ │ │ │ ├── get-internal-tx-by-block-range-using-get.api.mdx │ │ │ │ ├── get-internal-tx-by-tx-hash-using-get.api.mdx │ │ │ │ ├── get-last-core-price-using-get.api.mdx │ │ │ │ ├── get-list-of-validators-using-get.api.mdx │ │ │ │ ├── get-mined-blocks-by-address-using-get.api.mdx │ │ │ │ ├── get-storage-at-using-get.api.mdx │ │ │ │ ├── get-total-core-supply-using-get.api.mdx │ │ │ │ ├── get-transaction-by-block-number-and-index-using-get.api.mdx │ │ │ │ ├── get-transaction-by-hash-using-get.api.mdx │ │ │ │ ├── get-transaction-count-using-get.api.mdx │ │ │ │ ├── get-transaction-receipt-status-using-get.api.mdx │ │ │ │ ├── get-transaction-receipt-using-get.api.mdx │ │ │ │ ├── get-tx-list-by-address-using-get.api.mdx │ │ │ │ ├── send-raw-transaction-using-get.api.mdx │ │ │ │ ├── sidebar.ts │ │ │ │ ├── verify-proxy-contract-curl-using-post.api.mdx │ │ │ │ ├── verify-proxy-contract-using-post.api.mdx │ │ │ │ └── verify-source-code-using-post.api.mdx │ │ │ ├── testnet.yaml │ │ │ ├── testnet │ │ │ │ ├── check-proxy-contract-verification-status-using-get.api.mdx │ │ │ │ ├── estimate-gas-using-get.api.mdx │ │ │ │ ├── eth-call-using-get.api.mdx │ │ │ │ ├── get-balance-using-get.api.mdx │ │ │ │ ├── get-block-by-number-using-get.api.mdx │ │ │ │ ├── get-block-number-by-timestamp-using-get.api.mdx │ │ │ │ ├── get-block-number-using-get.api.mdx │ │ │ │ ├── get-block-rewards-by-block-number-using-get.api.mdx │ │ │ │ ├── get-block-transaction-count-by-number-using-get.api.mdx │ │ │ │ ├── get-code-using-get.api.mdx │ │ │ │ ├── get-contract-abi-using-get.api.mdx │ │ │ │ ├── get-contract-source-code-using-get.api.mdx │ │ │ │ ├── get-erc-20-transfers-by-address-using-get.api.mdx │ │ │ │ ├── get-erc-721-transfers-by-address-using-get.api.mdx │ │ │ │ ├── get-estimated-block-countdown-time-using-get.api.mdx │ │ │ │ ├── get-gas-price-using-get.api.mdx │ │ │ │ ├── get-internal-tx-by-block-range-using-get.api.mdx │ │ │ │ ├── get-internal-tx-by-tx-hash-using-get.api.mdx │ │ │ │ ├── get-last-core-price-using-get.api.mdx │ │ │ │ ├── get-list-of-validators-using-get.api.mdx │ │ │ │ ├── get-mined-blocks-by-address-using-get.api.mdx │ │ │ │ ├── get-storage-at-using-get.api.mdx │ │ │ │ ├── get-total-core-supply-using-get.api.mdx │ │ │ │ ├── get-transaction-by-block-number-and-index-using-get.api.mdx │ │ │ │ ├── get-transaction-by-hash-using-get.api.mdx │ │ │ │ ├── get-transaction-count-using-get.api.mdx │ │ │ │ ├── get-transaction-receipt-status-using-get.api.mdx │ │ │ │ ├── get-transaction-receipt-using-get.api.mdx │ │ │ │ ├── get-tx-list-by-address-using-get.api.mdx │ │ │ │ ├── send-raw-transaction-using-get.api.mdx │ │ │ │ ├── sidebar.ts │ │ │ │ ├── verify-proxy-contract-curl-using-post.api.mdx │ │ │ │ ├── verify-proxy-contract-using-post.api.mdx │ │ │ │ └── verify-source-code-using-post.api.mdx │ │ │ └── tutorials │ │ │ │ ├── common-error-messages.md │ │ │ │ ├── creating-an-account.md │ │ │ │ └── generate-an-api-key.md │ │ │ ├── intro.md │ │ │ ├── stake-and-delegate │ │ │ ├── delegating-core.md │ │ │ ├── delegating-hash.md │ │ │ ├── delegators.md │ │ │ ├── dual-staking-working.md │ │ │ ├── dual-staking.md │ │ │ └── staking-overview.md │ │ │ └── stakingAPI │ │ │ ├── mainnet │ │ │ ├── core-staking-api.info.mdx │ │ │ ├── retrieve-btc-staking-status.api.mdx │ │ │ ├── retrieve-btc-staking-transactions.api.mdx │ │ │ ├── retrieve-collected-and-pending-rewards.api.mdx │ │ │ ├── retrieve-current-dual-staking-grade.api.mdx │ │ │ ├── retrieve-full-list-of-btc-staking-transactions.api.mdx │ │ │ ├── retrieve-latest-staking-round.api.mdx │ │ │ ├── retrieve-overall-staking-data-on-core-blockchain.api.mdx │ │ │ ├── retrieve-reward-claim-history.api.mdx │ │ │ ├── retrieve-reward-distribution-of-a-round.api.mdx │ │ │ ├── retrieve-staking-summary.api.mdx │ │ │ ├── retrieve-validator-details.api.mdx │ │ │ ├── sidebar.ts │ │ │ └── submit-redeem-script-for-staking-transaction.api.mdx │ │ │ ├── swagger │ │ │ ├── mainnet.yaml │ │ │ └── testnet.yaml │ │ │ └── testnet │ │ │ ├── core-staking-api.info.mdx │ │ │ ├── retrieve-btc-staking-status.api.mdx │ │ │ ├── retrieve-btc-staking-transactions.api.mdx │ │ │ ├── retrieve-collected-and-pending-rewards.api.mdx │ │ │ ├── retrieve-current-dual-staking-grade.api.mdx │ │ │ ├── retrieve-full-list-of-btc-staking-transactions.api.mdx │ │ │ ├── retrieve-latest-staking-round.api.mdx │ │ │ ├── retrieve-overall-staking-data-on-core-blockchain.api.mdx │ │ │ ├── retrieve-reward-claim-history.api.mdx │ │ │ ├── retrieve-reward-distribution-of-a-round.api.mdx │ │ │ ├── retrieve-staking-summary.api.mdx │ │ │ ├── retrieve-validator-details.api.mdx │ │ │ ├── sidebar.ts │ │ │ └── submit-redeem-script-for-staking-transaction.api.mdx │ └── docusaurus-theme-classic │ │ ├── footer.json │ │ └── navbar.json └── fr │ ├── code.json │ ├── docusaurus-plugin-content-blog │ └── options.json │ ├── docusaurus-plugin-content-docs │ ├── current.json │ └── current │ │ ├── CoreIgnition │ │ ├── FAQs.md │ │ ├── Mechanics.md │ │ └── Overview.md │ │ ├── Dev-Guide │ │ ├── bridge-with-layerzero.md │ │ ├── contract-verify.md │ │ ├── core-bridge-resources.md │ │ ├── core-explorer.md │ │ ├── core-faucet.md │ │ ├── core-mainnet-wallet-config.md │ │ ├── core-subgraph.md │ │ ├── core-testnet-wallet-config.md │ │ ├── core-wallet-config.md │ │ ├── dapp-on-core.md │ │ ├── dev-tools.md │ │ ├── erc20-tokens.md │ │ ├── erc721-tokens.md │ │ ├── foundry.md │ │ ├── hardhat.md │ │ ├── network-config.md │ │ ├── precompile-addresses.md │ │ ├── remix.md │ │ ├── rpc-cli.md │ │ ├── rpc-list.md │ │ ├── rpc-postman.md │ │ └── smart-contract-guidelines.md │ │ ├── FAQs │ │ ├── LST-stCore-faqs.md │ │ ├── btc-staking-faqs.md │ │ ├── core-api-faqs.md │ │ ├── core-faqs.md │ │ ├── core-node-faqs.md │ │ ├── coreBTC-faqs.md │ │ ├── delegator-faqs.md │ │ ├── dual-staking-faqs.md │ │ └── validator-faqs.md │ │ ├── Learn │ │ ├── audit.md │ │ ├── bug-reporting.md │ │ ├── core-concepts │ │ │ ├── architecture.md │ │ │ ├── overview.md │ │ │ └── satoshi-plus-consensus │ │ │ │ ├── BitcoinStaking.md │ │ │ │ ├── DPoS.md │ │ │ │ ├── DPoW.md │ │ │ │ ├── components.md │ │ │ │ ├── rewards.md │ │ │ │ ├── security.md │ │ │ │ └── validator-election.md │ │ ├── economics │ │ │ └── core-token │ │ │ │ └── tokenomics-and-utility.md │ │ ├── governance.md │ │ ├── introduction │ │ │ ├── quickstart.md │ │ │ ├── what-is-core-chain.md │ │ │ └── why-core-chain.md │ │ └── products │ │ │ ├── btc-staking │ │ │ ├── Redeeming-Guide.md │ │ │ ├── btc-staking-working.md │ │ │ ├── design.md │ │ │ ├── dual-staking-guide.md │ │ │ ├── faqs-btc-staking.md │ │ │ ├── overview.md │ │ │ └── stake-btc-guide.md │ │ │ ├── coreBTC │ │ │ ├── design.md │ │ │ ├── how-to-guides.md │ │ │ └── overview.md │ │ │ ├── lstBTC │ │ │ └── overview.md │ │ │ └── stCore │ │ │ ├── design.md │ │ │ ├── overview.md │ │ │ └── stCore-on-Core.md │ │ ├── Node │ │ ├── Full-Node │ │ │ ├── on-mainnet.md │ │ │ └── on-testnet.md │ │ ├── config │ │ │ ├── archive-node-config.md │ │ │ ├── full-node.md │ │ │ ├── rpc-node-config.md │ │ │ ├── snapshot-node-config.md │ │ │ └── validator-node-config.md │ │ ├── maintenance │ │ │ ├── maintenance.md │ │ │ └── network-upgrade.md │ │ ├── overview.md │ │ ├── slashing │ │ │ ├── overview.md │ │ │ └── slashing-fee.md │ │ ├── sync │ │ │ └── snapshot-sync.md │ │ └── validator │ │ │ ├── overview.md │ │ │ ├── rewards.md │ │ │ ├── running-validator.md │ │ │ ├── setting-up-validator.md │ │ │ ├── validator-election.md │ │ │ └── validator-register.md │ │ ├── api │ │ ├── api-documents │ │ │ ├── accounts.md │ │ │ ├── blocks.md │ │ │ ├── contracts.md │ │ │ ├── geth-proxy.md │ │ │ ├── statistics.md │ │ │ └── transactions.md │ │ ├── api.md │ │ ├── assets │ │ │ ├── image(1).png │ │ │ ├── image(10).png │ │ │ ├── image(2).png │ │ │ ├── image(3).png │ │ │ ├── image(4).png │ │ │ ├── image(5).png │ │ │ ├── image(6).png │ │ │ ├── image(7).png │ │ │ ├── image(8).png │ │ │ ├── image(9).png │ │ │ └── image.png │ │ ├── mainnet.yaml │ │ ├── mainnet │ │ │ ├── check-proxy-contract-verification-status-using-get.api.mdx │ │ │ ├── estimate-gas-using-get.api.mdx │ │ │ ├── eth-call-using-get.api.mdx │ │ │ ├── get-balance-using-get.api.mdx │ │ │ ├── get-block-by-number-using-get.api.mdx │ │ │ ├── get-block-number-by-timestamp-using-get.api.mdx │ │ │ ├── get-block-number-using-get.api.mdx │ │ │ ├── get-block-rewards-by-block-number-using-get.api.mdx │ │ │ ├── get-block-transaction-count-by-number-using-get.api.mdx │ │ │ ├── get-code-using-get.api.mdx │ │ │ ├── get-contract-abi-using-get.api.mdx │ │ │ ├── get-contract-source-code-using-get.api.mdx │ │ │ ├── get-erc-20-transfers-by-address-using-get.api.mdx │ │ │ ├── get-erc-721-transfers-by-address-using-get.api.mdx │ │ │ ├── get-estimated-block-countdown-time-using-get.api.mdx │ │ │ ├── get-gas-price-using-get.api.mdx │ │ │ ├── get-internal-tx-by-block-range-using-get.api.mdx │ │ │ ├── get-internal-tx-by-tx-hash-using-get.api.mdx │ │ │ ├── get-last-core-price-using-get.api.mdx │ │ │ ├── get-list-of-validators-using-get.api.mdx │ │ │ ├── get-mined-blocks-by-address-using-get.api.mdx │ │ │ ├── get-storage-at-using-get.api.mdx │ │ │ ├── get-total-core-supply-using-get.api.mdx │ │ │ ├── get-transaction-by-block-number-and-index-using-get.api.mdx │ │ │ ├── get-transaction-by-hash-using-get.api.mdx │ │ │ ├── get-transaction-count-using-get.api.mdx │ │ │ ├── get-transaction-receipt-status-using-get.api.mdx │ │ │ ├── get-transaction-receipt-using-get.api.mdx │ │ │ ├── get-tx-list-by-address-using-get.api.mdx │ │ │ ├── send-raw-transaction-using-get.api.mdx │ │ │ ├── sidebar.ts │ │ │ ├── verify-proxy-contract-curl-using-post.api.mdx │ │ │ ├── verify-proxy-contract-using-post.api.mdx │ │ │ └── verify-source-code-using-post.api.mdx │ │ ├── testnet.yaml │ │ ├── testnet │ │ │ ├── check-proxy-contract-verification-status-using-get.api.mdx │ │ │ ├── estimate-gas-using-get.api.mdx │ │ │ ├── eth-call-using-get.api.mdx │ │ │ ├── get-balance-using-get.api.mdx │ │ │ ├── get-block-by-number-using-get.api.mdx │ │ │ ├── get-block-number-by-timestamp-using-get.api.mdx │ │ │ ├── get-block-number-using-get.api.mdx │ │ │ ├── get-block-rewards-by-block-number-using-get.api.mdx │ │ │ ├── get-block-transaction-count-by-number-using-get.api.mdx │ │ │ ├── get-code-using-get.api.mdx │ │ │ ├── get-contract-abi-using-get.api.mdx │ │ │ ├── get-contract-source-code-using-get.api.mdx │ │ │ ├── get-erc-20-transfers-by-address-using-get.api.mdx │ │ │ ├── get-erc-721-transfers-by-address-using-get.api.mdx │ │ │ ├── get-estimated-block-countdown-time-using-get.api.mdx │ │ │ ├── get-gas-price-using-get.api.mdx │ │ │ ├── get-internal-tx-by-block-range-using-get.api.mdx │ │ │ ├── get-internal-tx-by-tx-hash-using-get.api.mdx │ │ │ ├── get-last-core-price-using-get.api.mdx │ │ │ ├── get-list-of-validators-using-get.api.mdx │ │ │ ├── get-mined-blocks-by-address-using-get.api.mdx │ │ │ ├── get-storage-at-using-get.api.mdx │ │ │ ├── get-total-core-supply-using-get.api.mdx │ │ │ ├── get-transaction-by-block-number-and-index-using-get.api.mdx │ │ │ ├── get-transaction-by-hash-using-get.api.mdx │ │ │ ├── get-transaction-count-using-get.api.mdx │ │ │ ├── get-transaction-receipt-status-using-get.api.mdx │ │ │ ├── get-transaction-receipt-using-get.api.mdx │ │ │ ├── get-tx-list-by-address-using-get.api.mdx │ │ │ ├── send-raw-transaction-using-get.api.mdx │ │ │ ├── sidebar.ts │ │ │ ├── verify-proxy-contract-curl-using-post.api.mdx │ │ │ ├── verify-proxy-contract-using-post.api.mdx │ │ │ └── verify-source-code-using-post.api.mdx │ │ └── tutorials │ │ │ ├── common-error-messages.md │ │ │ ├── creating-an-account.md │ │ │ └── generate-an-api-key.md │ │ ├── intro.md │ │ ├── stake-and-delegate │ │ ├── delegating-core.md │ │ ├── delegating-hash.md │ │ ├── delegators.md │ │ ├── dual-staking-working.md │ │ ├── dual-staking.md │ │ └── staking-overview.md │ │ └── stakingAPI │ │ ├── mainnet │ │ ├── core-staking-api.info.mdx │ │ ├── retrieve-btc-staking-status.api.mdx │ │ ├── retrieve-btc-staking-transactions.api.mdx │ │ ├── retrieve-collected-and-pending-rewards.api.mdx │ │ ├── retrieve-current-dual-staking-grade.api.mdx │ │ ├── retrieve-full-list-of-btc-staking-transactions.api.mdx │ │ ├── retrieve-latest-staking-round.api.mdx │ │ ├── retrieve-overall-staking-data-on-core-blockchain.api.mdx │ │ ├── retrieve-reward-claim-history.api.mdx │ │ ├── retrieve-reward-distribution-of-a-round.api.mdx │ │ ├── retrieve-staking-summary.api.mdx │ │ ├── retrieve-validator-details.api.mdx │ │ ├── sidebar.ts │ │ └── submit-redeem-script-for-staking-transaction.api.mdx │ │ ├── swagger │ │ ├── mainnet.yaml │ │ └── testnet.yaml │ │ └── testnet │ │ ├── core-staking-api.info.mdx │ │ ├── retrieve-btc-staking-status.api.mdx │ │ ├── retrieve-btc-staking-transactions.api.mdx │ │ ├── retrieve-collected-and-pending-rewards.api.mdx │ │ ├── retrieve-current-dual-staking-grade.api.mdx │ │ ├── retrieve-full-list-of-btc-staking-transactions.api.mdx │ │ ├── retrieve-latest-staking-round.api.mdx │ │ ├── retrieve-overall-staking-data-on-core-blockchain.api.mdx │ │ ├── retrieve-reward-claim-history.api.mdx │ │ ├── retrieve-reward-distribution-of-a-round.api.mdx │ │ ├── retrieve-staking-summary.api.mdx │ │ ├── retrieve-validator-details.api.mdx │ │ ├── sidebar.ts │ │ └── submit-redeem-script-for-staking-transaction.api.mdx │ └── docusaurus-theme-classic │ ├── footer.json │ └── navbar.json ├── package-lock.json ├── package.json ├── sidebars.ts ├── sitemap.xml ├── src ├── components │ └── HomepageFeatures │ │ ├── index.js │ │ ├── index.tsx │ │ └── styles.module.css ├── css │ └── custom.css ├── pages │ ├── api.js │ ├── core-white-paper-v1.0.7.js │ ├── index.js │ ├── index.module.css │ ├── index.tsx │ └── markdown-page.md └── theme │ └── SearchBar │ └── index.tsx ├── static ├── .nojekyll ├── CNAME └── img │ ├── Core-Architecture.png │ ├── Core_Products.png │ ├── Infographic.png │ ├── What-Is-Core.png │ ├── Why-Core.png │ ├── architecture.png │ ├── btc-staking │ ├── NCBS Workflow.png │ ├── approve-tx.png │ ├── btc-staking-address-verification-result.png │ ├── btc-staking-address-verification-workflow.png │ ├── btc-staking-address-verification.png │ ├── btc-staking-flow-new.png │ ├── btc-staking-flow.png │ ├── btc-staking-workflow.png │ ├── external-verification-UI.png │ └── tx-design │ │ ├── spaces_DLZv2z2IzD1yPifdhZKK_uploads_ucqE9D7oqg082epSzYRK_staking-tx-design (5).webp │ │ ├── staking-flow.png │ │ ├── staking-tx-design (1).png │ │ ├── staking-tx-design (2).png │ │ ├── staking-tx-design (3).png │ │ ├── staking-tx-design (4).png │ │ ├── staking-tx-design (5).png │ │ ├── staking-tx-design.png │ │ └── withdrawal-flow.png │ ├── contract-verification │ ├── contract-verify-1.avif │ ├── contract-verify-2.avif │ ├── contract-verify-3.avif │ ├── contract-verify-4.avif │ └── contract-verify-5.avif │ ├── core-explorer.png │ ├── core-explorer │ ├── analytics-and-charts.png │ ├── download-chart-data.png │ ├── download-data-csv-1.png │ ├── download-data-csv.png │ ├── download-page-data.png │ └── tx-data.png │ ├── core-header.png │ ├── core.png │ ├── coreBTC │ ├── core-guides-1.png │ ├── core-guides-2.png │ ├── core-guides-3.png │ ├── core-guides-4.png │ ├── liquidation-process.png │ ├── pegin-corebtc.png │ ├── pegout-corebtc.png │ ├── slashing-1.png │ └── slashing-2.png │ ├── dapp │ ├── dapp-1.png │ ├── dapp-2.avif │ └── dapp-3.avif │ ├── delegate │ ├── delegate-core │ │ ├── delegate-core-1.avif │ │ ├── delegate-core-2.avif │ │ ├── delegate-core-3.avif │ │ └── delegate-core-4.avif │ └── miner-power-relaying.png │ ├── dev_tutorials │ ├── ERC20_Balance.png │ ├── ERC20_ConnectMetamask.png │ ├── ERC20_Deploy.png │ ├── ERC20_Wizard.png │ ├── ERC721_Compile.png │ ├── ERC721_Contract.png │ ├── ERC721_Deployment.png │ ├── ERC721_Mint.png │ ├── ERC721_Wizard.png │ ├── Remix_ERC20.png │ ├── Remix_ERC20_Compile.png │ └── Remix_InjectedProvider.png │ ├── docusaurus-social-card.jpg │ ├── docusaurus.png │ ├── dual-staking │ ├── dual-staking-1.png │ ├── dual-staking-10.png │ ├── dual-staking-11.png │ ├── dual-staking-12.png │ ├── dual-staking-13.png │ ├── dual-staking-14.png │ ├── dual-staking-15.png │ ├── dual-staking-16.png │ ├── dual-staking-2.png │ ├── dual-staking-3.png │ ├── dual-staking-4.png │ ├── dual-staking-5.png │ ├── dual-staking-6.png │ ├── dual-staking-7.png │ ├── dual-staking-8.png │ ├── dual-staking-9.png │ └── dual-staking-tiers.png │ ├── faucet │ ├── faucet-test2.png │ └── faucet.png │ ├── favicon.ico │ ├── hardhat │ ├── dapp-tutorial-1.png │ └── hardhat-1.avif │ ├── htlc-process.png │ ├── logo.svg │ ├── lstbtc │ └── lstBTC_banner.png │ ├── miannet-wallet-config │ ├── chainlist_mainnet.png │ ├── mainnet-wallet-config-1.png │ ├── mainnet-wallet-config-1.webp │ ├── mainnet-wallet-config-10.webp │ ├── mainnet-wallet-config-11.webp │ ├── mainnet-wallet-config-12.webp │ ├── mainnet-wallet-config-13.webp │ ├── mainnet-wallet-config-14.webp │ ├── mainnet-wallet-config-15.webp │ ├── mainnet-wallet-config-2.webp │ ├── mainnet-wallet-config-3.webp │ ├── mainnet-wallet-config-4.webp │ ├── mainnet-wallet-config-5.webp │ ├── mainnet-wallet-config-6.webp │ ├── mainnet-wallet-config-7.webp │ ├── mainnet-wallet-config-8.webp │ └── mainnet-wallet-config-9.webp │ ├── native-staking │ ├── native-staking-1.avif │ ├── native-staking-10.avif │ ├── native-staking-11.avif │ ├── native-staking-12.avif │ ├── native-staking-13.avif │ ├── native-staking-14.png │ ├── native-staking-15.avif │ ├── native-staking-16.avif │ ├── native-staking-17.avif │ ├── native-staking-18.avif │ ├── native-staking-19.avif │ ├── native-staking-2.png │ ├── native-staking-20.avif │ ├── native-staking-21.avif │ ├── native-staking-22.avif │ ├── native-staking-23.avif │ ├── native-staking-24.avif │ ├── native-staking-25.png │ ├── native-staking-26.avif │ ├── native-staking-27.avif │ ├── native-staking-3.avif │ ├── native-staking-4.avif │ ├── native-staking-5.avif │ ├── native-staking-6.png │ ├── native-staking-7.avif │ ├── native-staking-8.avif │ ├── native-staking-9.avif │ └── updated-ui │ │ ├── staking-guide-1.png │ │ ├── staking-guide-2.png │ │ ├── staking-guide-3.png │ │ ├── staking-guide-4.png │ │ ├── staking-guide-5.png │ │ ├── staking-guide-6.png │ │ ├── staking-guide-7.png │ │ ├── staking-guide-8.png │ │ ├── staking-guide-9.png │ │ └── staking-guide.png │ ├── remix │ ├── remix-1.avif │ ├── remix-10.avif │ ├── remix-10.png │ ├── remix-11.avif │ ├── remix-12.avif │ ├── remix-13.png │ ├── remix-2.avif │ ├── remix-3.avif │ ├── remix-4.avif │ ├── remix-5.avif │ ├── remix-6.avif │ ├── remix-7.avif │ ├── remix-7.png │ ├── remix-8.avif │ └── remix-9.avif │ ├── rpc │ ├── postman │ │ ├── rpc-psotman-1.png │ │ ├── rpc-psotman-2.png │ │ ├── rpc-psotman-3.png │ │ ├── rpc-psotman-4.png │ │ ├── rpc-psotman-5.png │ │ ├── rpc-psotman-6.png │ │ └── rpc-psotman-7.png │ ├── rpc-1.png │ └── rpc-testnet.png │ ├── solidity-support │ ├── evm-setting.jpg │ ├── hardhat-evm-setting.png │ ├── remix-setting.png │ └── verify-contract.png │ ├── stCore │ ├── mint-stcore.png │ └── redeem-stcore.png │ ├── staoshi-plus │ ├── DPoW.png │ ├── Rewards-In-Core-Ecosystem.png │ ├── Validator-Election-Workflow.png │ ├── component-diagram.jpg │ ├── consensus-components.png │ ├── dpow.jpg │ ├── rewards.png │ ├── satoshi-plus-components.png │ ├── validator-election-flow.png │ └── validator-election.png │ ├── testnet-wallet-config │ ├── chainlist-testnet-connect-1.png │ ├── chainlist-testnet-connect-2.png │ ├── chainlist-testnet-connect-3.png │ ├── chainlist-testnet-connect-4.png │ ├── chainlist_testnet1.png │ ├── chainlist_testnet2.png │ ├── send-tcore-1.png │ ├── send-tcore-2.png │ ├── testnet-config-wallet-1.png │ └── testnet-wallet-config-2.png │ ├── tokenomics-distribution.png │ ├── tokenomics │ ├── Breakdown_of_Allocations.png │ ├── CORE_Tokenomics.png │ ├── Cumulative_CORE_Emissions_Monthly.png │ └── Cumulative_CORE_Emissions_Yearly.png │ ├── undraw_docusaurus_mountain.svg │ ├── undraw_docusaurus_react.svg │ ├── undraw_docusaurus_tree.svg │ ├── uniswap │ ├── swap-token-1.png │ ├── swap-token-2.png │ ├── swap-token-3.png │ ├── swap-token-4.png │ ├── swap-token-5.png │ └── swap-token-6.png │ └── validator │ ├── Reward-Distribution.png │ ├── Rewards-In-Core-Ecosystem.png │ ├── Validator-Election-Workflow.png │ ├── register │ ├── validator-register-1.avif │ ├── validator-register-2.avif │ ├── validator-register-3.avif │ ├── validator-register-4.webp │ ├── validator-rename-1.png │ ├── validator-rename-2.png │ └── validator-rename-3.png │ ├── validator-regitration.png │ └── validator-status.png ├── styles.module.css ├── tsconfig.json └── yarn.lock /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- 1 | name: Deploy to GitHub Pages 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | # Review gh actions docs if you want to further define triggers, paths, etc 8 | # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on 9 | 10 | jobs: 11 | build: 12 | name: Build Docusaurus 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v4 16 | with: 17 | fetch-depth: 0 18 | - uses: actions/setup-node@v4 19 | with: 20 | node-version: 18 21 | cache: yarn 22 | 23 | - name: Install dependencies 24 | run: yarn install 25 | - name: Build website 26 | run: yarn build 27 | 28 | - name: Upload Build Artifact 29 | uses: actions/upload-pages-artifact@v3 30 | with: 31 | path: build 32 | 33 | deploy: 34 | name: Deploy to GitHub Pages 35 | needs: build 36 | 37 | # Grant GITHUB_TOKEN the permissions required to make a Pages deployment 38 | permissions: 39 | pages: write # to deploy to Pages 40 | id-token: write # to verify the deployment originates from an appropriate source 41 | 42 | # Deploy to the github-pages environment 43 | environment: 44 | name: github-pages 45 | url: ${{ steps.deployment.outputs.page_url }} 46 | 47 | runs-on: ubuntu-latest 48 | steps: 49 | - name: Deploy to GitHub Pages 50 | id: deployment 51 | uses: actions/deploy-pages@v4 52 | -------------------------------------------------------------------------------- /.github/workflows/test-deploy.yml: -------------------------------------------------------------------------------- 1 | name: Test deployment 2 | 3 | on: 4 | pull_request: 5 | branches: 6 | - main 7 | # Review gh actions docs if you want to further define triggers, paths, etc 8 | # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on 9 | 10 | jobs: 11 | test-deploy: 12 | name: Test deployment 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v4 16 | with: 17 | fetch-depth: 0 18 | - uses: actions/setup-node@v4 19 | with: 20 | node-version: 18 21 | cache: yarn 22 | 23 | - name: Install dependencies 24 | run: yarn install --frozen-lockfile 25 | - name: Test build website 26 | run: yarn build -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Production 5 | /build 6 | 7 | # Generated files 8 | .docusaurus 9 | .cache-loader 10 | 11 | # Misc 12 | .DS_Store 13 | .env.local 14 | .env.development.local 15 | .env.test.local 16 | .env.production.local 17 | 18 | npm-debug.log* 19 | yarn-debug.log* 20 | yarn-error.log* 21 | -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/.nojekyll -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.coredao.org -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Core DAO Developer Documentation 2 | 3 | Welcome to the Core Developer Documentation for the Core blockchain! This comprehensive guide is designed to assist developers in navigating and integrating with Core blockchain effectively. Whether you are looking to build decentralized applications, participate in network governance, or simply explore the capabilities of Core blockchain, this documentation provides all the necessary tools and resources. 4 | 5 | ## Commands for Local Build 6 | 7 | * Install depencies `yarn install ` 8 | * Start the live-reloading docs server `yarn run start` 9 | * Build the documentation site `yarn run build` 10 | 11 | For running transaltions 12 | * Build the documentation site `yarn run build --locale `, where `` can be `en`, `fr` or `es`. 13 | * Start the live-reloading docs server `yarn run start --locale `, where `` can be `en`, `fr` or `es`.` 14 | 15 | ## 📜 License 16 | 17 | Copyright (c) 2024 Core DAO 18 | -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /docs/**/* 3 | ignore: 4 | - /docs/CNAME 5 | translation: /i18n/%two_letters_code%/%original_path%/%original_file_name% 6 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.coredao.org -------------------------------------------------------------------------------- /docs/Dev-Guide/core-explorer.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Block Explorer 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | import Tabs from '@theme/Tabs'; 8 | import TabItem from '@theme/TabItem'; 9 | 10 | # Core Scan Blockchain Explorer 11 | 12 | --- 13 | 14 | Core Explorer is a graphic user interface designed to allow users to interact with the CORE blockchain. Through this interface, a user can browse information about blocks that have been added to the blockchain, transactions that have occurred on the blockchain, wallet balances, and information about tCORE and CORE tokens. Core Network provides explorers for both its mainnet and testnet. 15 | 16 | 21 | 22 | 23 | - **Core Testnet2 Explorer:** https://scan.test2.btcs.network/ 24 | 25 | 26 | 27 | - **Core Testnet1 Explorer:** https://scan.test.btcs.network/ 28 | 29 | 30 | 31 | - **Core Mainnet Explorer:** https://scan.coredao.org/ 32 | 33 | 34 | 35 | 36 | ### Using the Core Scan Explorer 37 | 38 | You can use the Testnet Core Scan blockchain explorer to find and review transactions. Copy your account's address from MetaMask and search for it on the explorer. In the picture below, we can see two transactions related to our account: 39 | 40 | - The one in which we fetched tCORE from Faucet; 41 | - The one in which we sent tCORE to another address; 42 | 43 | ![core-explorer](../../static/img/core-explorer.png) 44 | -------------------------------------------------------------------------------- /docs/Dev-Guide/core-faucet.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Faucet 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Core Testnet Faucet 8 | 9 | --- 10 | 11 | To help users get started and allow developers to quickly prototype their dApps, Core has released the public Core Testnet Faucet to distribute Core testnet tokens, **tCORE** or **tCORE2**. 12 | 13 | ## Steps to Obtain tCORE/tCORE2 from Core Testnet Faucet 14 | 15 | 1. Navigate to the faucet website. 16 | 17 | - **For Core Blockchain Testnet (1114) Faucet:** https://scan.test2.btcs.network/faucet 18 | - **For Core Blockchain Testnet (1115) Faucet:** https://scan.test.btcs.network/faucet 19 | 20 | 2. Paste your address in the given textbox. Make sure you give the Core Testnet address of your wallet that you want to get funded with tCORE or tCORE2. 21 | 3. Complete the CAPTCHA 22 | 4. If using faucet for Core Blockchain Testnet (1114), click the `Get tCORE2` button. After requesting tCORE from the faucet, you'll see your MetaMask balance increase. 23 | 24 |

25 | ![using-faucet-test2](../../static/img/faucet/faucet-test2.png) 26 |

27 | 28 | 5. If using faucet for Core Blockchain Testnet (1115), click the `Get tCORE` button. After successfully requesting tCORE2 from the faucet, you'll see your wallet's balance increase. 29 | 30 |

31 | ![using-faucet](../../static/img/faucet/faucet.png) 32 |

33 | 34 | :::caution 35 | Each address can request **only one tCORE or tCORE2 per day** from the faucet in 24 hours. If you've run out of tCORE or tCORE2 and the faucet won't send you more because of the one tCORE or tCORE2 daily limit, come back after 24 hours and try again. Or else you can request in Core's Discord Server. 36 | ::: 37 | 38 | :::note 39 | tCORE and tCORE2 are only used for testing and does not have any value. Do not use it for real financial transactions. 40 | ::: 41 | -------------------------------------------------------------------------------- /docs/Learn/bug-reporting.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Reporting Security Vulnerability 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Reporting a Bug or Security Vulnerability 8 | 9 | If you have discovered a security vulnerability affecting the Core blockchain, network, or infrastructure, please report it to us directly. 10 | 11 | ### How to Report 12 | 13 | To ensure a swift and effective response, send an email to **[bug-report@coredao.org](mailto:bug-report@coredao.org)** with the following details: 14 | 15 | - **Affected Resource**: Specify the impacted component, such as a GitHub repository, URL, smart contract, or other infrastructure. 16 | - **Description & Impact**: Provide a detailed explanation of the vulnerability, its potential risks, and how it could be exploited. 17 | - **Steps to Reproduce**: Include a step-by-step guide on how you discovered the issue. Mention any tools or techniques used. 18 | - **Proof of Concept (PoC)**: If possible, provide a working proof of concept demonstrating the vulnerability in action. 19 | 20 | Your contribution to Core's security is highly valued, and we appreciate your efforts in keeping the Core ecosystem safe. 21 | 22 | -------------------------------------------------------------------------------- /docs/Learn/introduction/quickstart.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Quickstart 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Quickstart 8 | --- 9 | 10 | #### _Access Core's tools and resources_ 11 | 12 | ### Core Testnet Resources 13 | 14 | * **[Block Explorer](https://scan.test.btcs.network/):** Search and review transactions, accounts, blocks, and more. 15 | 16 | * **[RPC Endpoints](https://chainlist.org/chain/1115):** RPC endpoints for Core Testnet's RPC service. 17 | 18 | * **Core Faucet:** Fund your testnet address with tCORE or tCORE2. 19 | * **For Latest Core Testnet2 (1114):** https://scan.test2.btcs.network/faucet 20 | * **For Core Testnet (1115):** https://scan.test.btcs.network/faucet 21 | 22 | * **Staking:** tCORE or tCORE2 staking website. 23 | * **For Latest Core Testnet2 (1114) i.e. tCORE2:** https://stake.test2.btcs.network/ 24 | * **For Core Testnet (1115) i.e. tCORE:** https://stake.test.btcs.network/ 25 | 26 | * **[Gnosis Safe](https://safe.test.btcs.network/welcome):** Secure multi-sig management of digital assets. 27 | 28 | ### General Resources 29 | 30 | * **[Core DAO GitHub](https://github.com/coredao-org):** The official Core GitHub, including the blockchain codebase and more. 31 | 32 | ### Core Mainnet Resources 33 | 34 | * **[Block Explorer](https://scan.coredao.org/):** Search and review transactions, accounts, blocks, and more. 35 | 36 | * **[RPC Endpoints](https://chainlist.org/chain/1116):** RPC endpoints for Core Mainnet's RPC service. 37 | 38 | * **[Core Bridge](https://bridge.coredao.org/):** Official bridge for the Core ecosystem (more details in Core Bridge Resources). 39 | 40 | * **[Core Staking](https://stake.coredao.org/):** Core's official website for staking CORE and BTC. 41 | 42 | * **[Web3 Provider](https://cloud.infstones.com/login):** Scalable API infrastructure provided by InfStones. 43 | 44 | * **[Core Scan Contract Verifier](https://scan.coredao.org/verifyContract):** Web tool for contract verification (guide here). 45 | 46 | * **[Gnosis Safe](https://safe.coredao.org/welcome):** Secure multi-sig management of digital assets. 47 | 48 | * **[wCORE](https://scan.coredao.org/address/0x191e94fa59739e188dce837f7f6978d84727ad01):** Official wrapped CORE token smart contract. 49 | -------------------------------------------------------------------------------- /docs/Node/maintenance/network-upgrade.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Upgrading Geth 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # How to Upgrade Geth 8 | 9 | Updating `geth` is as easy as it gets. You just need to download and install the newer version of `geth`, shutdown your node and restart with the new software. Geth will automatically use the data of your old node and sync the latest blocks that were mined since you shut down the old software. 10 | 11 | ### Step 1: Compile the New Version or download new pre-build binaries from release 12 | 13 | ```bash 14 | git clone https://github.com/coredao-org/core-chain 15 | 16 | make geth 17 | ``` 18 | 19 | ```bash 20 | # Download pre-build binaries 21 | 22 | # Linux 23 | wget $(curl -s https://github.com/coredao-org/core-chain/releases/latest |grep browser_ |grep geth_linux |cut -d\" -f4) 24 | mv geth_linux geth 25 | chmod -v u+x geth 26 | 27 | # MacOS 28 | wget $(curl -s https://github.com/coredao-org/core-chain/releases/latest |grep browser_ |grep geth_mac |cut -d\" -f4) 29 | mv geth_mac geth 30 | chmod -v u+x geth 31 | make geth 32 | ``` 33 | 34 | 35 | ### Step 2: Stop Geth 36 | 37 | ``` 38 | 39 | $ pid=`ps -ef | grep geth | grep -v grep | awk '{print $2}'` 40 | $ kill $pid 41 | 42 | ``` 43 | 44 | 45 | ### Step 3: Restart 46 | :::note 47 | Make sure to use the same start-up command you used before the upgrade. 48 | ::: 49 | 50 | ```bash 51 | ## 52 | ./geth --config ./config.toml --datadir ./node --cache 8000 --rpc.allow-unprotected-txs --txlookuplimit 0 53 | ``` -------------------------------------------------------------------------------- /docs/Node/slashing/slashing-fee.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Slashing Fee 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Slashing Fees 8 | --- 9 | 10 | ## Unavailability 11 | Slashing penalties are generally incurred because a node fails to successfully produce a block during its designated turn in the **round-robin block-mining** procedure as described in the [Validator Election](../validator/validator-election.md) section. 12 | 13 | * If a validator node fails to mine **50 blocks** in a row, the CORE token rewards the validator has accrued so far are slashed completely. 14 | * If a validator node fails to mine the first **49 blocks** in a round, and then misses the last block of the same round, this will lead to slashing of the entire CORE token rewards the validator has accrued so far. 15 | * If they fail on the last **50** blocks of the round, they surrender everything they’ve earned. 16 | * If a validator fails to mine **150 blocks** in a row, they surrender their share of the daily CORE token rewards, they lose **10%** of the deposit made to become a validator, i.e., 1,000 CORE, and they are jailed for **three** days, which means they aren’t eligible to be elected to the validator set. 17 | 18 | ## Double Sign 19 | Anyone can submit a slash request with the evidence of double signing activity on the Core blockchain. 20 | 21 | ### Evidence Validation 22 | * Two block headers have the same height and the same parent block hash 23 | * Two block headers are sealed by the same validator 24 | * Two signatures of these two blocks must not be the same 25 | * The validator should be in the set of current round’s validators. 26 | 27 | If the evidence is valid: 28 | 1. **10,000 CORE** i.e., the entire self-margined CORE of the validator will be slashed. 29 | 2. The slashed validator would be jailed and barred from the network forever 30 | 3. **500** of slashed CORE would be allocated to the submitter as a reward 31 | 4. The rest of slashed CORE will transfer into System Reward Pool 32 | 33 | -------------------------------------------------------------------------------- /docs/api/api-documents/transactions.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Transactions 3 | description: Endpoints related to Transactions 4 | hide_table_of_contents: false 5 | sidebar_position: 2 6 | --- 7 | 8 | # Transactions 9 | 10 | ## Check Transaction Receipt Status 11 | 12 | Returns the status code of a transaction execution. 13 | 14 | ```bash 15 | https://openapi.coredao.org/api 16 | ?module=transaction 17 | &action=gettxreceiptstatus 18 | &txhash=0xf5582dff22f92beee00afc22c4d80ca7b7ad4a335019371a67c16adf383b6afa 19 | &apikey=YourApiKeyToken 20 | ``` 21 | 22 | > Try this endpoint in your [**browser**](https://openapi.coredao.org/api?module=transaction\&action=gettxreceiptstatus\&txhash=0xf5582dff22f92beee00afc22c4d80ca7b7ad4a335019371a67c16adf383b6afa\&apikey=b4d33c1698e4446dbf0f05f520117a76) 🔗 23 | 24 | Request Query Parameters 25 | 26 |
ParameterDescription
txhashthe string representing the transaction hash to check the execution status
27 | 28 | Sample Response 29 | 30 | ```json 31 | { 32 | "status":"1", 33 | "result":{ 34 | "status":"1" 35 | }, 36 | "message":"OK" 37 | } 38 | ``` 39 | -------------------------------------------------------------------------------- /docs/api/api.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Core Scan OpenAPI 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Core Scan Open API 8 | --- 9 | 10 | Introducing the Core Scan Open API, a powerful tool that gives developers direct access to Core Scan's block explorer data and services. Use these resources to enhance your applications, tapping into comprehensive insights of Core provided by Core Scan. 11 | 12 | ## Tutorials 13 | 14 | We've written some tutorials to help you get started with Core Scan Open API. For advanced users, we've included guides for advanced endpoints, such as API-facilitated programmatic contract verification. 15 | 16 | Check out the Core Scan Open API tutorials [here](https://docs.coredao.org/docs/api/core-api-tutorials). 17 | 18 | ## API Endpoints 19 | 20 | Core Scan Open API provides endpoints for many things, including interacting with deployed smart contracts, fetching a user's CORE balance, and viewing detailed information about transactions. 21 | 22 | Check out the full endpoint documentation [here](https://docs.coredao.org/docs/api/core-api-docs). 23 | 24 | ## Support 25 | 26 | If you have an issue and need clarification, reach out to us on our official [Discord](https://discord.com/invite/coredaoofficial). 27 | -------------------------------------------------------------------------------- /docs/api/assets/image(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(1).png -------------------------------------------------------------------------------- /docs/api/assets/image(10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(10).png -------------------------------------------------------------------------------- /docs/api/assets/image(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(2).png -------------------------------------------------------------------------------- /docs/api/assets/image(3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(3).png -------------------------------------------------------------------------------- /docs/api/assets/image(4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(4).png -------------------------------------------------------------------------------- /docs/api/assets/image(5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(5).png -------------------------------------------------------------------------------- /docs/api/assets/image(6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(6).png -------------------------------------------------------------------------------- /docs/api/assets/image(7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(7).png -------------------------------------------------------------------------------- /docs/api/assets/image(8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(8).png -------------------------------------------------------------------------------- /docs/api/assets/image(9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image(9).png -------------------------------------------------------------------------------- /docs/api/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/docs/api/assets/image.png -------------------------------------------------------------------------------- /docs/api/mainnet/get-block-number-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-block-number-using-get 3 | title: "Get block number" 4 | description: "Get block number" 5 | sidebar_label: "Get block number" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtksFu2zAQRH9FmFMLsFbTI29paxgBgrRompNhFJS0lohIJEOu7BiC/r1YWU3UxEeSy9m3szOATZ2gt9gQN9nP6J9P2Cn4QNGw9e6mgkZN/LX15eNd3xUUH5J19Wb9GwrBRNMRUxSJAc50BA0T7COdoGAdNJ56inKoKJXRBhFd1kR66m2kCppjTwqpbKgz0AP4FEQtcbSuxjju3mpsiLNCuDI3gUGhI278jDzxcQON3ASb18RNTtz8KV5HgUKiePjH38cWGg1zSDrPfSBngl2VPlJl/MrHOodQWLf3E6DlVgivg82++7LvyPFk2rtpL1UwxS792N9TPNhSZProNPsEhdaW5BJJj9nS62DKhrIvq89QC0yd58fjcWWm1wlw/pry25tv67v79Sf5MirIjGeWq/NF8Ik74xY9Ltj53xQvG2F65jy0xjoRmmiG2eqtLBZK7G+g8NbunULjE0vdMBQm0UNsx1GuzymRJVQ2maKVQOxNm+gdROkdk2NofPg1Z+dj9hKni4jytIjcwbS9FE3LPJhopR/0djcuAiQBH8e/37QPtA== 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get block number 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/mainnet/get-gas-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-gas-price-using-get 3 | title: "Get gas price" 4 | description: "Get gas price" 5 | sidebar_label: "Get gas price" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkstu2zAQRX9FuKsWYK22S+6C1jACFG3QNCvDKCbyWCIikQw5smMI+vdiZDVQHksO53Hmzh0gVGfYLTYsTXGTwtMZO4MQOZG44K/3sKhZNpRvkqv4Ljtfb9Z/YBApUcfCSesHeOoYFhTdA59h4DwsHntO+thzrpKL2nGZk/ixd4n3sJJ6NshVwx3BDpBz1G5ZkvM1xnH3useGpagpF1GpYNCxNGGGneCkgUVJ0ZU1S1OyNH/reQkYZE7H/+R9amHRiMRsyzJE9hTdqgqJ9xRWIdUldL7zhzChOWmV7Sq64nuo+o69TFq92fO9DOHU5V+HW05HJbHok7cSMgxaV7HPrDNmMa8iVQ0XX1efYRaYtixPp9OKpt8JcC7N5Y/rb+uft+tPWjIa6I4Xli+XQAxZOvKLGa+FfLHC8yGEn6SMLTmvXSaUYRZ5q/eEUeEbGLwQemfQhCyaNAz3lPkuteOo4YszVP69y3TfqgkO1GZ+Q1AFL+wFFh9+z375WDxb6F0+/VrY7Ehtr0nTGY+UnM6D3e7GhW/U1OP4D8GYCVY= 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get gas price 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/mainnet/get-last-core-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-last-core-price-using-get 3 | title: "Get last core price" 4 | description: "Get last core price" 5 | sidebar_label: "Get last core price" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+KwdMGeNG2o25FFxQFim1Y1lMQFKzN2MJsSSXpZIXh/z7QSQuvzVESH/Xx8Y2g2Aj4LWwUVWBXQsrEqCHF2xo8NKR3KHqdmH5yqOheQmxu1r+hhIyMPSmx6UeI2BN4wBz+0DOUECJ4eBqI7VCTVByytV3WMD0NgakGrzxQCVK11CP4EfQ5WzdRDrGBadq97XFDWnQoWlSJqcjGBiX0pG06c8+I2oIHhzk4sQGdSR5M8vAiEeLDywwDd+ChVc3inUuZIuawsvIa0ypx48BIQtynGTJoZ5RXORTfUjX0FHW27t3ElyqUuJcf+w3xwUg8DBy9JoESulBRFLI/zrZeZaxaKr6uPkO5wPTOHY/HFc6vM+BZKu7u9nr9fbP+ZJKpBJvxxPLldJGTaI9x8cdlS/8b5HUxSn/V5Q5DtF4z0Hi2e2v7NWPnRJXw1vJdCW0StcJxfEShe+6mya5PabFF1EHwsbNg7LETekdRpagUFTx8+HXO0MfiNVYXGe1pEb0DdoMVzQs9IAf7D/x2Ny1SZEGfpn8IwxHv 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get last core price 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/mainnet/get-list-of-validators-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-list-of-validators-using-get 3 | title: "Get list of validators" 4 | description: "Get list of validators" 5 | sidebar_label: "Get list of validators" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKeNG2o27FFhQFihZY1l2CoGBt2iZmS6pEOysM//eBjhe4S3eURD59j3wjCNYJ7B52gpLgkIMPFFHYu9sSLNQkd5zkofqJLZcoPqbHxK6+2f6AHAJG7EgoqsQIDjsCCxj4F71CDuzAwktPUQ8lpSJyUOV1TaSXniOVYCX2lEMqGuoQ7AjyGlQtSWRXwzQd/tW4IclaTpL5KhvOeJBDR9L4hX6mlAYsGAxskto02vXkq6c3XYni8NdJH1uw0IiEZI3xgRwG3hQ+Uol+42NtQHnYVX5GZWmV9Tpw9s0XfUdO5hle+H6vQih26aHaURy4UJk+OitemVouyCXSP5bhXgcsGsq+bD5BvsK0xhyPxw3OrzPg0prM3e3X7f1u+1FbphzU44nl8+ki+CQdutUf/x3sGy/nDQn9FhNaZKdyM9O4DH2vi9bZzulSPxeDP+TQ+CRaO47PmOgxttOk16fk6DpKTvjcakgqbBNdgBTeCTkBCx++L3m6ys4RexdTn1YxHLDttWhe64CR9T+w+8O0ipOGfpr+AGC5GLE= 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get list of validators 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/mainnet/get-total-core-supply-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-total-core-supply-using-get 3 | title: "Get total core supply" 4 | description: "Get total core supply" 5 | sidebar_label: "Get total core supply" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKaFG3o25FFxQFhg1Y2lMQFKzN2MJkSZXoZIHh/z5Q8QJv6Y6SyKePj28ExjaD2cKGkTPsFIRICdkG/9iAgZb4KTC6+5BoM8ToTs/Z+vZh/QQKIibsiSmJwggeewIDGO1POoEC68HA20BJDg3lOtkowsuaRG+DTdSA4TSQglx31COYEfgURS1zsr6Fadr9q/FAXLGwVXVIVOVCBwp64i7M7AWSOzCgMVqdZUhdml6k6eXSlCkd/swxJAcGOuaYjdYhksdoV1LfYFiF1GoQGuv3oYBadkJ6F231JdRDT56LgVdTv1fBlPr8fb+hdLC1yAzJGw4ZFDhbk88kf8zW3kWsO6o+r25BLTCN1sfjcYXltQDOrVl/fbxff9usP0rLpEBmPLN8Ol/EkLlHv/jjf7b+NcplPUy/WEeH1otaQRpny7eyZbG2JEvBte07BV3ILKXj+IqZnpObJrk+p0aW0diMr04CskeX6YqjDp7JMxj48GPO0k11ide7lPK0iOAB3SBFZakHTFb+A7PdTYssSeCn6TcvIxch 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get total core supply 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/testnet/api-documentation.info.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: api-documentation 3 | title: "Api Documentation" 4 | description: "Api Documentation" 5 | sidebar_label: Introduction 6 | sidebar_position: 0 7 | hide_title: true 8 | custom_edit_url: null 9 | --- 10 | 11 | import ApiLogo from "@theme/ApiLogo"; 12 | import Heading from "@theme/Heading"; 13 | import SchemaTabs from "@theme/SchemaTabs"; 14 | import TabItem from "@theme/TabItem"; 15 | import Export from "@theme/ApiExplorer/Export"; 16 | 17 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 32 | Api Documentation 33 | 34 |
37 |

40 | Terms of Service 41 |

44 | {'urn:tos'} 45 | 46 |
49 |

52 | License 53 |

56 | Apache 2.0 57 | 58 |
59 | -------------------------------------------------------------------------------- /docs/api/testnet/get-block-number-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-block-number-using-get 3 | title: "Get block number" 4 | description: "Get block number" 5 | sidebar_label: "Get block number" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+K8U4boNlbj7p1WxAUGLphXU9BMMgOYwuxJVWikwaG//tAx+u8NkdR5ONH8g1gUyfoDdbETfYj+ucztgo+UDRsvbvbQaMm/tz66nDfdyXFx2RdvV79gkIw0XTEFEVigDMdQcMEe6AzFKyDxlNPUR47SlW0QUSXOZGeehtpB82xJ4VUNdQZ6AF8DqKWOFpXYxy3rzXWxFkpXJmbwKDQETd+Rp74uIFGYYItauKmIG5+l/9GgUKiePzL38cWGg1zSLqQopwp8U1ecpVyR3zy8VBAQKzb+4nRciuQt8FmX33Vd+R42tubga9lMMUufd8/UDzaSmT66DT7BIXWVuQSSY95q7fBVA1lN/lHqAWpLorT6ZSb6Tf3sS7m0lR8u/uyun9YfZCSUUHGvLB8ugSCT9wZt+hxZaP/TfFyFKZnLkJrrBOhiWaYt72R20LJBRoovN74VqHxiSVvGEqT6DG24yjhi1HkDjubTNmKJ/amTfQGovKOyTE03v2c7fM+e3HUVUT5WrjuaNpekqZjHk200g96sx0XHhKPj+MfBiIQsw== 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get block number 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/testnet/get-gas-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-gas-price-using-get 3 | title: "Get gas price" 4 | description: "Get gas price" 5 | sidebar_label: "Get gas price" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkstu2zAQRX9FuKsWYMU2S+6C1jACBG3QNCvDKGh5LBGRSIYc2TEE/XsxshoojyWH8zhz5w5gW2eYDdbETXGXwvMZW4UQKVl2wd/sYVATr22+S66ih+x8vV79gUK0yXbElKR+gLcdwcBG90hnKDgPg6eekjz2lKvkonRc5iR66l2iPQynnhRy1VBnYQbwOUq3zMn5GuO4fdtjTVzUNhdRqKDQETdhhp3guIGBttHpmrjRxM3fel4CCpnS8T95n1oYNMwxGy0VJVPmq3LHVS498SmkRw1BcP4QJjrHreBdR1f8CFXfkedJrnerfpTBlLr863BP6SgwBn3yhkOGQusq8plkxqzndbRVQ8VV+RVqQWq0Pp1OpZ1+y5BqPZdmfXvzffXzfvVFSkYFWfPC8u0SiCFzZ/1ixlstX63wcgumZ9axtc5LlwllmHXeyEmhRPsGCq+03io0IbMkDcPOZnpI7ThK+GIOucDeZbtrxQcH22Z6R1AFz+QZBp9+z5b5XLy46EM++Vo47WjbXpKmMx5tcjIPZrMdF9YRX4/jP9aHClU= 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get gas price 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/testnet/get-last-core-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-last-core-price-using-get 3 | title: "Get last core price" 4 | description: "Get last core price" 5 | sidebar_label: "Get last core price" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+KwdMGaNbWo25FFxQFim1Y1lMQFIrD2EJtSSXpZIXh/z7QcQuvzVESH/Xx8Q0gvmZwG1iLF4atgZSRvIQU7/bgoEa59yw3ifAXhQofOMT6dvUHDGRPvkNBUv0A0XcIDnwOT/gCBkIEB889kh72yBWFrG2XNYTPfSDcgxPq0QBXDXYe3ADykrUbC4VYwzhu3/e4RSlaz1JUibDIygYGOpQmzdwTojTgwPocLOuAViWPKnl8lTDS8XWGnlpw0IhkdlZVpSDLVbmTisuIckr0ZEFhQjykiTNIq6DXORTfU9V3GGVy78PQlyoEqeOfhzXSUWEc9BSdJAYDbagwMuofs7PX2VcNFlflVzALUmft6XQq/fRaJqrtLGV7f3ez+rFefVHJaEDHPLN8O1/kxNL5uPjjsqv/DfK2G8G/YnPrQ9ReE9AwO77RFau3U6gMvHd9a6BJLFo4DDvP+EDtOOr1OTC6i31gv2s1GwffMn6gqFIUjAIOPv2eY/S5eEvWRUZ9WqTv6Ntei6aFHj0F/Q/cZjsugqRZH8d/NPgS7g== 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get last core price 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/testnet/get-list-of-validators-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-list-of-validators-using-get 3 | title: "Get list of validators" 4 | description: "Get list of validators" 5 | sidebar_label: "Get list of validators" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFr3DAQhf+KmVMLrtXkqFtolxAICXSbXpYlaO2xLSJLimbsbTD+72W87uJ006Okmadv3rwR2DQEegdbNkywzyFETIZt8HcVaGiQ7y3xY/3LOFsZDomeyPrmdvMTcogmmQ4Zk0iM4E2HoMFE+4JvkIP1oOG1xySHCqlMNoryuibha28TVqA59ZgDlS12BvQI/BZFjThZ38A07f/VuEXOnCXOQp0NZzzIoUNuw0I/U3ILGpSJVpGMqaTrOdTP77oI0/B3kj450NAyR9JKGgtG4uviwCUVHvkY0osCQbK+DjOtZSe4N9Fm30PZd+h5tvFi9I8qGFNHj/UW02BLkemT1xwEy9kSPaH8sfh7E03ZYnZdfIV8RaqVOh6PhZlfi5AatbSSur/7tnnYbr5Iy5SDjHliuTpdxEDcGb/647/evpvlvCTG36yiM9aL3Mw0Lr7vZNdi7xwwmefC+30ObSCW2nE8GMKn5KZJrk/hkY1UlszBSU5q4wgvQMrgGT2Dhk8/lkh9zs4p+xBTnlZJHIzrpWhe62CSlf9A7/bTKlGS+2n6A58SGbA= 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get list of validators 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/testnet/get-total-core-supply-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-total-core-supply-using-get 3 | title: "Get total core supply" 4 | description: "Get total core supply" 5 | sidebar_label: "Get total core supply" 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKaNbWo25FFxQFhg5Y2lMQFIrD2EJtSSXpZIHh/z7Q8YJs6Y6SyKePj28A8TWDW8FSvDCsDaSM5CWk+LgFBzXKcxLf3ifCZZ9ze3zhEOuHxTMYyJ58h4KkCgNE3yE48Dm84REMhAgO3nskPWyRKwpZhS9rCN/7QLgFJ9SjAa4a7Dy4AeSYVY2FQqxhHNf/ajygFKJsRZUIC57owECH0qSZfYKUBhxYn4NlHdJOTa/a9HpuYqT9nzl6asFBI5LZWe0rBVluy41UXEaUQ6I3CwoU4i5NrEFahb3LofiWqr7DKJOHV4N/VCFIHf/YLZH2oVKZnqKTxGCgDRVGRv1jdvcu+6rB4rb8AuaC1Fl7OBxKP72WiWo7t7L9/ni/eFouPmvLaEDHPLF8PV3kxNL5ePHH/5z9a5TzhgR/ic2tD1HVJqRhdn2li1Z3p3AZuHZ+baBJLFo6DBvP+ELtOOr1KTi6j21gv2k1IzvfMl5xVCkKRgEHn37Ocbopzgn7kFKfLlK4922vRdNS956C/gdutR4v4qSZH8ffaK4YIA== 9 | sidebar_class_name: "get api-method" 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | 38 | 39 | Get total core supply 40 | 41 | 47 | 48 | 49 | 52 | 53 | 54 | 55 | 59 | 60 | 61 | 62 | 67 | 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /docs/api/tutorials/common-error-messages.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Common Error Messages 3 | description: Common Error Messages while using Core Scan API 4 | hide_table_of_contents: false 5 | sidebar_position: 2 6 | --- 7 | 8 | 9 | # Core API Common Error Messages 10 | 11 | An API call that encounters an error will return 0 as its status code and display the cause of the error in the result field. 12 | 13 | ```json 14 | { 15 | "status":"0", 16 | "message":"NOTOK", 17 | "result":"Max rate limit reached" 18 | } 19 | ``` 20 | 21 | *** 22 | 23 | ## Max rate limit 24 | 25 | > "Max rate limit reached" 26 | 27 | This error occurs when you exceed the rate limit assigned to your specific API key. To resolve, adhere to your available plan by waiting for a certain amount of time before each request. If you are using a script or application, apply throttling to limit the frequency of calls. 28 | 29 | Reference for various API tiers and their rate limits 🚧. 30 | 31 | | API Tier | Rate Limit | 32 | | :------: | :-------------------------------------: | 33 | | Free | 5 calls/second , up to 10,000 calls/day | 34 | 35 | *** 36 | 37 | ## Missing or invalid action 38 | 39 | > "Error! Missing or invalid action name" 40 | 41 | This error occurs when you do not specify, or specify an invalid module and action name. To resolve, double check your API query to use a valid module and action name. If you require some help getting started, try copying the sample queries provided in the documents and pasting them into your browser. 42 | 43 | *** 44 | 45 | ## API specific errors 46 | 47 | > "Error! Block number already pass" "Error! Invalid address format" "Contract source code not verified" 48 | 49 | These error messages returned are specific to certain APIs and related parameters. To resolve, kindly refer to the specific API's documentation, and check for the correct format or values to be specified as parameters. 50 | -------------------------------------------------------------------------------- /docs/api/tutorials/generate-an-api-key.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Generate an API Key 3 | description: Generate an API Key on Core Scan 4 | hide_table_of_contents: false 5 | sidebar_position: 2 6 | --- 7 | 8 | # Generate Core Scan API Key 9 | 10 | ## Creating an API Key 11 | 12 | From your [Account Dashboard](https://scan.coredao.org/my/account), click on the navigation tab labelled **API-KEYs**. 13 | 14 | ![account-dashboard](../assets/image(7).png) 15 | 16 | From there, you may click on **Add** to create a new key and give a name to your project. Each Core Scan account is limited to create 3 keys at any one time. 17 | 18 | ![create-key](../assets/image(1).png) 19 | 20 | ## Editing an API Key 21 | 22 | To change your project name associated with an API Key, click on **Edit** to specify a new App Name, and save the changes. 23 | 24 | ![edit-key](../assets/image(9).png) -------------------------------------------------------------------------------- /docs/stakingAPI/mainnet/core-staking-api.info.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: core-staking-api 3 | title: "Core Staking API" 4 | description: "API documentation Core's Staking API" 5 | sidebar_label: Introduction 6 | sidebar_position: 0 7 | hide_title: true 8 | custom_edit_url: null 9 | --- 10 | 11 | import ApiLogo from "@theme/ApiLogo"; 12 | import Heading from "@theme/Heading"; 13 | import SchemaTabs from "@theme/SchemaTabs"; 14 | import TabItem from "@theme/TabItem"; 15 | import Export from "@theme/ApiExplorer/Export"; 16 | 17 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 32 | API documentation Core's Staking API 33 | 34 | 35 | -------------------------------------------------------------------------------- /docs/stakingAPI/testnet/core-staking-api.info.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: core-staking-api 3 | title: "Core Staking API Testnet" 4 | description: "API documentation Core's Staking API" 5 | sidebar_label: Introduction 6 | sidebar_position: 0 7 | hide_title: true 8 | custom_edit_url: null 9 | --- 10 | 11 | import ApiLogo from "@theme/ApiLogo"; 12 | import Heading from "@theme/Heading"; 13 | import SchemaTabs from "@theme/SchemaTabs"; 14 | import TabItem from "@theme/TabItem"; 15 | import Export from "@theme/ApiExplorer/Export"; 16 | 17 | 21 | 22 | 23 | 28 | 29 | 30 | 31 | 32 | API documentation Core's Staking API 33 | 34 | 35 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Recent posts", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "link.item.label.Core DAO": { 3 | "message": "Core DAO", 4 | "description": "The label of footer link with label=Core DAO linking to https://coredao.org/" 5 | }, 6 | "link.item.label.Docs": { 7 | "message": "Docs", 8 | "description": "The label of footer link with label=Docs linking to /docs/intro" 9 | }, 10 | "link.item.label.Explorer": { 11 | "message": "Explorer", 12 | "description": "The label of footer link with label=Explorer linking to https://scan.coredao.org/" 13 | }, 14 | "link.item.label.Blog": { 15 | "message": "Blog", 16 | "description": "The label of footer link with label=Blog linking to https://coredao.org/explore/blog" 17 | }, 18 | "link.item.label.Discord": { 19 | "message": "Discord", 20 | "description": "The label of footer link with label=Discord linking to https://discord.com/invite/coredaoofficial" 21 | }, 22 | "link.item.label.X (formerly Twitter)": { 23 | "message": "X (formerly Twitter)", 24 | "description": "The label of footer link with label=X (formerly Twitter) linking to https://twitter.com/Coredao_Org" 25 | }, 26 | "link.item.label.Telegram": { 27 | "message": "Telegram", 28 | "description": "The label of footer link with label=Telegram linking to https://t.me/CoreDAOTelegram" 29 | }, 30 | "copyright": { 31 | "message": "Copyright © 2024 Core DAO", 32 | "description": "The footer copyright" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /i18n/en/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Core DAO", 4 | "description": "The title in the navbar" 5 | }, 6 | "logo.alt": { 7 | "message": "Core DAO Logo", 8 | "description": "The alt text of navbar logo" 9 | }, 10 | "item.label.Learn": { 11 | "message": "Learn", 12 | "description": "Navbar item with label Learn" 13 | }, 14 | "item.label.Developer Guide": { 15 | "message": "Developer Guide", 16 | "description": "Navbar item with label Developer Guide" 17 | }, 18 | "item.label.Run a Node": { 19 | "message": "Run a Node", 20 | "description": "Navbar item with label Run a Node" 21 | }, 22 | "item.label.Staking & Delegation": { 23 | "message": "Staking & Delegation", 24 | "description": "Navbar item with label Staking & Delegation" 25 | }, 26 | "item.label.Core API": { 27 | "message": "Core API", 28 | "description": "Navbar item with label Core API" 29 | }, 30 | "item.label.FAQs": { 31 | "message": "FAQs", 32 | "description": "Navbar item with label FAQs" 33 | }, 34 | "item.label.Staking API": { 35 | "message": "Staking API", 36 | "description": "Navbar item with label Staking API" 37 | }, 38 | "item.label.GitHub": { 39 | "message": "GitHub", 40 | "description": "Navbar item with label GitHub" 41 | }, 42 | "item.label.Blog": { 43 | "message": "Blog", 44 | "description": "Navbar item with label Blog" 45 | }, 46 | "item.label.Build": { 47 | "message": "Build", 48 | "description": "Navbar item with label Build" 49 | }, 50 | "item.label.Stake & Delegate": { 51 | "message": "Stake & Delegate", 52 | "description": "Navbar item with label Stake & Delegate" 53 | }, 54 | "item.label.API": { 55 | "message": "API", 56 | "description": "Navbar item with label API" 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog\ntitulo", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog\ndescripcion", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Entradas recientes", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/Dev-Guide/core-explorer.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Explorador de Bloques 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Explorador de cadena de bloques de Core Scan 8 | 9 | --- 10 | 11 | import Tabs from '@theme/Tabs'; 12 | import TabItem from '@theme/TabItem'; 13 | 14 | Core Explorer es una interfaz gráfica de usuario diseñada para permitir a los usuarios interactuar con la cadena de bloques CORE. A través de esta interfaz, un usuario puede buscar información sobre los bloques que se han agregado a la cadena de bloques, las transacciones que se han producido en la cadena de bloques, los saldos de la billetera y la información sobre tCORE y los tokens CORE. Core Network proporciona exploradores tanto para su red principal como para su red de prueba. 15 | 16 | 21 | 22 | 23 | - **Core Testnet2 Explorer:** https://scan.test2.btcs.network/ 24 | 25 | 26 | 27 | - **Core Testnet1 Explorer:** https://scan.test.btcs.network/ 28 | 29 | 30 | 31 | - **Core Mainnet Explorer:** https://scan.coredao.org/ 32 | 33 | 34 | 35 | 36 | ### Usando el Explorador de Core Scan 37 | 38 | Puede utilizar el explorador de cadena de bloques Testnet Core Scan para buscar y revisar transacciones. Copie la dirección de su cuenta de MetaMask y búsquela en el explorador. En la siguiente imagen podemos ver dos transacciones relacionadas con nuestra cuenta: 39 | 40 | - Aquel en el que obtuvimos tCORE de Faucet; 41 | - Aquel en el que enviamos tCORE a otra dirección; 42 | 43 | ![núcleo-explorador](../../../../../static/img/core-explorer.png) 44 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/Dev-Guide/core-faucet.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Faucet 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Grifo de Core Testnet 8 | 9 | --- 10 | 11 | Para ayudar a los usuarios a comenzar y permitir a los desarrolladores crear rápidamente prototipos de sus dApps, Core ha lanzado el Core Testnet Faucet público para distribuir tokens de Core testnet, **tCORE** o **tCORE2**. 12 | 13 | ## Pasos para obtener tCORE/tCORE2 del faucet de Core Testnet 14 | 15 | 1. Navegue al sitio web de faucet. 16 | 17 | - **Para Core Blockchain Testnet (1114) Faucet:** https://scan.test2.btcs.network/faucet 18 | - **For Core Blockchain Testnet (1115) Faucet:** https://scan.test.btcs.network/faucet 19 | 20 | 2. Pegue su dirección en el cuadro de texto proporcionado. Asegúrese de proporcionar la dirección Core Testnet de su billetera que desea recibir fondos con tCORE o tCORE2. 21 | 22 | 3. Complete el CAPTCHA. 23 | 24 | 4. Si usa faucet para Core Blockchain Testnet (1114), haga clic en el botón "Obtener tCORE2". Después de solicitar tCORE del grifo, verá que el balance de su MetaMask aumenta. 25 | 26 |

27 | ![using-faucet-test2](../../../../../static/img/faucet/faucet-test2.png) 28 |

29 | 30 | 5. Si usa faucet para Core Blockchain Testnet (1115), haga clic en el botón "Obtener tCORE". Después de solicitar con éxito tCORE2 desde el faucet, verá aumentar el saldo de su billetera. 31 | 32 |

33 | ![using-faucet](../../../../../static/img/faucet/faucet.png) 34 |

35 | 36 | :::caution 37 | Cada dirección puede solicitar **solo un tCORE o tCORE2 por día** del faucet en 24 horas. Si se quedó sin tCORE o tCORE2 y el faucet no le envía más debido al límite diario de un tCORE o tCORE2, regrese después de 24 horas e inténtelo nuevamente. O bien, puede solicitarlo en el servidor Discord de Core. 38 | ::: 39 | 40 | :::note 41 | tCORE y tCORE2 solo se usan para pruebas y no tienen ningún valor. No lo use para transacciones financieras reales. 42 | ::: 43 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/Learn/bug-reporting.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: "**Reportando Vulnerabilidades de Seguridad**" 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Reportando un Bug o una Vulnerabilidad de Seguridad 8 | 9 | Si has descubierto una vulnerabilidad de seguridad que afecta a la blockchain de Core, su red o infraestructura, por favor repórtala directamente con nosotros. 10 | 11 | ### Cómo reportar 12 | 13 | Para garantizar una respuesta rápida y efectiva, envía un correo electrónico a **[bug-report@coredao.org](mailto:bug-report@coredao.org)** con los siguientes detalles: 14 | 15 | - **Recurso Afectado**: Especifica el componente afectado, como un repositorio de GitHub, una URL, un contrato inteligente u otra infraestructura. 16 | - **Descripción e Impacto**: Proporciona una explicación detallada de la vulnerabilidad, sus riesgos potenciales y cómo podría ser explotada. 17 | - **Pasos para Reproducir**: Incluye una guía paso a paso sobre cómo descubriste el problema. Menciona cualquier herramienta o técnica utilizada. 18 | - **Prueba de Concepto (PoC)**: Si es posible, proporciona una prueba de concepto funcional que demuestre la vulnerabilidad en acción. 19 | 20 | Tu contribución a la seguridad de Core es muy valorada, y agradecemos tus esfuerzos para mantener seguro el ecosistema de Core. 21 | 22 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/Node/maintenance/network-upgrade.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Upgrading Geth 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # How to Upgrade Geth 8 | 9 | Updating `geth` is as easy as it gets. You just need to download and install the newer version of `geth`, shutdown your node and restart with the new software. Geth will automatically use the data of your old node and sync the latest blocks that were mined since you shut down the old software. 10 | 11 | ### Step 1: Compile the New Version or download new pre-build binaries from release 12 | 13 | ```bash 14 | git clone https://github.com/coredao-org/core-chain 15 | 16 | make geth 17 | ``` 18 | 19 | ```bash 20 | # Download pre-build binaries 21 | 22 | # Linux 23 | wget $(curl -s https://github.com/coredao-org/core-chain/releases/latest |grep browser_ |grep geth_linux |cut -d\" -f4) 24 | mv geth_linux geth 25 | chmod -v u+x geth 26 | 27 | # MacOS 28 | wget $(curl -s https://github.com/coredao-org/core-chain/releases/latest |grep browser_ |grep geth_mac |cut -d\" -f4) 29 | mv geth_mac geth 30 | chmod -v u+x geth 31 | make geth 32 | ``` 33 | 34 | 35 | ### Step 2: Stop Geth 36 | 37 | ``` 38 | 39 | $ pid=`ps -ef | grep geth | grep -v grep | awk '{print $2}'` 40 | $ kill $pid 41 | 42 | ``` 43 | 44 | 45 | ### Step 3: Restart 46 | :::note 47 | Make sure to use the same start-up command you used before the upgrade. 48 | ::: 49 | 50 | ```bash 51 | ## 52 | ./geth --config ./config.toml --datadir ./node --cache 8000 --rpc.allow-unprotected-txs --txlookuplimit 0 53 | ``` -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/Node/slashing/slashing-fee.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Slashing Fee 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Slashing Fees 8 | --- 9 | 10 | ## Unavailability 11 | Slashing penalties are generally incurred because a node fails to successfully produce a block during its designated turn in the **round-robin block-mining** procedure as described in the [Validator Election](../../Node/validator/validator-election.md) section. 12 | 13 | * If a validator node fails to mine **50 blocks** in a row, the CORE token rewards the validator has accrued so far are slashed completely. 14 | * If a validator node fails to mine the first **49 blocks** in a round, and then misses the last block of the same round, this will lead to slashing of the entire CORE token rewards the validator has accrued so far. 15 | * If they fail on the last **50** blocks of the round, they surrender everything they’ve earned. 16 | * If a validator fails to mine **150 blocks** in a row, they surrender their share of the daily CORE token rewards, they lose **10%** of the deposit made to become a validator, i.e., 1,000 CORE, and they are jailed for **three** days, which means they aren’t eligible to be elected to the validator set. 17 | 18 | ## Double Sign 19 | Anyone can submit a slash request with the evidence of double signing activity on the Core blockchain. 20 | 21 | ### Evidence Validation 22 | * Two block headers have the same height and the same parent block hash 23 | * Two block headers are sealed by the same validator 24 | * Two signatures of these two blocks must not be the same 25 | * The validator should be in the set of current round’s validators. 26 | 27 | If the evidence is valid: 28 | 1. **10,000 CORE** i.e., the entire self-margined CORE of the validator will be slashed. 29 | 2. The slashed validator would be jailed and barred from the network forever 30 | 3. **500** of slashed CORE would be allocated to the submitter as a reward 31 | 4. The rest of slashed CORE will transfer into System Reward Pool 32 | 33 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(1).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(10).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(2).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(3).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(4).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(5).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(6).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(7).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(8).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image(9).png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/es/docusaurus-plugin-content-docs/current/api/assets/image.png -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/mainnet/get-block-number-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-block-number-using-get 3 | title: Get block number 4 | description: Get block number 5 | sidebar_label: Get block number 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtksFu2zAQRH9FmFMLsFbTI29paxgBgrRompNhFJS0lohIJEOu7BiC/r1YWU3UxEeSy9m3szOATZ2gt9gQN9nP6J9P2Cn4QNGw9e6mgkZN/LX15eNd3xUUH5J19Wb9GwrBRNMRUxSJAc50BA0T7COdoGAdNJ56inKoKJXRBhFd1kR66m2kCppjTwqpbKgz0AP4FEQtcbSuxjju3mpsiLNCuDI3gUGhI278jDzxcQON3ASb18RNTtz8KV5HgUKiePjH38cWGg1zSDrPfSBngl2VPlJl/MrHOodQWLf3E6DlVgivg82++7LvyPFk2rtpL1UwxS792N9TPNhSZProNPsEhdaW5BJJj9nS62DKhrIvq89QC0yd58fjcWWm1wlw/pry25tv67v79Sf5MirIjGeWq/NF8Ik74xY9Ltj53xQvG2F65jy0xjoRmmiG2eqtLBZK7G+g8NbunULjE0vdMBQm0UNsx1GuzymRJVQ2maKVQOxNm+gdROkdk2NofPg1Z+dj9hKni4jytIjcwbS9FE3LPJhopR/0djcuAiQBH8e/37QPtA== 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get block number 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/mainnet/get-gas-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-gas-price-using-get 3 | title: Get gas price 4 | description: Get gas price 5 | sidebar_label: Get gas price 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkstu2zAQRX9FuKsWYK22S+6C1jACFG3QNCvDKCbyWCIikQw5smMI+vdiZDVQHksO53Hmzh0gVGfYLTYsTXGTwtMZO4MQOZG44K/3sKhZNpRvkqv4Ljtfb9Z/YBApUcfCSesHeOoYFhTdA59h4DwsHntO+thzrpKL2nGZk/ixd4n3sJJ6NshVwx3BDpBz1G5ZkvM1xnH3useGpagpF1GpYNCxNGGGneCkgUVJ0ZU1S1OyNH/reQkYZE7H/+R9amHRiMRsyzJE9hTdqgqJ9xRWIdUldL7zhzChOWmV7Sq64nuo+o69TFq92fO9DOHU5V+HW05HJbHok7cSMgxaV7HPrDNmMa8iVQ0XX1efYRaYtixPp9OKpt8JcC7N5Y/rb+uft+tPWjIa6I4Xli+XQAxZOvKLGa+FfLHC8yGEn6SMLTmvXSaUYRZ5q/eEUeEbGLwQemfQhCyaNAz3lPkuteOo4YszVP69y3TfqgkO1GZ+Q1AFL+wFFh9+z375WDxb6F0+/VrY7Ehtr0nTGY+UnM6D3e7GhW/U1OP4D8GYCVY= 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get gas price 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/mainnet/get-last-core-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-last-core-price-using-get 3 | title: Get last core price 4 | description: Get last core price 5 | sidebar_label: Get last core price 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+KwdMGeNG2o25FFxQFim1Y1lMQFKzN2MJsSSXpZIXh/z7QSQuvzVESH/Xx8Y2g2Aj4LWwUVWBXQsrEqCHF2xo8NKR3KHqdmH5yqOheQmxu1r+hhIyMPSmx6UeI2BN4wBz+0DOUECJ4eBqI7VCTVByytV3WMD0NgakGrzxQCVK11CP4EfQ5WzdRDrGBadq97XFDWnQoWlSJqcjGBiX0pG06c8+I2oIHhzk4sQGdSR5M8vAiEeLDywwDd+ChVc3inUuZIuawsvIa0ypx48BIQtynGTJoZ5RXORTfUjX0FHW27t3ElyqUuJcf+w3xwUg8DBy9JoESulBRFLI/zrZeZaxaKr6uPkO5wPTOHY/HFc6vM+BZKu7u9nr9fbP+ZJKpBJvxxPLldJGTaI9x8cdlS/8b5HUxSn/V5Q5DtF4z0Hi2e2v7NWPnRJXw1vJdCW0StcJxfEShe+6mya5PabFF1EHwsbNg7LETekdRpagUFTx8+HXO0MfiNVYXGe1pEb0DdoMVzQs9IAf7D/x2Ny1SZEGfpn8IwxHv 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get last core price 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/mainnet/get-list-of-validators-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-list-of-validators-using-get 3 | title: Get list of validators 4 | description: Get list of validators 5 | sidebar_label: Get list of validators 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKeNG2o27FFhQFihZY1l2CoGBt2iZmS6pEOysM//eBjhe4S3eURD59j3wjCNYJ7B52gpLgkIMPFFHYu9sSLNQkd5zkofqJLZcoPqbHxK6+2f6AHAJG7EgoqsQIDjsCCxj4F71CDuzAwktPUQ8lpSJyUOV1TaSXniOVYCX2lEMqGuoQ7AjyGlQtSWRXwzQd/tW4IclaTpL5KhvOeJBDR9L4hX6mlAYsGAxskto02vXkq6c3XYni8NdJH1uw0IiEZI3xgRwG3hQ+Uol+42NtQHnYVX5GZWmV9Tpw9s0XfUdO5hle+H6vQih26aHaURy4UJk+OitemVouyCXSP5bhXgcsGsq+bD5BvsK0xhyPxw3OrzPg0prM3e3X7f1u+1FbphzU44nl8+ki+CQdutUf/x3sGy/nDQn9FhNaZKdyM9O4DH2vi9bZzulSPxeDP+TQ+CRaO47PmOgxttOk16fk6DpKTvjcakgqbBNdgBTeCTkBCx++L3m6ys4RexdTn1YxHLDttWhe64CR9T+w+8O0ipOGfpr+AGC5GLE= 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get list of validators 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/mainnet/get-total-core-supply-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-total-core-supply-using-get 3 | title: Get total core supply 4 | description: Get total core supply 5 | sidebar_label: Get total core supply 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKaFG3o25FFxQFhg1Y2lMQFKzN2MJkSZXoZIHh/z5Q8QJv6Y6SyKePj28ExjaD2cKGkTPsFIRICdkG/9iAgZb4KTC6+5BoM8ToTs/Z+vZh/QQKIibsiSmJwggeewIDGO1POoEC68HA20BJDg3lOtkowsuaRG+DTdSA4TSQglx31COYEfgURS1zsr6Fadr9q/FAXLGwVXVIVOVCBwp64i7M7AWSOzCgMVqdZUhdml6k6eXSlCkd/swxJAcGOuaYjdYhksdoV1LfYFiF1GoQGuv3oYBadkJ6F231JdRDT56LgVdTv1fBlPr8fb+hdLC1yAzJGw4ZFDhbk88kf8zW3kWsO6o+r25BLTCN1sfjcYXltQDOrVl/fbxff9usP0rLpEBmPLN8Ol/EkLlHv/jjf7b+NcplPUy/WEeH1otaQRpny7eyZbG2JEvBte07BV3ILKXj+IqZnpObJrk+p0aW0diMr04CskeX6YqjDp7JMxj48GPO0k11ide7lPK0iOAB3SBFZakHTFb+A7PdTYssSeCn6TcvIxch 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get total core supply 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/testnet/get-block-number-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-block-number-using-get 3 | title: Get block number 4 | description: Get block number 5 | sidebar_label: Get block number 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+K8U4boNlbj7p1WxAUGLphXU9BMMgOYwuxJVWikwaG//tAx+u8NkdR5ONH8g1gUyfoDdbETfYj+ucztgo+UDRsvbvbQaMm/tz66nDfdyXFx2RdvV79gkIw0XTEFEVigDMdQcMEe6AzFKyDxlNPUR47SlW0QUSXOZGeehtpB82xJ4VUNdQZ6AF8DqKWOFpXYxy3rzXWxFkpXJmbwKDQETd+Rp74uIFGYYItauKmIG5+l/9GgUKiePzL38cWGg1zSLqQopwp8U1ecpVyR3zy8VBAQKzb+4nRciuQt8FmX33Vd+R42tubga9lMMUufd8/UDzaSmT66DT7BIXWVuQSSY95q7fBVA1lN/lHqAWpLorT6ZSb6Tf3sS7m0lR8u/uyun9YfZCSUUHGvLB8ugSCT9wZt+hxZaP/TfFyFKZnLkJrrBOhiWaYt72R20LJBRoovN74VqHxiSVvGEqT6DG24yjhi1HkDjubTNmKJ/amTfQGovKOyTE03v2c7fM+e3HUVUT5WrjuaNpekqZjHk200g96sx0XHhKPj+MfBiIQsw== 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get block number 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/testnet/get-gas-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-gas-price-using-get 3 | title: Get gas price 4 | description: Get gas price 5 | sidebar_label: Get gas price 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkstu2zAQRX9FuKsWYMU2S+6C1jACBG3QNCvDKGh5LBGRSIYc2TEE/XsxshoojyWH8zhz5w5gW2eYDdbETXGXwvMZW4UQKVl2wd/sYVATr22+S66ih+x8vV79gUK0yXbElKR+gLcdwcBG90hnKDgPg6eekjz2lKvkonRc5iR66l2iPQynnhRy1VBnYQbwOUq3zMn5GuO4fdtjTVzUNhdRqKDQETdhhp3guIGBttHpmrjRxM3fel4CCpnS8T95n1oYNMwxGy0VJVPmq3LHVS498SmkRw1BcP4QJjrHreBdR1f8CFXfkedJrnerfpTBlLr863BP6SgwBn3yhkOGQusq8plkxqzndbRVQ8VV+RVqQWq0Pp1OpZ1+y5BqPZdmfXvzffXzfvVFSkYFWfPC8u0SiCFzZ/1ixlstX63wcgumZ9axtc5LlwllmHXeyEmhRPsGCq+03io0IbMkDcPOZnpI7ThK+GIOucDeZbtrxQcH22Z6R1AFz+QZBp9+z5b5XLy46EM++Vo47WjbXpKmMx5tcjIPZrMdF9YRX4/jP9aHClU= 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get gas price 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/testnet/get-last-core-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-last-core-price-using-get 3 | title: Get last core price 4 | description: Get last core price 5 | sidebar_label: Get last core price 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+KwdMGaNbWo25FFxQFim1Y1lMQFIrD2EJtSSXpZIXh/z7QcQuvzVESH/Xx8Q0gvmZwG1iLF4atgZSRvIQU7/bgoEa59yw3ifAXhQofOMT6dvUHDGRPvkNBUv0A0XcIDnwOT/gCBkIEB889kh72yBWFrG2XNYTPfSDcgxPq0QBXDXYe3ADykrUbC4VYwzhu3/e4RSlaz1JUibDIygYGOpQmzdwTojTgwPocLOuAViWPKnl8lTDS8XWGnlpw0IhkdlZVpSDLVbmTisuIckr0ZEFhQjykiTNIq6DXORTfU9V3GGVy78PQlyoEqeOfhzXSUWEc9BSdJAYDbagwMuofs7PX2VcNFlflVzALUmft6XQq/fRaJqrtLGV7f3ez+rFefVHJaEDHPLN8O1/kxNL5uPjjsqv/DfK2G8G/YnPrQ9ReE9AwO77RFau3U6gMvHd9a6BJLFo4DDvP+EDtOOr1OTC6i31gv2s1GwffMn6gqFIUjAIOPv2eY/S5eEvWRUZ9WqTv6Ntei6aFHj0F/Q/cZjsugqRZH8d/NPgS7g== 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get last core price 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/testnet/get-total-core-supply-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-total-core-supply-using-get 3 | title: Get total core supply 4 | description: Get total core supply 5 | sidebar_label: Get total core supply 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKaNbWo25FFxQFhg5Y2lMQFIrD2EJtSSXpZIHh/z7Q8YJs6Y6SyKePj28A8TWDW8FSvDCsDaSM5CWk+LgFBzXKcxLf3ifCZZ9ze3zhEOuHxTMYyJ58h4KkCgNE3yE48Dm84REMhAgO3nskPWyRKwpZhS9rCN/7QLgFJ9SjAa4a7Dy4AeSYVY2FQqxhHNf/ajygFKJsRZUIC57owECH0qSZfYKUBhxYn4NlHdJOTa/a9HpuYqT9nzl6asFBI5LZWe0rBVluy41UXEaUQ6I3CwoU4i5NrEFahb3LofiWqr7DKJOHV4N/VCFIHf/YLZH2oVKZnqKTxGCgDRVGRv1jdvcu+6rB4rb8AuaC1Fl7OBxKP72WiWo7t7L9/ni/eFouPmvLaEDHPLF8PV3kxNL5ePHH/5z9a5TzhgR/ic2tD1HVJqRhdn2li1Z3p3AZuHZ+baBJLFo6DBvP+ELtOOr1KTi6j21gv2k1IzvfMl5xVCkKRgEHn37Ocbopzgn7kFKfLlK4922vRdNS956C/gdutR4v4qSZH8ffaK4YIA== 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get total core supply 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/tutorials/common-error-messages.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Common Error Messages 3 | description: Common Error Messages while using Core Scan API 4 | hide_table_of_contents: false 5 | sidebar_position: 2 6 | --- 7 | 8 | # Core API Common Error Messages 9 | 10 | An API call that encounters an error will return 0 as its status code and display the cause of the error in the result field. 11 | 12 | ```json 13 | { 14 | "status":"0", 15 | "message":"NOTOK", 16 | "result":"Max rate limit reached" 17 | } 18 | ``` 19 | 20 | *** 21 | 22 | ## Max rate limit 23 | 24 | > "Max rate limit reached" 25 | 26 | This error occurs when you exceed the rate limit assigned to your specific API key. To resolve, adhere to your available plan by waiting for a certain amount of time before each request. If you are using a script or application, apply throttling to limit the frequency of calls. 27 | 28 | Reference for various API tiers and their rate limits 🚧. 29 | 30 | | API Tier | Rate Limit | 31 | | :------: | :-------------------------------------: | 32 | | Free | 5 calls/second , up to 10,000 calls/day | 33 | 34 | *** 35 | 36 | ## Missing or invalid action 37 | 38 | > "Error! Missing or invalid action name" 39 | 40 | This error occurs when you do not specify, or specify an invalid module and action name. To resolve, double check your API query to use a valid module and action name. If you require some help getting started, try copying the sample queries provided in the documents and pasting them into your browser. 41 | 42 | *** 43 | 44 | ## API specific errors 45 | 46 | > "Error! Block number already pass" "Error! Invalid address format" "Contract source code not verified" 47 | 48 | These error messages returned are specific to certain APIs and related parameters. To resolve, kindly refer to the specific API's documentation, and check for the correct format or values to be specified as parameters. 49 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/api/tutorials/generate-an-api-key.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Generate an API Key 3 | description: Generate an API Key on Core Scan 4 | hide_table_of_contents: false 5 | sidebar_position: 2 6 | --- 7 | 8 | # Generate Core Scan API Key 9 | 10 | ## Creating an API Key 11 | 12 | From your [Account Dashboard](https://scan.coredao.org/my/account), click on the navigation tab labelled **API-KEYs**. 13 | 14 | ![account-dashboard](../assets/image(7).png) 15 | 16 | From there, you may click on **Add** to create a new key and give a name to your project. Each Core Scan account is limited to create 3 keys at any one time. 17 | 18 | ![create-key](../assets/image(1).png) 19 | 20 | ## Editing an API Key 21 | 22 | To change your project name associated with an API Key, click on **Edit** to specify a new App Name, and save the changes. 23 | 24 | ![edit-key](../assets/image(9).png) -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/stakingAPI/mainnet/core-staking-api.info.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: core-staking-api 3 | title: Core Staking API 4 | description: API documentation Core's Staking API 5 | sidebar_label: Introduction 6 | sidebar_position: 0 7 | hide_title: true 8 | custom_edit_url: null 9 | --- 10 | 11 | import ApiLogo from "@theme/ApiLogo"; 12 | import Heading from "@theme/Heading"; 13 | import SchemaTabs from "@theme/SchemaTabs"; 14 | import TabItem from "@theme/TabItem"; 15 | import Export from "@theme/ApiExplorer/Export"; 16 | 17 | 21 | 22 | 23 | 28 | 29 | 30 | API documentation Core's Staking API 31 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-plugin-content-docs/current/stakingAPI/testnet/core-staking-api.info.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: core-staking-api 3 | title: Core Staking API Testnet 4 | description: API documentation Core's Staking API 5 | sidebar_label: Introduction 6 | sidebar_position: 0 7 | hide_title: true 8 | custom_edit_url: null 9 | --- 10 | 11 | import ApiLogo from "@theme/ApiLogo"; 12 | import Heading from "@theme/Heading"; 13 | import SchemaTabs from "@theme/SchemaTabs"; 14 | import TabItem from "@theme/TabItem"; 15 | import Export from "@theme/ApiExplorer/Export"; 16 | 17 | 21 | 22 | 23 | 28 | 29 | 30 | API documentation Core's Staking API 31 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "link.item.label.Core DAO": { 3 | "message": "Cora DAO", 4 | "description": "The label of footer link with label=Core DAO linking to https://coredao.org/" 5 | }, 6 | "link.item.label.Docs": { 7 | "message": "Documentos", 8 | "description": "The label of footer link with label=Docs linking to /docs/intro" 9 | }, 10 | "link.item.label.Explorer": { 11 | "message": "Explorador", 12 | "description": "The label of footer link with label=Explorer linking to https://scan.coredao.org/" 13 | }, 14 | "link.item.label.Blog": { 15 | "message": "Blog", 16 | "description": "The label of footer link with label=Blog linking to https://coredao.org/explore/blog" 17 | }, 18 | "link.item.label.Discord": { 19 | "message": "Discord", 20 | "description": "The label of footer link with label=Discord linking to https://discord.com/invite/coredaoofficial" 21 | }, 22 | "link.item.label.X (formerly Twitter)": { 23 | "message": "X (antes Twitter)", 24 | "description": "The label of footer link with label=X (formerly Twitter) linking to https://twitter.com/Coredao_Org" 25 | }, 26 | "link.item.label.Telegram": { 27 | "message": "Telegram", 28 | "description": "The label of footer link with label=Telegram linking to https://t.me/CoreDAOTelegram" 29 | }, 30 | "copyright": { 31 | "message": "Copyright © 2024 Core DAO", 32 | "description": "The footer copyright" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /i18n/es/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Core DAO", 4 | "description": "The title in the navbar" 5 | }, 6 | "logo.alt": { 7 | "message": "Logo Core DAO", 8 | "description": "The alt text of navbar logo" 9 | }, 10 | "item.label.Learn": { 11 | "message": "Aprender", 12 | "description": "Navbar item with label Learn" 13 | }, 14 | "item.label.Build": { 15 | "message": "Construir", 16 | "description": "Navbar item with label Build" 17 | }, 18 | "item.label.Run a Node": { 19 | "message": "Ejecutar un Nodo", 20 | "description": "Navbar item with label Run a Node" 21 | }, 22 | "item.label.Stake & Delegate": { 23 | "message": "Stake y Delegar", 24 | "description": "Navbar item with label Stake & Delegate" 25 | }, 26 | "item.label.Core API": { 27 | "message": "Core API", 28 | "description": "Navbar item with label Core API" 29 | }, 30 | "item.label.FAQs": { 31 | "message": "FAQs", 32 | "description": "Navbar item with label FAQs" 33 | }, 34 | "item.label.Staking API": { 35 | "message": "API de Delegacion", 36 | "description": "Navbar item with label Staking API" 37 | }, 38 | "item.label.GitHub": { 39 | "message": "Github", 40 | "description": "Navbar item with label GitHub" 41 | }, 42 | "item.label.Blog": { 43 | "message": "Blog", 44 | "description": "Navbar item with label Blog" 45 | }, 46 | "item.label.API": { 47 | "message": "API", 48 | "description": "Navbar item with label API" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-blog/options.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Blog", 4 | "description": "The title for the blog used in SEO" 5 | }, 6 | "description": { 7 | "message": "Blog", 8 | "description": "The description for the blog used in SEO" 9 | }, 10 | "sidebar.title": { 11 | "message": "Postes récents", 12 | "description": "The label for the left sidebar" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/Dev-Guide/core-explorer.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Explorateur de blocs 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Explorateur Blockchain Core Scan 8 | 9 | --- 10 | 11 | import Tabs from '@theme/Tabs'; 12 | import TabItem from '@theme/TabItem'; 13 | 14 | Core Explorer est une interface graphique permettant aux utilisateurs d'interagir avec la blockchain CORE. Grâce à cette interface, vous pouvez consulter les informations sur les blocs ajoutés à la blockchain, les transactions effectuées, les soldes de portefeuille, ainsi que les informations sur les tokens tCORE et CORE. Core Network propose des explorateurs pour son mainnet et son testnet. 15 | 16 | 21 | 22 | - **Core Testnet2 Explorer:** https://scan.test2.btcs.network/ 23 | 24 | - **Core Testnet1 Explorer:** https://scan.test.btcs.network/ 25 | 26 | - **Core Mainnet Explorer:** https://scan.coredao.org/ 27 | 28 | 29 | 30 | ### Utilisation de l'explorateur Core Scan 31 | 32 | Vous pouvez utiliser l'explorateur de blockchain Testnet Core pour rechercher et examiner les transactions. Copiez l'adresse de votre compte depuis MetaMask et recherchez-la sur l'explorateur. Vous y verrez les transactions associées à votre compte, telles que : 33 | 34 | - Celle où vous avez récupéré des tCORE depuis le Faucet; 35 | - Celle où vous avez envoyé des tCORE à une autre adresse; 36 | 37 | ![core-explorer](../../../../../static/img/core-explorer.png) 38 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/Dev-Guide/core-faucet.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Faucet 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Faucet Testnet Core 8 | 9 | --- 10 | 11 | Pour aider les utilisateurs à démarrer et permettre aux développeurs de rapidement mettre en place leurs dApps, Core a mis en place le Faucet public Core Testnet pour distribuer des tokens de testnet Core, **tCORE** ou **tCORE2**. 12 | 13 | ## Étapes pour obtenir des tCORE/tCORE2 depuis le Faucet Testnet Core 14 | 15 | 1. Accédez au site web du faucet. 16 | 17 | - **Pour le faucet de Core Blockchain Testnet (1114) :** https://scan.test2.btcs.network/faucet 18 | - **Pour le faucet de Core Blockchain Testnet (1115) :** https://scan.test.btcs.network/faucet 19 | 20 | 2. Collez votre adresse dans la zone de texte fournie. Assurez-vous de donner l’adresse Core Testnet de votre portefeuille à laquelle vous souhaitez recevoir des tCORE ou tCORE2. 21 | 22 | 3. Complétez le CAPTCHA 23 | 24 | 4. Si vous utilisez le faucet pour Core Blockchain Testnet (1114), cliquez sur le bouton `Get tCORE2`. Après avoir demandé des tCORE au faucet, vous verrez le solde de votre MetaMask augmenter. 25 | 26 |

27 | ![using-faucet-test2](../../../../../static/img/faucet/faucet-test2.png) 28 |

29 | 30 | 5. Si vous utilisez le faucet pour Core Blockchain Testnet (1115), cliquez sur le bouton `Get tCORE`. Après avoir demandé avec succès des tCORE2 au faucet, vous verrez le solde de votre portefeuille augmenter. 31 | 32 |

33 | ![using-faucet](../../../../../static/img/faucet/faucet.png) 34 |

35 | 36 | :::caution 37 | Chaque adresse ne peut demander **qu’un seul tCORE ou tCORE2 par jour** à partir du faucet. Si vous n’avez plus de tCORE ou tCORE2 et que le faucet ne vous en envoie pas davantage à cause de la limite journalière (un tCORE ou tCORE2 par jour), revenez après 24 heures et réessayez. Sinon, vous pouvez en faire la demande sur le serveur Discord de Core. 38 | ::: 39 | 40 | :::note 41 | tCORE et tCORE2 sont uniquement utilisés pour les tests et n’ont aucune valeur réelle. Ne l'utilisez pas pour des transactions financières réelles. 42 | ::: 43 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/Learn/bug-reporting.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Signaler une Vulnérabilité de Sécurité 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Signaler un Bug ou une Vulnérabilité de Sécurité 8 | 9 | Si vous avez découvert une vulnérabilité de sécurité affectant la blockchain Core, le réseau ou l’infrastructure associée, veuillez nous en informer directement. 10 | 11 | ### Comment Signaler 12 | 13 | Pour garantir une réponse rapide et efficace, envoyez un e-mail à **[bug-report@coredao.org](mailto:bug-report@coredao.org)** en incluant les détails suivants : 14 | 15 | - **Ressource affectée:** Indiquez la composante touchée, telle qu’un dépôt GitHub, une URL, un contrat intelligent ou toute autre infrastructure. 16 | - **Description & Impact:** Fournissez une explication détaillée de la vulnérabilité, des risques potentiels et de la manière dont elle pourrait être exploitée. 17 | - **Étapes pour reproduire:** Incluez un guide pas-à-pas expliquant comment vous avez découvert le problème. Mentionnez tout outil ou technique utilisé. 18 | - **Proof of Concept (PoC):** Si possible, fournissez une preuve de concept démontrant concrètement la vulnérabilité. 19 | 20 | Votre contribution à la sécurité de Core est très appréciée et nous vous remercions de vos efforts pour maintenir l’écosystème Core sûr. 21 | 22 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/Node/maintenance/network-upgrade.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Mise à niveau de Geth 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Mise à niveau de Geth 8 | 9 | Mettre à jour `geth` est un processus simple. Il vous suffit de télécharger et d'installer la nouvelle version de `geth`, d'arrêter votre nœud et de le redémarrer avec le nouveau logiciel. Geth utilisera automatiquement les données de votre ancien nœud et synchronisera les derniers blocs minés depuis que vous avez arrêté l'ancien logiciel. 10 | 11 | ### Étape 1 : Compiler la nouvelle version ou télécharger les nouveaux binaires précompilés depuis la page des versions 12 | 13 | ```bash 14 | git clone https://github.com/coredao-org/core-chain 15 | 16 | make geth 17 | ``` 18 | 19 | ```bash 20 | # Download pre-build binaries 21 | 22 | # Linux 23 | wget $(curl -s https://github.com/coredao-org/core-chain/releases/latest |grep browser_ |grep geth_linux |cut -d\" -f4) 24 | mv geth_linux geth 25 | chmod -v u+x geth 26 | 27 | # MacOS 28 | wget $(curl -s https://github.com/coredao-org/core-chain/releases/latest |grep browser_ |grep geth_mac |cut -d\" -f4) 29 | mv geth_mac geth 30 | chmod -v u+x geth 31 | make geth 32 | ``` 33 | 34 | ### Étape 2 : Arrêter Geth 35 | 36 | ``` 37 | 38 | $ pid=`ps -ef | grep geth | grep -v grep | awk '{print $2}'` 39 | $ kill $pid 40 | 41 | ``` 42 | 43 | ### Étape 3 : Redémarrer 44 | 45 | :::note 46 | Assurez-vous d'utiliser la même commande de démarrage que celle utilisée avant la mise à jour. 47 | ::: 48 | 49 | ```bash 50 | ## 51 | ./geth --config ./config.toml --datadir ./node --cache 8000 --rpc.allow-unprotected-txs --txlookuplimit 0 52 | ``` 53 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/api-documents/transactions.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Transactions 3 | description: Endpoints related to Transactions 4 | hide_table_of_contents: false 5 | sidebar_position: 2 6 | --- 7 | 8 | # Transactions 9 | 10 | ## Check Transaction Receipt Status 11 | 12 | Returns the status code of a transaction execution. 13 | 14 | ```bash 15 | https://openapi.coredao.org/api 16 | ?module=transaction 17 | &action=gettxreceiptstatus 18 | &txhash=0xf5582dff22f92beee00afc22c4d80ca7b7ad4a335019371a67c16adf383b6afa 19 | &apikey=YourApiKeyToken 20 | ``` 21 | 22 | > Try this endpoint in your [**browser**](https://openapi.coredao.org/api?module=transaction\\&action=gettxreceiptstatus\\&txhash=0xf5582dff22f92beee00afc22c4d80ca7b7ad4a335019371a67c16adf383b6afa\\&apikey=b4d33c1698e4446dbf0f05f520117a76) 🔗 23 | 24 | Request Query Parameters 25 | 26 |
ParameterDescription
txhashthe string representing the transaction hash to check the execution status
27 | 28 | Sample Response 29 | 30 | ```json 31 | { 32 | "status":"1", 33 | "result":{ 34 | "status":"1" 35 | }, 36 | "message":"OK" 37 | } 38 | ``` 39 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/api.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Core Scan OpenAPI 3 | hide_table_of_contents: false 4 | sidebar_position: 2 5 | --- 6 | 7 | # Core Scan Open API 8 | 9 | --- 10 | 11 | Introducing the Core Scan Open API, a powerful tool that gives developers direct access to Core Scan's block explorer data and services. Use these resources to enhance your applications, tapping into comprehensive insights of Core provided by Core Scan. 12 | 13 | ## Tutorials 14 | 15 | We've written some tutorials to help you get started with Core Scan Open API. For advanced users, we've included guides for advanced endpoints, such as API-facilitated programmatic contract verification. 16 | 17 | Check out the Core Scan Open API tutorials [here](https://docs.coredao.org/docs/api/core-api-tutorials). 18 | 19 | ## API Endpoints 20 | 21 | Core Scan Open API provides endpoints for many things, including interacting with deployed smart contracts, fetching a user's CORE balance, and viewing detailed information about transactions. 22 | 23 | Check out the full endpoint documentation [here](https://docs.coredao.org/docs/api/core-api-docs). 24 | 25 | ## Support 26 | 27 | If you have an issue and need clarification, reach out to us on our official [Discord](https://discord.com/invite/coredaoofficial). 28 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(1).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(10).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(2).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(3).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(4).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(5).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(6).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(7).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(8).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image(9).png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/i18n/fr/docusaurus-plugin-content-docs/current/api/assets/image.png -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/mainnet/get-block-number-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-block-number-using-get 3 | title: Get block number 4 | description: Get block number 5 | sidebar_label: Get block number 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtksFu2zAQRH9FmFMLsFbTI29paxgBgrRompNhFJS0lohIJEOu7BiC/r1YWU3UxEeSy9m3szOATZ2gt9gQN9nP6J9P2Cn4QNGw9e6mgkZN/LX15eNd3xUUH5J19Wb9GwrBRNMRUxSJAc50BA0T7COdoGAdNJ56inKoKJXRBhFd1kR66m2kCppjTwqpbKgz0AP4FEQtcbSuxjju3mpsiLNCuDI3gUGhI278jDzxcQON3ASb18RNTtz8KV5HgUKiePjH38cWGg1zSDrPfSBngl2VPlJl/MrHOodQWLf3E6DlVgivg82++7LvyPFk2rtpL1UwxS792N9TPNhSZProNPsEhdaW5BJJj9nS62DKhrIvq89QC0yd58fjcWWm1wlw/pry25tv67v79Sf5MirIjGeWq/NF8Ik74xY9Ltj53xQvG2F65jy0xjoRmmiG2eqtLBZK7G+g8NbunULjE0vdMBQm0UNsx1GuzymRJVQ2maKVQOxNm+gdROkdk2NofPg1Z+dj9hKni4jytIjcwbS9FE3LPJhopR/0djcuAiQBH8e/37QPtA== 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get block number 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/mainnet/get-gas-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-gas-price-using-get 3 | title: Get gas price 4 | description: Get gas price 5 | sidebar_label: Get gas price 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkstu2zAQRX9FuKsWYK22S+6C1jACFG3QNCvDKCbyWCIikQw5smMI+vdiZDVQHksO53Hmzh0gVGfYLTYsTXGTwtMZO4MQOZG44K/3sKhZNpRvkqv4Ljtfb9Z/YBApUcfCSesHeOoYFhTdA59h4DwsHntO+thzrpKL2nGZk/ixd4n3sJJ6NshVwx3BDpBz1G5ZkvM1xnH3useGpagpF1GpYNCxNGGGneCkgUVJ0ZU1S1OyNH/reQkYZE7H/+R9amHRiMRsyzJE9hTdqgqJ9xRWIdUldL7zhzChOWmV7Sq64nuo+o69TFq92fO9DOHU5V+HW05HJbHok7cSMgxaV7HPrDNmMa8iVQ0XX1efYRaYtixPp9OKpt8JcC7N5Y/rb+uft+tPWjIa6I4Xli+XQAxZOvKLGa+FfLHC8yGEn6SMLTmvXSaUYRZ5q/eEUeEbGLwQemfQhCyaNAz3lPkuteOo4YszVP69y3TfqgkO1GZ+Q1AFL+wFFh9+z375WDxb6F0+/VrY7Ehtr0nTGY+UnM6D3e7GhW/U1OP4D8GYCVY= 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get gas price 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/mainnet/get-last-core-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-last-core-price-using-get 3 | title: Get last core price 4 | description: Get last core price 5 | sidebar_label: Get last core price 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+KwdMGeNG2o25FFxQFim1Y1lMQFKzN2MJsSSXpZIXh/z7QSQuvzVESH/Xx8Y2g2Aj4LWwUVWBXQsrEqCHF2xo8NKR3KHqdmH5yqOheQmxu1r+hhIyMPSmx6UeI2BN4wBz+0DOUECJ4eBqI7VCTVByytV3WMD0NgakGrzxQCVK11CP4EfQ5WzdRDrGBadq97XFDWnQoWlSJqcjGBiX0pG06c8+I2oIHhzk4sQGdSR5M8vAiEeLDywwDd+ChVc3inUuZIuawsvIa0ypx48BIQtynGTJoZ5RXORTfUjX0FHW27t3ElyqUuJcf+w3xwUg8DBy9JoESulBRFLI/zrZeZaxaKr6uPkO5wPTOHY/HFc6vM+BZKu7u9nr9fbP+ZJKpBJvxxPLldJGTaI9x8cdlS/8b5HUxSn/V5Q5DtF4z0Hi2e2v7NWPnRJXw1vJdCW0StcJxfEShe+6mya5PabFF1EHwsbNg7LETekdRpagUFTx8+HXO0MfiNVYXGe1pEb0DdoMVzQs9IAf7D/x2Ny1SZEGfpn8IwxHv 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get last core price 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/mainnet/get-list-of-validators-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-list-of-validators-using-get 3 | title: Get list of validators 4 | description: Get list of validators 5 | sidebar_label: Get list of validators 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKeNG2o27FFhQFihZY1l2CoGBt2iZmS6pEOysM//eBjhe4S3eURD59j3wjCNYJ7B52gpLgkIMPFFHYu9sSLNQkd5zkofqJLZcoPqbHxK6+2f6AHAJG7EgoqsQIDjsCCxj4F71CDuzAwktPUQ8lpSJyUOV1TaSXniOVYCX2lEMqGuoQ7AjyGlQtSWRXwzQd/tW4IclaTpL5KhvOeJBDR9L4hX6mlAYsGAxskto02vXkq6c3XYni8NdJH1uw0IiEZI3xgRwG3hQ+Uol+42NtQHnYVX5GZWmV9Tpw9s0XfUdO5hle+H6vQih26aHaURy4UJk+OitemVouyCXSP5bhXgcsGsq+bD5BvsK0xhyPxw3OrzPg0prM3e3X7f1u+1FbphzU44nl8+ki+CQdutUf/x3sGy/nDQn9FhNaZKdyM9O4DH2vi9bZzulSPxeDP+TQ+CRaO47PmOgxttOk16fk6DpKTvjcakgqbBNdgBTeCTkBCx++L3m6ys4RexdTn1YxHLDttWhe64CR9T+w+8O0ipOGfpr+AGC5GLE= 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get list of validators 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/mainnet/get-total-core-supply-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-total-core-supply-using-get 3 | title: Get total core supply 4 | description: Get total core supply 5 | sidebar_label: Get total core supply 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKaFG3o25FFxQFhg1Y2lMQFKzN2MJkSZXoZIHh/z5Q8QJv6Y6SyKePj28ExjaD2cKGkTPsFIRICdkG/9iAgZb4KTC6+5BoM8ToTs/Z+vZh/QQKIibsiSmJwggeewIDGO1POoEC68HA20BJDg3lOtkowsuaRG+DTdSA4TSQglx31COYEfgURS1zsr6Fadr9q/FAXLGwVXVIVOVCBwp64i7M7AWSOzCgMVqdZUhdml6k6eXSlCkd/swxJAcGOuaYjdYhksdoV1LfYFiF1GoQGuv3oYBadkJ6F231JdRDT56LgVdTv1fBlPr8fb+hdLC1yAzJGw4ZFDhbk88kf8zW3kWsO6o+r25BLTCN1sfjcYXltQDOrVl/fbxff9usP0rLpEBmPLN8Ol/EkLlHv/jjf7b+NcplPUy/WEeH1otaQRpny7eyZbG2JEvBte07BV3ILKXj+IqZnpObJrk+p0aW0diMr04CskeX6YqjDp7JMxj48GPO0k11ide7lPK0iOAB3SBFZakHTFb+A7PdTYssSeCn6TcvIxch 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/mainnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get total core supply 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/testnet/get-block-number-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-block-number-using-get 3 | title: Get block number 4 | description: Get block number 5 | sidebar_label: Get block number 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+K8U4boNlbj7p1WxAUGLphXU9BMMgOYwuxJVWikwaG//tAx+u8NkdR5ONH8g1gUyfoDdbETfYj+ucztgo+UDRsvbvbQaMm/tz66nDfdyXFx2RdvV79gkIw0XTEFEVigDMdQcMEe6AzFKyDxlNPUR47SlW0QUSXOZGeehtpB82xJ4VUNdQZ6AF8DqKWOFpXYxy3rzXWxFkpXJmbwKDQETd+Rp74uIFGYYItauKmIG5+l/9GgUKiePzL38cWGg1zSLqQopwp8U1ecpVyR3zy8VBAQKzb+4nRciuQt8FmX33Vd+R42tubga9lMMUufd8/UDzaSmT66DT7BIXWVuQSSY95q7fBVA1lN/lHqAWpLorT6ZSb6Tf3sS7m0lR8u/uyun9YfZCSUUHGvLB8ugSCT9wZt+hxZaP/TfFyFKZnLkJrrBOhiWaYt72R20LJBRoovN74VqHxiSVvGEqT6DG24yjhi1HkDjubTNmKJ/amTfQGovKOyTE03v2c7fM+e3HUVUT5WrjuaNpekqZjHk200g96sx0XHhKPj+MfBiIQsw== 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get block number 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/testnet/get-gas-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-gas-price-using-get 3 | title: Get gas price 4 | description: Get gas price 5 | sidebar_label: Get gas price 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkstu2zAQRX9FuKsWYMU2S+6C1jACBG3QNCvDKGh5LBGRSIYc2TEE/XsxshoojyWH8zhz5w5gW2eYDdbETXGXwvMZW4UQKVl2wd/sYVATr22+S66ih+x8vV79gUK0yXbElKR+gLcdwcBG90hnKDgPg6eekjz2lKvkonRc5iR66l2iPQynnhRy1VBnYQbwOUq3zMn5GuO4fdtjTVzUNhdRqKDQETdhhp3guIGBttHpmrjRxM3fel4CCpnS8T95n1oYNMwxGy0VJVPmq3LHVS498SmkRw1BcP4QJjrHreBdR1f8CFXfkedJrnerfpTBlLr863BP6SgwBn3yhkOGQusq8plkxqzndbRVQ8VV+RVqQWq0Pp1OpZ1+y5BqPZdmfXvzffXzfvVFSkYFWfPC8u0SiCFzZ/1ixlstX63wcgumZ9axtc5LlwllmHXeyEmhRPsGCq+03io0IbMkDcPOZnpI7ThK+GIOucDeZbtrxQcH22Z6R1AFz+QZBp9+z5b5XLy46EM++Vo47WjbXpKmMx5tcjIPZrMdF9YRX4/jP9aHClU= 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get gas price 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/testnet/get-last-core-price-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-last-core-price-using-get 3 | title: Get last core price 4 | description: Get last core price 5 | sidebar_label: Get last core price 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJxtkkFv2zAMhf+KwdMGaNbWo25FFxQFim1Y1lMQFIrD2EJtSSXpZIXh/z7QcQuvzVESH/Xx8Q0gvmZwG1iLF4atgZSRvIQU7/bgoEa59yw3ifAXhQofOMT6dvUHDGRPvkNBUv0A0XcIDnwOT/gCBkIEB889kh72yBWFrG2XNYTPfSDcgxPq0QBXDXYe3ADykrUbC4VYwzhu3/e4RSlaz1JUibDIygYGOpQmzdwTojTgwPocLOuAViWPKnl8lTDS8XWGnlpw0IhkdlZVpSDLVbmTisuIckr0ZEFhQjykiTNIq6DXORTfU9V3GGVy78PQlyoEqeOfhzXSUWEc9BSdJAYDbagwMuofs7PX2VcNFlflVzALUmft6XQq/fRaJqrtLGV7f3ez+rFefVHJaEDHPLN8O1/kxNL5uPjjsqv/DfK2G8G/YnPrQ9ReE9AwO77RFau3U6gMvHd9a6BJLFo4DDvP+EDtOOr1OTC6i31gv2s1GwffMn6gqFIUjAIOPv2eY/S5eEvWRUZ9WqTv6Ntei6aFHj0F/Q/cZjsugqRZH8d/NPgS7g== 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get last core price 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/testnet/get-total-core-supply-using-get.api.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-total-core-supply-using-get 3 | title: Get total core supply 4 | description: Get total core supply 5 | sidebar_label: Get total core supply 6 | hide_title: true 7 | hide_table_of_contents: true 8 | api: eJx1kkFv2zAMhf+KwdMKaNbWo25FFxQFhg5Y2lMQFIrD2EJtSSXpZIHh/z7Q8YJs6Y6SyKePj28A8TWDW8FSvDCsDaSM5CWk+LgFBzXKcxLf3ifCZZ9ze3zhEOuHxTMYyJ58h4KkCgNE3yE48Dm84REMhAgO3nskPWyRKwpZhS9rCN/7QLgFJ9SjAa4a7Dy4AeSYVY2FQqxhHNf/ajygFKJsRZUIC57owECH0qSZfYKUBhxYn4NlHdJOTa/a9HpuYqT9nzl6asFBI5LZWe0rBVluy41UXEaUQ6I3CwoU4i5NrEFahb3LofiWqr7DKJOHV4N/VCFIHf/YLZH2oVKZnqKTxGCgDRVGRv1jdvcu+6rB4rb8AuaC1Fl7OBxKP72WiWo7t7L9/ni/eFouPmvLaEDHPLF8PV3kxNL5ePHH/5z9a5TzhgR/ic2tD1HVJqRhdn2li1Z3p3AZuHZ+baBJLFo6DBvP+ELtOOr1KTi6j21gv2k1IzvfMl5xVCkKRgEHn37Ocbopzgn7kFKfLlK4922vRdNS956C/gdutR4v4qSZH8ffaK4YIA== 9 | sidebar_class_name: get api-method 10 | info_path: docs/api/testnet/api-documentation 11 | custom_edit_url: null 12 | --- 13 | 14 | import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; 15 | import ParamsDetails from "@theme/ParamsDetails"; 16 | import RequestSchema from "@theme/RequestSchema"; 17 | import StatusCodes from "@theme/StatusCodes"; 18 | import OperationTabs from "@theme/OperationTabs"; 19 | import TabItem from "@theme/TabItem"; 20 | import Heading from "@theme/Heading"; 21 | 22 | 27 | 28 | 29 | 34 | 35 | 36 | 37 | Get total core supply 38 | 39 | 45 | 46 | 47 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/tutorials/common-error-messages.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Messages d'Erreur Courants 3 | description: Messages d'Erreur Courants lors de l'utilisation de l'API Core Scan 4 | hide_table_of_contents: false 5 | sidebar_position: 2 6 | --- 7 | 8 | # Messages d'Erreur Courants de l'API Core 9 | 10 | Un appel API qui rencontre une erreur renverra 0 comme code de statut et affichera la cause de l'erreur dans le champ résultat. 11 | 12 | ```json 13 | { 14 | "status":"0", 15 | "message":"NOTOK", 16 | "result":"Max rate limit reached" 17 | } 18 | ``` 19 | 20 | *** 21 | 22 | ## Limite de taux maximale 23 | 24 | > "Limite de taux maximale atteinte" 25 | 26 | Cette erreur survient lorsque vous dépassez la limite de taux assignée à votre clé API spécifique. Pour résoudre, respectez votre plan en attendant un certain temps avant chaque requête. Si vous utilisez un script ou une application, appliquez un régulateur de débit (throttling) pour limiter la fréquence des appels. 27 | 28 | Référence pour les différents niveaux d'API et leurs limites de taux 🚧. 29 | 30 | | Niveau d'API | Limite de taux | 31 | | :----------: | :------------------------------------------: | 32 | | Free | 5 appels/seconde, jusqu'à 10 000 appels/jour | 33 | 34 | *** 35 | 36 | ## Action manquante ou invalide 37 | 38 | > "Erreur ! Nom d'action manquant ou invalide" 39 | 40 | Cette erreur survient lorsque vous ne spécifiez pas, ou que vous spécifiez un module et un nom d'action invalides. Pour résoudre, vérifiez minutieusement votre requête API afin d'utiliser un module et un nom d'action valides. Si vous avez besoin d'aide pour démarrer, essayez de copier les requêtes d'exemple fournies dans la documentation et de les coller dans votre navigateur. 41 | 42 | *** 43 | 44 | ## Erreurs spécifiques API 45 | 46 | > "Erreur ! Le numéro de bloc est déjà passé" "Erreur ! Format d'adresse invalide" "Le code source du contrat n'est pas vérifié" 47 | 48 | Ces messages d'erreur renvoyés sont spécifiques à certaines API et à leurs paramètres associés. Pour résoudre, veuillez consulter la documentation spécifique de l'API et vérifier le format ou les valeurs correctes à spécifier en tant que paramètres. 49 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/api/tutorials/generate-an-api-key.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Générer une clé API 3 | description: Générer une clé API sur Core Scan 4 | hide_table_of_contents: false 5 | sidebar_position: 2 6 | --- 7 | 8 | # Générer une clé API sur Core Scan 9 | 10 | ## Création d'une clé API 11 | 12 | Depuis votre [Tableau de bord de Compte](https://scan.coredao.org/my/account), cliquez sur l'onglet de navigation intitulé 🗝 **API-KEYs**. 13 | 14 | ![account-dashboard](../assets/image\(7\).png) 15 | 16 | À partir de là, vous pouvez cliquer sur **Ajouter** pour créer une nouvelle clé et attribuer un nom à votre projet. Chaque compte Core Scan est limité à la création de 3 clés simultanément. 17 | 18 | ![create-key](../assets/image\(1\).png) 19 | 20 | ## Modification d'une clé API 21 | 22 | Pour changer le nom de votre projet associé à une clé API, cliquez sur **Modifier** afin de spécifier un nouveau nom d'application, puis sauvegardez les modifications. 23 | 24 | ![edit-key](../assets/image\(9\).png) -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/stakingAPI/mainnet/core-staking-api.info.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: core-staking-api 3 | title: Core Staking API 4 | description: Documentation de l'API de staking de Core 5 | sidebar_label: Introduction 6 | sidebar_position: 0 7 | hide_title: true 8 | custom_edit_url: null 9 | --- 10 | 11 | import ApiLogo from "@theme/ApiLogo"; 12 | import Heading from "@theme/Heading"; 13 | import SchemaTabs from "@theme/SchemaTabs"; 14 | import TabItem from "@theme/TabItem"; 15 | import Export from "@theme/ApiExplorer/Export"; 16 | 17 | 21 | 22 | 23 | 28 | 29 | 30 | Documentation de l'API de staking de Core 31 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-plugin-content-docs/current/stakingAPI/testnet/core-staking-api.info.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: core-staking-api 3 | title: Core Staking API Testnet 4 | description: Documentation de l'API de staking de Core 5 | sidebar_label: Introduction 6 | sidebar_position: 0 7 | hide_title: true 8 | custom_edit_url: null 9 | --- 10 | 11 | import ApiLogo from "@theme/ApiLogo"; 12 | import Heading from "@theme/Heading"; 13 | import SchemaTabs from "@theme/SchemaTabs"; 14 | import TabItem from "@theme/TabItem"; 15 | import Export from "@theme/ApiExplorer/Export"; 16 | 17 | 21 | 22 | 23 | 28 | 29 | 30 | Documentation de l'API de staking de Core 31 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-theme-classic/footer.json: -------------------------------------------------------------------------------- 1 | { 2 | "link.item.label.Core DAO": { 3 | "message": "Core DAO", 4 | "description": "The label of footer link with label=Core DAO linking to https://coredao.org/" 5 | }, 6 | "link.item.label.Docs": { 7 | "message": "Documentations", 8 | "description": "The label of footer link with label=Docs linking to /docs/intro" 9 | }, 10 | "link.item.label.Explorer": { 11 | "message": "Explorateur", 12 | "description": "The label of footer link with label=Explorer linking to https://scan.coredao.org/" 13 | }, 14 | "link.item.label.Blog": { 15 | "message": "Blog", 16 | "description": "The label of footer link with label=Blog linking to https://coredao.org/explore/blog" 17 | }, 18 | "link.item.label.Discord": { 19 | "message": "Discord", 20 | "description": "The label of footer link with label=Discord linking to https://discord.com/invite/coredaoofficial" 21 | }, 22 | "link.item.label.X (formerly Twitter)": { 23 | "message": "X (anciennement Twitter)", 24 | "description": "The label of footer link with label=X (formerly Twitter) linking to https://twitter.com/Coredao_Org" 25 | }, 26 | "link.item.label.Telegram": { 27 | "message": "Telegram", 28 | "description": "The label of footer link with label=Telegram linking to https://t.me/CoreDAOTelegram" 29 | }, 30 | "copyright": { 31 | "message": "Copyright © 2024 Core DAO", 32 | "description": "The footer copyright" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /i18n/fr/docusaurus-theme-classic/navbar.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": { 3 | "message": "Core DAO", 4 | "description": "The title in the navbar" 5 | }, 6 | "logo.alt": { 7 | "message": "Logo Core DAO", 8 | "description": "The alt text of navbar logo" 9 | }, 10 | "item.label.Learn": { 11 | "message": "Apprendre", 12 | "description": "Navbar item with label Learn" 13 | }, 14 | "item.label.Developer Guide": { 15 | "message": "Guide du Développeur", 16 | "description": "Navbar item with label Developer Guide" 17 | }, 18 | "item.label.Build": { 19 | "message": "Construire", 20 | "description": "Navbar item with label Build" 21 | }, 22 | "item.label.Run a Node": { 23 | "message": "Exécuter un Nœud", 24 | "description": "Navbar item with label Run a Node" 25 | }, 26 | "item.label.Stake & Delegate": { 27 | "message": "Enjeu et Délégué", 28 | "description": "Navbar item with label Stake & Delegate" 29 | }, 30 | "item.label.Core API": { 31 | "message": "API Core", 32 | "description": "Navbar item with label Core API" 33 | }, 34 | "item.label.API": { 35 | "message": "API", 36 | "description": "Navbar item with label API" 37 | }, 38 | "item.label.FAQs": { 39 | "message": "FAQs", 40 | "description": "Navbar item with label FAQs" 41 | }, 42 | "item.label.Staking API": { 43 | "message": "API de Staking", 44 | "description": "Navbar item with label Staking API" 45 | }, 46 | "item.label.GitHub": { 47 | "message": "GitHub", 48 | "description": "Navbar item with label GitHub" 49 | }, 50 | "item.label.Blog": { 51 | "message": "Blog", 52 | "description": "Navbar item with label Blog" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "core-dao-official-docs", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "docusaurus": "docusaurus", 7 | "start": "docusaurus start", 8 | "build": "docusaurus build", 9 | "swizzle": "docusaurus swizzle", 10 | "deploy": "docusaurus deploy", 11 | "clear": "docusaurus clear", 12 | "serve": "docusaurus serve", 13 | "write-translations": "docusaurus write-translations", 14 | "write-heading-ids": "docusaurus write-heading-ids", 15 | "typecheck": "tsc" 16 | }, 17 | "resolutions": { 18 | "react-helmet-async": "1.3.0" 19 | }, 20 | "dependencies": { 21 | "@docsearch/css": "3", 22 | "@algolia/client-search": "^5.23.4", 23 | "@cookbookdev/docsbot": "^4.25.8", 24 | "@docusaurus/core": "^3.7.0", 25 | "@docusaurus/plugin-content-docs": "^3.7.0", 26 | "@docusaurus/plugin-google-gtag": "^3.7.0", 27 | "@docusaurus/preset-classic": "^3.7.0", 28 | "@docusaurus/theme-common": "^3.7.0", 29 | "@docusaurus/theme-search-algolia": "^3.7.0", 30 | "@docusaurus/utils": "^3.7.0", 31 | "@docusaurus/utils-validation": "^3.7.0", 32 | "@mdx-js/react": "^3.0.0", 33 | "acorn": "^8.14.1", 34 | "clsx": "^2.0.0", 35 | "docusaurus-plugin-openapi-docs": "^4.3.2", 36 | "docusaurus-plugin-sass": "^0.2.6", 37 | "docusaurus-theme-openapi-docs": "^4.3.2", 38 | "prism-react-renderer": "^2.3.0", 39 | "react": "^18.0.0", 40 | "react-dom": "^18.0.0", 41 | "react-loadable": "^5.5.0", 42 | "rehype-katex": "7", 43 | "remark-math": "6", 44 | "sass": "^1.86.3", 45 | "search-insights": "^2.17.3" 46 | }, 47 | "devDependencies": { 48 | "@docusaurus/module-type-aliases": "^3.7.0", 49 | "@docusaurus/tsconfig": "^3.7.0", 50 | "@docusaurus/types": "^3.7.0", 51 | "@types/react": "^19.1.2", 52 | "typescript": "~5.6.2" 53 | }, 54 | "browserslist": { 55 | "production": [ 56 | ">0.5%", 57 | "not dead", 58 | "not op_mini all" 59 | ], 60 | "development": [ 61 | "last 3 chrome version", 62 | "last 3 firefox version", 63 | "last 5 safari version" 64 | ] 65 | }, 66 | "engines": { 67 | "node": ">=18.0" 68 | } 69 | } -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- 1 | import clsx from 'clsx'; 2 | import Heading from '@theme/Heading'; 3 | import styles from './styles.module.css'; 4 | 5 | const FeatureList = [ 6 | { 7 | title: 'Easy to Use', 8 | Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, 9 | description: ( 10 | <> 11 | Docusaurus was designed from the ground up to be easily installed and 12 | used to get your website up and running quickly. 13 | 14 | ), 15 | }, 16 | { 17 | title: 'Focus on What Matters', 18 | Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, 19 | description: ( 20 | <> 21 | Docusaurus lets you focus on your docs, and we'll do the chores. Go 22 | ahead and move your docs into the docs directory. 23 | 24 | ), 25 | }, 26 | { 27 | title: 'Powered by React', 28 | Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, 29 | description: ( 30 | <> 31 | Extend or customize your website layout by reusing React. Docusaurus can 32 | be extended while reusing the same header and footer. 33 | 34 | ), 35 | }, 36 | ]; 37 | 38 | function Feature({Svg, title, description}) { 39 | return ( 40 |
41 |
42 | 43 |
44 |
45 | {title} 46 |

{description}

47 |
48 |
49 | ); 50 | } 51 | 52 | export default function HomepageFeatures() { 53 | return ( 54 |
55 |
56 |
57 | {FeatureList.map((props, idx) => ( 58 | 59 | ))} 60 |
61 |
62 |
63 | ); 64 | } 65 | -------------------------------------------------------------------------------- /src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- 1 | import clsx from 'clsx'; 2 | import Heading from '@theme/Heading'; 3 | import styles from './styles.module.css'; 4 | 5 | type FeatureItem = { 6 | title: string; 7 | Svg: React.ComponentType>; 8 | description: JSX.Element; 9 | }; 10 | 11 | const FeatureList: FeatureItem[] = [ 12 | { 13 | title: 'Easy to Use', 14 | Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default, 15 | description: ( 16 | <> 17 | Docusaurus was designed from the ground up to be easily installed and 18 | used to get your website up and running quickly. 19 | 20 | ), 21 | }, 22 | { 23 | title: 'Focus on What Matters', 24 | Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default, 25 | description: ( 26 | <> 27 | Docusaurus lets you focus on your docs, and we'll do the chores. Go 28 | ahead and move your docs into the docs directory. 29 | 30 | ), 31 | }, 32 | { 33 | title: 'Powered by React', 34 | Svg: require('@site/static/img/undraw_docusaurus_react.svg').default, 35 | description: ( 36 | <> 37 | Extend or customize your website layout by reusing React. Docusaurus can 38 | be extended while reusing the same header and footer. 39 | 40 | ), 41 | }, 42 | ]; 43 | 44 | function Feature({title, Svg, description}: FeatureItem) { 45 | return ( 46 |
47 |
48 | 49 |
50 |
51 | {title} 52 |

{description}

53 |
54 |
55 | ); 56 | } 57 | 58 | export default function HomepageFeatures(): JSX.Element { 59 | return ( 60 |
61 |
62 |
63 | {FeatureList.map((props, idx) => ( 64 | 65 | ))} 66 |
67 |
68 |
69 | ); 70 | } 71 | -------------------------------------------------------------------------------- /src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- 1 | .features { 2 | display: flex; 3 | align-items: center; 4 | padding: 2rem 0; 5 | width: 100%; 6 | } 7 | 8 | .featureSvg { 9 | height: 200px; 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Any CSS included here will be global. The classic template 3 | * bundles Infima by default. Infima is a CSS framework designed to 4 | * work well for content-centric websites. 5 | */ 6 | 7 | /* You can override the default Infima variables here. */ 8 | :root { 9 | --ifm-color-primary: #ff9211; 10 | --ifm-color-primary-dark: #f58500; 11 | --ifm-color-primary-darker: #e77d00; 12 | --ifm-color-primary-darkest: #be6700; 13 | --ifm-color-primary-light: #ff9e2c; 14 | --ifm-color-primary-lighter: #ffa53a; 15 | --ifm-color-primary-lightest: #ffb763; 16 | --ifm-code-font-size: 95%; 17 | --docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1); 18 | } 19 | 20 | /* For readability concerns, you should choose a lighter palette in dark mode. */ 21 | [data-theme='dark'] { 22 | --ifm-color-primary: #ff9211; 23 | --ifm-color-primary-dark: #f58500; 24 | --ifm-color-primary-darker: #e77d00; 25 | --ifm-color-primary-darkest: #be6700; 26 | --ifm-color-primary-light: #ff9e2c; 27 | --ifm-color-primary-lighter: #ffa53a; 28 | --ifm-color-primary-lightest: #ffb763; 29 | --ifm-background-color: #1b100a; 30 | } 31 | /* Overriding root Infima variables */ 32 | [data-theme='dark'] { 33 | --ifm-color-primary: #FF962B; 34 | } 35 | 36 | 37 | .markdown p img { 38 | zoom: 85%; 39 | } -------------------------------------------------------------------------------- /src/pages/api.js: -------------------------------------------------------------------------------- 1 | import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; 2 | import Layout from '@theme/Layout'; 3 | 4 | import { Redirect } from 'react-router-dom'; 5 | 6 | 7 | export default function Api() { 8 | const {siteConfig} = useDocusaurusContext(); 9 | return ( 10 | 13 |
14 | return ; 15 |
16 |
17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /src/pages/core-white-paper-v1.0.7.js: -------------------------------------------------------------------------------- 1 | import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; 2 | import Layout from '@theme/Layout'; 3 | 4 | export default function Whitepaper() { 5 | const { siteConfig } = useDocusaurusContext(); 6 | 7 | return ( 8 | 11 | 12 | 13 | 14 | 15 | 16 |
17 |

Redirecting to https://whitepaper.coredao.org/

18 |
19 |
20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- 1 | import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; 2 | import Layout from '@theme/Layout'; 3 | 4 | import { Redirect } from 'react-router-dom'; 5 | 6 | export default function Home() { 7 | return ; 8 | } 9 | -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * CSS files with the .module.css suffix will be treated as CSS modules 3 | * and scoped locally. 4 | */ 5 | 6 | .heroBanner { 7 | padding: 4rem 0; 8 | text-align: center; 9 | position: relative; 10 | overflow: hidden; 11 | } 12 | 13 | @media screen and (max-width: 996px) { 14 | .heroBanner { 15 | padding: 2rem; 16 | } 17 | } 18 | 19 | .buttons { 20 | display: flex; 21 | align-items: center; 22 | justify-content: center; 23 | } 24 | -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import clsx from 'clsx'; 2 | import Link from '@docusaurus/Link'; 3 | import useDocusaurusContext from '@docusaurus/useDocusaurusContext'; 4 | import Layout from '@theme/Layout'; 5 | import HomepageFeatures from '@site/src/components/HomepageFeatures'; 6 | import Heading from '@theme/Heading'; 7 | 8 | import styles from './index.module.css'; 9 | import { JSX } from 'react'; 10 | 11 | function HomepageHeader() { 12 | const {siteConfig} = useDocusaurusContext(); 13 | return ( 14 |
15 |
16 | 17 | {siteConfig.title} 18 | 19 |

{siteConfig.tagline}

20 |
21 | 24 | Docusaurus Tutorial - 5min ⏱️ 25 | 26 |
27 |
28 |
29 | ); 30 | } 31 | 32 | export default function Home(): JSX.Element { 33 | const {siteConfig} = useDocusaurusContext(); 34 | return ( 35 | 38 | 39 |
40 | 41 |
42 |
43 | ); 44 | } 45 | -------------------------------------------------------------------------------- /src/pages/markdown-page.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Markdown page example 3 | --- 4 | 5 | # Markdown page example 6 | 7 | You don't need React to write simple standalone pages. 8 | -------------------------------------------------------------------------------- /src/theme/SearchBar/index.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import SearchBar from "@theme-original/SearchBar"; 3 | import AskCookbook from "@cookbookdev/docsbot/react"; 4 | import BrowserOnly from "@docusaurus/BrowserOnly"; 5 | 6 | /** It's a public API key, so it's safe to expose it here */ 7 | const COOKBOOK_PUBLIC_API_KEY = 8 | "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI2N2ExNjZlN2Y4MTAzY2QxMjg4NDQ0MGMiLCJpYXQiOjE3Mzg2MzA4ODcsImV4cCI6MjA1NDIwNjg4N30.MoUziaM2dGeFiqa-L1xpqtZDh6Fbo_6invv8ah1DKSU"; 9 | 10 | export default function SearchBarWrapper(props) { 11 | return ( 12 | <> 13 | 14 | 15 | {() => } 16 | 17 | 18 | ); 19 | } 20 | -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/.nojekyll -------------------------------------------------------------------------------- /static/CNAME: -------------------------------------------------------------------------------- 1 | docs.coredao.org 2 | -------------------------------------------------------------------------------- /static/img/Core-Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/Core-Architecture.png -------------------------------------------------------------------------------- /static/img/Core_Products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/Core_Products.png -------------------------------------------------------------------------------- /static/img/Infographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/Infographic.png -------------------------------------------------------------------------------- /static/img/What-Is-Core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/What-Is-Core.png -------------------------------------------------------------------------------- /static/img/Why-Core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/Why-Core.png -------------------------------------------------------------------------------- /static/img/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/architecture.png -------------------------------------------------------------------------------- /static/img/btc-staking/NCBS Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/NCBS Workflow.png -------------------------------------------------------------------------------- /static/img/btc-staking/approve-tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/approve-tx.png -------------------------------------------------------------------------------- /static/img/btc-staking/btc-staking-address-verification-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/btc-staking-address-verification-result.png -------------------------------------------------------------------------------- /static/img/btc-staking/btc-staking-address-verification-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/btc-staking-address-verification-workflow.png -------------------------------------------------------------------------------- /static/img/btc-staking/btc-staking-address-verification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/btc-staking-address-verification.png -------------------------------------------------------------------------------- /static/img/btc-staking/btc-staking-flow-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/btc-staking-flow-new.png -------------------------------------------------------------------------------- /static/img/btc-staking/btc-staking-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/btc-staking-flow.png -------------------------------------------------------------------------------- /static/img/btc-staking/btc-staking-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/btc-staking-workflow.png -------------------------------------------------------------------------------- /static/img/btc-staking/external-verification-UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/external-verification-UI.png -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/spaces_DLZv2z2IzD1yPifdhZKK_uploads_ucqE9D7oqg082epSzYRK_staking-tx-design (5).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/spaces_DLZv2z2IzD1yPifdhZKK_uploads_ucqE9D7oqg082epSzYRK_staking-tx-design (5).webp -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/staking-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/staking-flow.png -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/staking-tx-design (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/staking-tx-design (1).png -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/staking-tx-design (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/staking-tx-design (2).png -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/staking-tx-design (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/staking-tx-design (3).png -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/staking-tx-design (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/staking-tx-design (4).png -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/staking-tx-design (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/staking-tx-design (5).png -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/staking-tx-design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/staking-tx-design.png -------------------------------------------------------------------------------- /static/img/btc-staking/tx-design/withdrawal-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/btc-staking/tx-design/withdrawal-flow.png -------------------------------------------------------------------------------- /static/img/contract-verification/contract-verify-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/contract-verification/contract-verify-1.avif -------------------------------------------------------------------------------- /static/img/contract-verification/contract-verify-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/contract-verification/contract-verify-2.avif -------------------------------------------------------------------------------- /static/img/contract-verification/contract-verify-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/contract-verification/contract-verify-3.avif -------------------------------------------------------------------------------- /static/img/contract-verification/contract-verify-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/contract-verification/contract-verify-4.avif -------------------------------------------------------------------------------- /static/img/contract-verification/contract-verify-5.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/contract-verification/contract-verify-5.avif -------------------------------------------------------------------------------- /static/img/core-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core-explorer.png -------------------------------------------------------------------------------- /static/img/core-explorer/analytics-and-charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core-explorer/analytics-and-charts.png -------------------------------------------------------------------------------- /static/img/core-explorer/download-chart-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core-explorer/download-chart-data.png -------------------------------------------------------------------------------- /static/img/core-explorer/download-data-csv-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core-explorer/download-data-csv-1.png -------------------------------------------------------------------------------- /static/img/core-explorer/download-data-csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core-explorer/download-data-csv.png -------------------------------------------------------------------------------- /static/img/core-explorer/download-page-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core-explorer/download-page-data.png -------------------------------------------------------------------------------- /static/img/core-explorer/tx-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core-explorer/tx-data.png -------------------------------------------------------------------------------- /static/img/core-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core-header.png -------------------------------------------------------------------------------- /static/img/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/core.png -------------------------------------------------------------------------------- /static/img/coreBTC/core-guides-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/core-guides-1.png -------------------------------------------------------------------------------- /static/img/coreBTC/core-guides-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/core-guides-2.png -------------------------------------------------------------------------------- /static/img/coreBTC/core-guides-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/core-guides-3.png -------------------------------------------------------------------------------- /static/img/coreBTC/core-guides-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/core-guides-4.png -------------------------------------------------------------------------------- /static/img/coreBTC/liquidation-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/liquidation-process.png -------------------------------------------------------------------------------- /static/img/coreBTC/pegin-corebtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/pegin-corebtc.png -------------------------------------------------------------------------------- /static/img/coreBTC/pegout-corebtc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/pegout-corebtc.png -------------------------------------------------------------------------------- /static/img/coreBTC/slashing-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/slashing-1.png -------------------------------------------------------------------------------- /static/img/coreBTC/slashing-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/coreBTC/slashing-2.png -------------------------------------------------------------------------------- /static/img/dapp/dapp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dapp/dapp-1.png -------------------------------------------------------------------------------- /static/img/dapp/dapp-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dapp/dapp-2.avif -------------------------------------------------------------------------------- /static/img/dapp/dapp-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dapp/dapp-3.avif -------------------------------------------------------------------------------- /static/img/delegate/delegate-core/delegate-core-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/delegate/delegate-core/delegate-core-1.avif -------------------------------------------------------------------------------- /static/img/delegate/delegate-core/delegate-core-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/delegate/delegate-core/delegate-core-2.avif -------------------------------------------------------------------------------- /static/img/delegate/delegate-core/delegate-core-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/delegate/delegate-core/delegate-core-3.avif -------------------------------------------------------------------------------- /static/img/delegate/delegate-core/delegate-core-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/delegate/delegate-core/delegate-core-4.avif -------------------------------------------------------------------------------- /static/img/delegate/miner-power-relaying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/delegate/miner-power-relaying.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC20_Balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC20_Balance.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC20_ConnectMetamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC20_ConnectMetamask.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC20_Deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC20_Deploy.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC20_Wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC20_Wizard.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC721_Compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC721_Compile.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC721_Contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC721_Contract.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC721_Deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC721_Deployment.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC721_Mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC721_Mint.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/ERC721_Wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/ERC721_Wizard.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/Remix_ERC20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/Remix_ERC20.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/Remix_ERC20_Compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/Remix_ERC20_Compile.png -------------------------------------------------------------------------------- /static/img/dev_tutorials/Remix_InjectedProvider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dev_tutorials/Remix_InjectedProvider.png -------------------------------------------------------------------------------- /static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/docusaurus.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-1.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-10.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-11.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-12.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-13.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-14.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-15.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-16.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-2.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-3.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-4.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-5.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-6.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-7.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-8.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-9.png -------------------------------------------------------------------------------- /static/img/dual-staking/dual-staking-tiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/dual-staking/dual-staking-tiers.png -------------------------------------------------------------------------------- /static/img/faucet/faucet-test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/faucet/faucet-test2.png -------------------------------------------------------------------------------- /static/img/faucet/faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/faucet/faucet.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/hardhat/dapp-tutorial-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/hardhat/dapp-tutorial-1.png -------------------------------------------------------------------------------- /static/img/hardhat/hardhat-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/hardhat/hardhat-1.avif -------------------------------------------------------------------------------- /static/img/htlc-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/htlc-process.png -------------------------------------------------------------------------------- /static/img/lstbtc/lstBTC_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/lstbtc/lstBTC_banner.png -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/chainlist_mainnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/chainlist_mainnet.png -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-1.png -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-1.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-10.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-11.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-12.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-13.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-14.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-15.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-15.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-2.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-3.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-4.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-5.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-6.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-7.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-8.webp -------------------------------------------------------------------------------- /static/img/miannet-wallet-config/mainnet-wallet-config-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/miannet-wallet-config/mainnet-wallet-config-9.webp -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-1.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-10.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-10.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-11.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-11.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-12.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-12.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-13.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-13.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-14.png -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-15.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-15.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-16.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-16.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-17.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-17.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-18.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-18.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-19.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-19.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-2.png -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-20.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-20.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-21.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-21.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-22.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-22.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-23.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-23.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-24.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-24.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-25.png -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-26.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-26.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-27.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-27.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-3.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-4.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-5.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-5.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-6.png -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-7.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-7.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-8.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-8.avif -------------------------------------------------------------------------------- /static/img/native-staking/native-staking-9.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/native-staking-9.avif -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-1.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-2.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-3.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-4.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-5.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-6.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-7.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-8.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide-9.png -------------------------------------------------------------------------------- /static/img/native-staking/updated-ui/staking-guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/native-staking/updated-ui/staking-guide.png -------------------------------------------------------------------------------- /static/img/remix/remix-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-1.avif -------------------------------------------------------------------------------- /static/img/remix/remix-10.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-10.avif -------------------------------------------------------------------------------- /static/img/remix/remix-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-10.png -------------------------------------------------------------------------------- /static/img/remix/remix-11.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-11.avif -------------------------------------------------------------------------------- /static/img/remix/remix-12.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-12.avif -------------------------------------------------------------------------------- /static/img/remix/remix-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-13.png -------------------------------------------------------------------------------- /static/img/remix/remix-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-2.avif -------------------------------------------------------------------------------- /static/img/remix/remix-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-3.avif -------------------------------------------------------------------------------- /static/img/remix/remix-4.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-4.avif -------------------------------------------------------------------------------- /static/img/remix/remix-5.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-5.avif -------------------------------------------------------------------------------- /static/img/remix/remix-6.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-6.avif -------------------------------------------------------------------------------- /static/img/remix/remix-7.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-7.avif -------------------------------------------------------------------------------- /static/img/remix/remix-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-7.png -------------------------------------------------------------------------------- /static/img/remix/remix-8.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-8.avif -------------------------------------------------------------------------------- /static/img/remix/remix-9.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/remix/remix-9.avif -------------------------------------------------------------------------------- /static/img/rpc/postman/rpc-psotman-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/postman/rpc-psotman-1.png -------------------------------------------------------------------------------- /static/img/rpc/postman/rpc-psotman-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/postman/rpc-psotman-2.png -------------------------------------------------------------------------------- /static/img/rpc/postman/rpc-psotman-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/postman/rpc-psotman-3.png -------------------------------------------------------------------------------- /static/img/rpc/postman/rpc-psotman-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/postman/rpc-psotman-4.png -------------------------------------------------------------------------------- /static/img/rpc/postman/rpc-psotman-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/postman/rpc-psotman-5.png -------------------------------------------------------------------------------- /static/img/rpc/postman/rpc-psotman-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/postman/rpc-psotman-6.png -------------------------------------------------------------------------------- /static/img/rpc/postman/rpc-psotman-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/postman/rpc-psotman-7.png -------------------------------------------------------------------------------- /static/img/rpc/rpc-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/rpc-1.png -------------------------------------------------------------------------------- /static/img/rpc/rpc-testnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/rpc/rpc-testnet.png -------------------------------------------------------------------------------- /static/img/solidity-support/evm-setting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/solidity-support/evm-setting.jpg -------------------------------------------------------------------------------- /static/img/solidity-support/hardhat-evm-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/solidity-support/hardhat-evm-setting.png -------------------------------------------------------------------------------- /static/img/solidity-support/remix-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/solidity-support/remix-setting.png -------------------------------------------------------------------------------- /static/img/solidity-support/verify-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/solidity-support/verify-contract.png -------------------------------------------------------------------------------- /static/img/stCore/mint-stcore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/stCore/mint-stcore.png -------------------------------------------------------------------------------- /static/img/stCore/redeem-stcore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/stCore/redeem-stcore.png -------------------------------------------------------------------------------- /static/img/staoshi-plus/DPoW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/DPoW.png -------------------------------------------------------------------------------- /static/img/staoshi-plus/Rewards-In-Core-Ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/Rewards-In-Core-Ecosystem.png -------------------------------------------------------------------------------- /static/img/staoshi-plus/Validator-Election-Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/Validator-Election-Workflow.png -------------------------------------------------------------------------------- /static/img/staoshi-plus/component-diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/component-diagram.jpg -------------------------------------------------------------------------------- /static/img/staoshi-plus/consensus-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/consensus-components.png -------------------------------------------------------------------------------- /static/img/staoshi-plus/dpow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/dpow.jpg -------------------------------------------------------------------------------- /static/img/staoshi-plus/rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/rewards.png -------------------------------------------------------------------------------- /static/img/staoshi-plus/satoshi-plus-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/satoshi-plus-components.png -------------------------------------------------------------------------------- /static/img/staoshi-plus/validator-election-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/validator-election-flow.png -------------------------------------------------------------------------------- /static/img/staoshi-plus/validator-election.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/staoshi-plus/validator-election.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/chainlist-testnet-connect-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/chainlist-testnet-connect-1.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/chainlist-testnet-connect-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/chainlist-testnet-connect-2.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/chainlist-testnet-connect-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/chainlist-testnet-connect-3.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/chainlist-testnet-connect-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/chainlist-testnet-connect-4.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/chainlist_testnet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/chainlist_testnet1.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/chainlist_testnet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/chainlist_testnet2.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/send-tcore-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/send-tcore-1.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/send-tcore-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/send-tcore-2.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/testnet-config-wallet-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/testnet-config-wallet-1.png -------------------------------------------------------------------------------- /static/img/testnet-wallet-config/testnet-wallet-config-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/testnet-wallet-config/testnet-wallet-config-2.png -------------------------------------------------------------------------------- /static/img/tokenomics-distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/tokenomics-distribution.png -------------------------------------------------------------------------------- /static/img/tokenomics/Breakdown_of_Allocations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/tokenomics/Breakdown_of_Allocations.png -------------------------------------------------------------------------------- /static/img/tokenomics/CORE_Tokenomics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/tokenomics/CORE_Tokenomics.png -------------------------------------------------------------------------------- /static/img/tokenomics/Cumulative_CORE_Emissions_Monthly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/tokenomics/Cumulative_CORE_Emissions_Monthly.png -------------------------------------------------------------------------------- /static/img/tokenomics/Cumulative_CORE_Emissions_Yearly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/tokenomics/Cumulative_CORE_Emissions_Yearly.png -------------------------------------------------------------------------------- /static/img/uniswap/swap-token-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/uniswap/swap-token-1.png -------------------------------------------------------------------------------- /static/img/uniswap/swap-token-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/uniswap/swap-token-2.png -------------------------------------------------------------------------------- /static/img/uniswap/swap-token-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/uniswap/swap-token-3.png -------------------------------------------------------------------------------- /static/img/uniswap/swap-token-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/uniswap/swap-token-4.png -------------------------------------------------------------------------------- /static/img/uniswap/swap-token-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/uniswap/swap-token-5.png -------------------------------------------------------------------------------- /static/img/uniswap/swap-token-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/uniswap/swap-token-6.png -------------------------------------------------------------------------------- /static/img/validator/Reward-Distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/Reward-Distribution.png -------------------------------------------------------------------------------- /static/img/validator/Rewards-In-Core-Ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/Rewards-In-Core-Ecosystem.png -------------------------------------------------------------------------------- /static/img/validator/Validator-Election-Workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/Validator-Election-Workflow.png -------------------------------------------------------------------------------- /static/img/validator/register/validator-register-1.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/register/validator-register-1.avif -------------------------------------------------------------------------------- /static/img/validator/register/validator-register-2.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/register/validator-register-2.avif -------------------------------------------------------------------------------- /static/img/validator/register/validator-register-3.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/register/validator-register-3.avif -------------------------------------------------------------------------------- /static/img/validator/register/validator-register-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/register/validator-register-4.webp -------------------------------------------------------------------------------- /static/img/validator/register/validator-rename-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/register/validator-rename-1.png -------------------------------------------------------------------------------- /static/img/validator/register/validator-rename-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/register/validator-rename-2.png -------------------------------------------------------------------------------- /static/img/validator/register/validator-rename-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/register/validator-rename-3.png -------------------------------------------------------------------------------- /static/img/validator/validator-regitration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/validator-regitration.png -------------------------------------------------------------------------------- /static/img/validator/validator-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/static/img/validator/validator-status.png -------------------------------------------------------------------------------- /styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredao-org/CoreDAO-Docs/5788feb6ca0e38131a3edcd4eeffafb15d0999c9/styles.module.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | // This file is not used in compilation. It is here just for a nice editor experience. 3 | "extends": "@docusaurus/tsconfig", 4 | "compilerOptions": { 5 | "baseUrl": "." 6 | }, 7 | "exclude": [".docusaurus", "build"] 8 | } 9 | --------------------------------------------------------------------------------