├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── api_key_request.yml │ ├── config.yml │ ├── development_issue.yml │ ├── feature_request.yml │ ├── feed_request.yml │ └── url_request.yml ├── config │ └── typos.toml ├── dependabot.yml └── workflows │ ├── automatic-feed-request.yml │ ├── check-external-links.yml │ ├── deploy.yml │ ├── lint-check-internal-links.yml │ ├── spell-check.yml │ ├── test-go-examples.yml │ ├── test-javascript-examples.yml │ ├── test-python-examples.yml │ ├── test-rust-examples.yml │ └── validate-pr-title.yml ├── .gitignore ├── .prettierignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── automations ├── .gitignore ├── README.md ├── check_new_feed.py ├── custom_feeds.json ├── feed_table_generator.py ├── ftso_feeds.json ├── ftso_risk.json ├── pyproject.toml ├── solidity_reference.json ├── solidity_reference_table_generator.py └── uv.lock ├── docgen ├── generate-solidity-docs.sh ├── hardhat.config.ts.patch ├── repos.list ├── technical-reference │ └── .gitignore └── templates │ ├── common.hbs │ ├── contract.hbs │ ├── enum.hbs │ ├── error.hbs │ ├── event.hbs │ ├── function.hbs │ ├── helpers.ts │ ├── modifier.hbs │ ├── node-type.hbs │ ├── page.hbs │ ├── struct.hbs │ ├── user-defined-value-type.hbs │ └── variable.hbs ├── docs ├── 1-intro.mdx ├── 2-run-node.mdx ├── authors.yml ├── fassets │ ├── 1-overview.mdx │ ├── 10-songbird.mdx │ ├── 2-minting.mdx │ ├── 3-redemption.mdx │ ├── 4-collateral.mdx │ ├── 5-core-vault.mdx │ ├── 6-liquidation.mdx │ ├── 7-emergency-pause.mdx │ ├── 8-operational-parameters.mdx │ ├── 9-reference.mdx │ ├── _minting_resources.mdx │ ├── developer-guides.mdx │ ├── developer-guides │ │ ├── 1-fassets-asset-manager-address-contracts-registry.mdx │ │ ├── 10-fassets-redemption-default.mdx │ │ ├── 11-fassets-redemption-queue.mdx │ │ ├── 2-fassets-fxrp-address.mdx │ │ ├── 3-fassets-settings-solidity.mdx │ │ ├── 4-fassets-settings-node.mdx │ │ ├── 5-fassets-mint.mdx │ │ ├── 6-fassets-mint-executor.mdx │ │ ├── 7-fassets-redeem.mdx │ │ ├── 8-fassets-swap-redeem.mdx │ │ ├── 9-fassets-agent-details.mdx │ │ ├── _exploring-additional-parameters.mdx │ │ ├── _get_fxrp_asset_manager.mdx │ │ ├── _minting_fees.mdx │ │ ├── _payment_timeframes.mdx │ │ ├── _redemption_process_prerequisites.mdx │ │ ├── fassets-list-agents.mdx │ │ └── usdt0-fxrp-swap.mdx │ ├── guides │ │ ├── 1-deploy-fassets-agent.mdx │ │ ├── 2-create-fasset-agent-ui.mdx │ │ ├── 3-create-fasset-agent-cli.mdx │ │ ├── 4-faq.mdx │ │ ├── 5-export-private-keys.mdx │ │ ├── 6-agent-bot-notifications.mdx │ │ ├── 7-infrastructure.mdx │ │ └── _restart_docker.mdx │ └── reference │ │ ├── IAgentOwnerRegistry.mdx │ │ ├── IAssetManager.mdx │ │ ├── IAssetManagerController.mdx │ │ ├── IAssetManagerEvents.mdx │ │ ├── ICollateralPool.mdx │ │ ├── ICoreVaultManager.mdx │ │ ├── agent-bot.mdx │ │ └── user-bot.mdx ├── fdc │ ├── 1-overview.mdx │ ├── 2-getting-started.mdx │ ├── 3-attestation-types.mdx │ ├── 5-reference.mdx │ ├── attestation-types │ │ ├── _addresses.mdx │ │ ├── _finality.mdx │ │ ├── _standard_address_hash.mdx │ │ ├── _standard_payment_reference.mdx │ │ ├── _transaction_success_status.mdx │ │ ├── address-validity.mdx │ │ ├── balance-decreasing-transaction.mdx │ │ ├── confirmed-block-height-exists.mdx │ │ ├── evm-transaction.mdx │ │ ├── json-api.mdx │ │ ├── payment.mdx │ │ ├── referenced-payment-nonexistence.mdx │ │ └── web2-json.mdx │ ├── guides │ │ ├── _available_testnet.mdx │ │ ├── fdc-by-hand.mdx │ │ ├── foundry │ │ │ ├── 01-address-validity.mdx │ │ │ ├── 02-evm-transaction.mdx │ │ │ ├── 03-payment.mdx │ │ │ ├── 04-web2-json.mdx │ │ │ ├── 05-proof-of-reserves.mdx │ │ │ ├── 06-weather-insurance.mdx │ │ │ ├── 07-web2-json-for-custom-api.mdx │ │ │ ├── 08-cross-chain-payment.mdx │ │ │ ├── 09-cross-chain-fdc.mdx │ │ │ ├── confirm-block-height.mdx │ │ │ ├── connect-evm-chains.mdx │ │ │ ├── create-attestation-type.mdx │ │ │ ├── evm-connectivity.mdx │ │ │ └── json-api.mdx │ │ └── hardhat │ │ │ ├── 01-address-validity.mdx │ │ │ ├── 02-evm-transaction.mdx │ │ │ ├── 03-payment.mdx │ │ │ ├── 04-web2-json.mdx │ │ │ ├── 05-proof-of-reserves.mdx │ │ │ ├── 06-weather-insurance.mdx │ │ │ ├── 07-web2-json-for-custom-api.mdx │ │ │ ├── detect-balance-decrease.mdx │ │ │ ├── json-api.mdx │ │ │ └── verify-payment-nonexistence.mdx │ └── reference │ │ ├── IAddressValidity.mdx │ │ ├── IBalanceDecreasingTransaction.mdx │ │ ├── IConfirmedBlockHeightExists.mdx │ │ ├── IEVMTransaction.mdx │ │ ├── IFdcHub.md │ │ ├── IFdcInflationConfigurations.md │ │ ├── IFdcRequestFeeConfigurations.md │ │ ├── IFdcVerification.md │ │ ├── IPayment.mdx │ │ ├── IReferencedPaymentNonexistence.mdx │ │ └── data-availability-api.mdx ├── ftso │ ├── 0-overview.mdx │ ├── 1-getting-started.mdx │ ├── 2-feeds.mdx │ ├── 4-solidity-reference.mdx │ ├── 5-migration.mdx │ ├── _feed_explanation.mdx │ ├── guides │ │ ├── adapters.mdx │ │ ├── build-first-app.mdx │ │ ├── change-quote-feed.mdx │ │ ├── create-custom-feed.mdx │ │ ├── make-volatility-incentive.mdx │ │ ├── query-feed-configuration.mdx │ │ └── read-feeds-offchain.mdx │ ├── scaling │ │ ├── 1-overview.mdx │ │ ├── 2-getting-started.mdx │ │ ├── 3-anchor-feeds.mdx │ │ ├── 4-solidity-reference.mdx │ │ ├── guides │ │ │ └── basic-integration.mdx │ │ └── solidity-reference │ │ │ ├── IFtsoFeedPublisher.md │ │ │ ├── IFtsoInflationConfigurations.md │ │ │ └── IFtsoRewardOffersManager.md │ └── solidity-reference │ │ ├── FtsoV2Interface.md │ │ ├── IFastUpdateIncentiveManager.md │ │ ├── IFastUpdater.md │ │ ├── IFastUpdatesConfiguration.md │ │ ├── IFeeCalculator.md │ │ └── IFtsoFeedIdConverter.md ├── network │ ├── 0-overview.mdx │ ├── 1-getting-started.mdx │ ├── 2-developer-tools.mdx │ ├── 3-governance.mdx │ ├── 4-consensus.mdx │ ├── 6-solidity-reference.mdx │ ├── 7-fsp.mdx │ ├── 8-flare-tx-sdk.mdx │ ├── flare-tx-sdk │ │ ├── 1-getting-started.mdx │ │ ├── 2-cookbook.mdx │ │ └── 3-advanced-usage.mdx │ ├── fsp │ │ ├── 1-weights-and-signing.mdx │ │ ├── 2-rewarding.mdx │ │ ├── 3-system-protocols.mdx │ │ ├── 4-offchain-services.mdx │ │ ├── 5-solidity-reference.mdx │ │ └── solidity-reference │ │ │ ├── IEntityManager.md │ │ │ ├── IFlareSystemsCalculator.md │ │ │ ├── IFlareSystemsManager.md │ │ │ ├── IRelay.md │ │ │ ├── IRewardManager.md │ │ │ ├── ISubmission.md │ │ │ ├── IVoterRegistry.md │ │ │ └── IWNatDelegationFee.md │ ├── guides │ │ ├── flare-contracts-registry.mdx │ │ ├── flare-for-go-developers.mdx │ │ ├── flare-for-javascript-developers.mdx │ │ ├── flare-for-python-developers.mdx │ │ ├── flare-for-rust-developers.mdx │ │ ├── gasless-usdt0-transfers.mdx │ │ ├── hardhat-foundry-starter-kit.mdx │ │ ├── manage-flaredrops.mdx │ │ ├── secure-random-numbers.mdx │ │ ├── using-flare-stake-tool.mdx │ │ └── wnat.mdx │ └── solidity-reference │ │ ├── IClaimSetupManager.md │ │ ├── IDistributionToDelegators.md │ │ ├── IFlareContractRegistry.md │ │ ├── IRNat.md │ │ ├── IWNat.md │ │ ├── ProtocolsV2Interface.md │ │ ├── RandomNumberV2Interface.md │ │ └── RewardsV2Interface.md ├── run-node │ ├── 1-system-requirements.mdx │ ├── 2-from-source.mdx │ ├── 3-using-docker.mdx │ ├── 4-register-validator.mdx │ ├── 5-flare-entity.mdx │ └── 6-GCP-marketplace-nodes.mdx ├── smart-accounts │ ├── 1-overview.mdx │ ├── 2-fasset-instructions.mdx │ ├── 3-custom-instruction.mdx │ └── guides │ │ ├── 01-fsa-cli.mdx │ │ ├── 02-custom-instructions.mdx │ │ └── 03-fassets-cycle.mdx ├── support │ ├── audits.mdx │ ├── faqs.mdx │ ├── flr.mdx │ ├── terminology.mdx │ └── whitepapers.mdx └── tags.yml ├── docusaurus.config.ts ├── examples ├── README.md ├── developer-hub-go │ ├── .gitignore │ ├── FastUpdater.go │ ├── FastUpdatesConfiguration.abi │ ├── FastUpdatesConfiguration.go │ ├── FastUpdatesIncentiveManager.abi │ ├── FlareContractRegistry.abi │ ├── FtsoV2.abi │ ├── FtsoV2.go │ ├── FtsoV2FeedConsumer.sol │ ├── README.md │ ├── RandomNumberV2.abi │ ├── coston │ │ └── block_number.go │ ├── coston2 │ │ ├── FastUpdatesIncentiveManager.go │ │ ├── FlareContractRegistry.go │ │ ├── FtsoV2FeedConsumer.go │ │ ├── RandomNumberV2.go │ │ ├── block_number.go │ │ ├── chain_id.go │ │ ├── chain_id_test.go │ │ ├── deploy_contract.go │ │ ├── make_query.go │ │ ├── make_query_test.go │ │ ├── secure_random.go │ │ ├── secure_random_test.go │ │ └── volatility_incentive.go │ ├── create_account.go │ ├── flare │ │ ├── FlareContractRegistry.go │ │ ├── FtsoV2AnchorFeedConsumer.go │ │ ├── FtsoV2FeedConsumer.go │ │ ├── block_number.go │ │ ├── chain_id.go │ │ ├── chain_id_test.go │ │ ├── deploy_contract.go │ │ ├── fetch_anchor_feeds.go │ │ ├── fetch_and_verify_anchor_onchain.go │ │ ├── make_query.go │ │ └── make_query_test.go │ ├── ftsov2_config_coston2.go │ ├── ftsov2_consumer_coston2.go │ ├── get_feed_id.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── songbird │ │ └── block_number.go ├── developer-hub-javascript │ ├── .gitignore │ ├── GaslessApp.tsx │ ├── GaslessRelayer.ts │ ├── PriceVerification.ts │ ├── README.md │ ├── USD0.json │ ├── api3Example.ts │ ├── babel.config.cjs │ ├── bandExample.ts │ ├── block_number_coston.js │ ├── block_number_coston2.js │ ├── block_number_flare.js │ ├── block_number_songbird.js │ ├── chain_id_coston2.js │ ├── chain_id_flare.js │ ├── chainlinkExample.ts │ ├── chronicleExample.ts │ ├── create_account.js │ ├── deployFTSOConsumer.ts │ ├── deploy_contract_coston2.js │ ├── deploy_contract_flare.js │ ├── eslint.config.js │ ├── fassetsCreateXrpPayment.ts │ ├── fassetsExecuteMinting.ts │ ├── fassetsReserveCollateral.ts │ ├── fassetsReserveCollateralWithExecutor.ts │ ├── fassetsSwapAndRedeem.ts │ ├── fassets_get_fxrp.ts │ ├── fassets_get_redemption_queue.ts │ ├── fassets_list_agents.ts │ ├── fdc_get_proof.ts │ ├── fdc_min_temp_claim_policy.ts │ ├── fdc_min_temp_create_policy.ts │ ├── fdc_min_temp_deploy_agency.ts │ ├── fdc_min_temp_expire_policy.ts │ ├── fdc_min_temp_resolve_policy.ts │ ├── fdc_min_temp_retire_unclaimed_policy.ts │ ├── fdc_prepare_request.ts │ ├── fdc_submit_request.ts │ ├── fdc_verify_proof.ts │ ├── fdc_verify_proof_of_reserves.ts │ ├── fetch_abi_coston2.js │ ├── fetch_abi_flare.js │ ├── fetch_anchor_feeds.js │ ├── fetch_and_verify_anchor_onchain.js │ ├── ftso_v2_consumer_hardhat.ts │ ├── ftsov2_config_coston2_ethers.js │ ├── ftsov2_config_coston2_web3.js │ ├── ftsov2_consumer_coston2_ethers.js │ ├── ftsov2_consumer_coston2_web3.js │ ├── get_feed_id.js │ ├── hardhat.config.ts │ ├── make_query_coston2.js │ ├── make_query_flare.js │ ├── package-lock.json │ ├── package.json │ ├── pythExample.ts │ ├── query_provider_and_push_onchain.js │ ├── secure_random_coston2_ethers.js │ ├── secure_random_coston2_web3.js │ ├── test.sh │ ├── tests │ │ ├── chain_id_coston2.test.js │ │ ├── chain_id_flare.test.js │ │ ├── fetch_abi_coston2.test.js │ │ ├── fetch_abi_flare.test.js │ │ ├── ftsov2_config_coston2_ethers.test.js │ │ ├── ftsov2_config_coston2_web3.test.js │ │ ├── ftsov2_consumer_coston2_ethers.test.js │ │ ├── ftsov2_consumer_coston2_web3.test.js │ │ ├── make_query_coston2.test.js │ │ ├── make_query_flare.test.js │ │ ├── secure_random_coston2_ethers.test.js │ │ └── secure_random_coston2_web3.test.js │ ├── uniswapV3Wrapper.ts │ ├── vite-env.d.ts │ ├── volatility_incentive_coston2_ethers.js │ ├── volatility_incentive_coston2_web3.js │ ├── wnat-deposit.ts │ └── wnat-withdraw.ts ├── developer-hub-python │ ├── .gitignore │ ├── README.md │ ├── block_number_coston.py │ ├── block_number_coston2.py │ ├── block_number_flare.py │ ├── block_number_songbird.py │ ├── chain_id_coston2.py │ ├── chain_id_flare.py │ ├── compile_contract.py │ ├── create_account.py │ ├── deploy_contract_coston2.py │ ├── deploy_contract_flare.py │ ├── fetch_abi_coston2.py │ ├── fetch_abi_flare.py │ ├── fetch_anchor_feeds.py │ ├── fetch_and_verify_anchor_onchain.py │ ├── ftsov2_config_coston2.py │ ├── ftsov2_consumer_coston2.py │ ├── get_feed_id.py │ ├── make_query_coston2.py │ ├── make_query_flare.py │ ├── pyproject.toml │ ├── secure_random_coston2.py │ ├── test_queries.py │ ├── utils.py │ ├── uv.lock │ └── volatility_incentive_coston2.py ├── developer-hub-rust │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── FlareContractRegistry.json │ ├── FtsoV2AnchorFeedConsumer.json │ ├── FtsoV2FeedConsumer.json │ ├── FtsoV2FeedConsumer.sol │ ├── README.md │ ├── RandomNumberV2.json │ ├── config.json │ ├── src │ │ └── bin │ │ │ ├── block_number_coston.rs │ │ │ ├── block_number_coston2.rs │ │ │ ├── block_number_flare.rs │ │ │ ├── block_number_songbird.rs │ │ │ ├── chain_id_coston2.rs │ │ │ ├── chain_id_flare.rs │ │ │ ├── create_account.rs │ │ │ ├── deploy_contract_coston2.rs │ │ │ ├── deploy_contract_flare.rs │ │ │ ├── fetch_anchor_feeds.rs │ │ │ ├── fetch_and_verify_anchor_onchain.rs │ │ │ ├── ftsov2_config_coston2.rs │ │ │ ├── ftsov2_consumer_coston2.rs │ │ │ ├── get_feed_id.rs │ │ │ ├── make_query_coston2.rs │ │ │ ├── make_query_flare.rs │ │ │ ├── secure_random_coston2.rs │ │ │ └── volatility_incentive_coston2.rs │ └── test.sh └── developer-hub-solidity │ ├── AddressSolidity.sol │ ├── AddressVerifier.sol │ ├── Api3Example.sol │ ├── BandExample.sol │ ├── BlockchainMonitor.sol │ ├── ChainlinkExample.sol │ ├── ChronicleExample.sol │ ├── EVMTransactionVerifier.sol │ ├── FAssetsAssetManagerSettingsLotSize.sol │ ├── FAssetsRedeem.sol │ ├── FAssetsSwapAndRedeem.sol │ ├── FDCTransferEventListener.sol │ ├── FTSOV2AnchorConsumer.sol │ ├── FTSOV2Consumer_hardhat.sol │ ├── FTSOV2FeedById.sol │ ├── FTSOV2FeedByIdWei.sol │ ├── FTSOV2FeedByIndexWei.sol │ ├── FTSOV2FeedsById.sol │ ├── FTSOV2FeedsByIdWei.sol │ ├── FeeChecker.sol │ ├── FtsoV2AnchorFeedConsumer.sol │ ├── FtsoV2ChangeQuoteFeed.sol │ ├── FtsoV2Consumer.sol │ ├── FtsoV2FeedConsumer.sol │ ├── FtsoV2FeedConsumer_foundry.sol │ ├── FtsoV2FeedConsumer_foundry.t.sol │ ├── FtsoV2FeedConsumer_no_imports.sol │ ├── FtsoV2MigrationExample.sol │ ├── GetFeedId.sol │ ├── HelloWorld.sol │ ├── ITypeTemplate.sol │ ├── InflationMonitor.sol │ ├── LockMonitor.sol │ ├── PaymentDeadlineEnforcer.sol │ ├── PaymentVerifier.sol │ ├── PriceVerifierCustomFeed.sol │ ├── PythExample.sol │ ├── RandomNumberFetcher.sol │ ├── RandomNumberV2Lottery.sol │ ├── SecureRandomConsumer.sol │ └── UniswapV3Wrapper.sol ├── lychee.toml ├── package.json ├── run-automations.sh ├── sidebars.ts ├── src ├── components │ ├── CopyButton.tsx │ ├── CustomCard.tsx │ ├── DataTables │ │ ├── CustomFeeds.tsx │ │ ├── FtsoFeeds.tsx │ │ └── SolidityReference.tsx │ ├── FAssets │ │ ├── OperationalParameters.tsx │ │ ├── Reference.tsx │ │ ├── operational-parameters.ts │ │ └── reference-data.ts │ ├── FDC │ │ ├── ToHexConverter.tsx │ │ └── VotingRoundIdCalculator.tsx │ ├── HomepageFeatures │ │ ├── featureCard.module.css │ │ ├── featureCard.tsx │ │ ├── featuresSection.module.css │ │ ├── featuresSection.tsx │ │ ├── hero.module.css │ │ ├── heroSection.tsx │ │ └── videoComponent.tsx │ ├── JiraIssueCollector.tsx │ ├── LogoCards.tsx │ ├── OpenApiDoc │ │ └── OpenApiDoc.tsx │ ├── developerTools.tsx │ ├── newGithubIssue.tsx │ ├── remix.tsx │ └── youtube.tsx ├── css │ ├── command_builder.css │ ├── custom.css │ └── onboarding.css ├── data │ └── developerTools.json └── theme │ ├── ColorModeToggle │ ├── index.tsx │ └── styles.module.css │ ├── DocCard │ ├── index.tsx │ └── styles.module.css │ ├── Footer │ ├── Copyright │ │ └── index.tsx │ ├── CustomFooter │ │ ├── customFooter.module.css │ │ └── customFooter.tsx │ ├── Layout │ │ └── index.tsx │ ├── LinkItem │ │ └── index.tsx │ ├── Links │ │ ├── MultiColumn │ │ │ └── index.tsx │ │ ├── Simple │ │ │ └── index.tsx │ │ └── index.tsx │ ├── Logo │ │ ├── index.tsx │ │ └── styles.module.css │ ├── SocialLinks │ │ ├── SocialLinks.tsx │ │ └── socialLinks.module.css │ └── index.tsx │ └── PaginatorNavLink │ ├── index.tsx │ └── styles.module.css ├── static ├── .nojekyll ├── fonts │ └── Satoshi │ │ ├── Satoshi-Variable.woff2 │ │ └── Satoshi-VariableItalic.woff2 ├── google83c60269bb5de30d.html ├── img │ ├── DATACONNECTOR.svg │ ├── DATACONNECTOR_new.svg │ ├── FASSETS.svg │ ├── FASSETS_new.svg │ ├── FTSO.svg │ ├── FTSO_new.svg │ ├── consensus │ │ ├── consensus_dark.svg │ │ ├── consensus_light.svg │ │ ├── slush_dark.svg │ │ ├── slush_light.svg │ │ ├── snowball_tree_dark.svg │ │ ├── snowball_tree_light.svg │ │ ├── snowman_dark.svg │ │ ├── snowman_light.svg │ │ ├── topological_dark.svg │ │ └── topological_light.svg │ ├── deploy-first-contract │ │ ├── 0-open-metamask.png │ │ ├── 10-deploy-and-run-transactions.png │ │ ├── 11-set-injected-provider.png │ │ ├── 12-connect-to-metamask.png │ │ ├── 13-confirm-permissions.png │ │ ├── 14-message-when-deploying.png │ │ ├── 15-confirm-deploy-in-metamask.png │ │ ├── 16-click-on-message.png │ │ ├── 17-update-message.png │ │ ├── 18-confirm-metamask-update-message.png │ │ ├── 19-query-updated-message.png │ │ ├── 2-approve-coston2.png │ │ ├── 3-switch-networks.png │ │ ├── 4-copy-address.png │ │ ├── 5-paste-address.png │ │ ├── 6-after-faucet-confirmation.png │ │ ├── 7-open-solidity-compiler.png │ │ ├── 8-set-evm-version.png │ │ └── 9-compile-contract.png │ ├── fassets-overview │ │ ├── fassets-collateral.png │ │ ├── fassets-cr.png │ │ ├── fassets-fees.png │ │ ├── fassets-minting.png │ │ ├── fassets-redeeming.png │ │ ├── fassets-system-overview.png │ │ └── fassets-tokens.png │ ├── fassets │ │ ├── fassets-agent-add-vault-form.png │ │ ├── fassets-agent-add-vault.png │ │ ├── fassets-agent-vault-operations.png │ │ ├── fassets-agent.png │ │ ├── flare_fassets_architecture_dark.svg │ │ ├── flare_fassets_architecture_light.svg │ │ ├── flare_fassets_collateral_ratio_dark.svg │ │ ├── flare_fassets_collateral_ratio_light.svg │ │ ├── flare_fassets_core_vault_architecture_dark.svg │ │ ├── flare_fassets_core_vault_architecture_light.svg │ │ ├── flare_fassets_minting_dark.svg │ │ └── flare_fassets_minting_light.svg │ ├── favicon.ico │ ├── fdc-by-hand │ │ ├── da-proof-by-request-round-expanded.png │ │ ├── da-response.png │ │ ├── da-try-it-out.png │ │ ├── fdc-hub.png │ │ ├── fdc-request-fee-configurations.png │ │ ├── fdc-verification.png │ │ ├── systems-explorer-advanced-finalizations.png │ │ ├── systems-explorer-attestation-requests.png │ │ ├── systems-explorer-finalizations.png │ │ ├── verifier-address-validity-prepare-request-expanded.png │ │ ├── verifier-authorization.png │ │ ├── verifier-authorize.png │ │ ├── verifier-authorized.png │ │ ├── verifier-executed-with-data.png │ │ ├── verifier-response.png │ │ └── verifier-try-it-out.png │ ├── fdc-overview │ │ ├── da_layer_dark.svg │ │ ├── da_layer_light.svg │ │ ├── fdc_architecture_dark.svg │ │ ├── fdc_architecture_light.svg │ │ ├── user_workflow_dark.svg │ │ └── user_workflow_light.svg │ ├── flare_architecture_dark.svg │ ├── flare_architecture_light.svg │ ├── flare_icon.svg │ ├── flare_icon_dark.svg │ ├── flare_logo.svg │ ├── flare_tbfd_dark.svg │ ├── flare_tbfd_light.svg │ ├── fsp │ │ ├── finalization_dark.svg │ │ ├── finalization_light.svg │ │ ├── fsp_dark.svg │ │ └── fsp_light.svg │ ├── ftso-getting-started │ │ ├── 0-open-solidity-compiler-tab.png │ │ ├── 1-set-injected-provider.png │ │ ├── 2-compile-contract.png │ │ ├── 3-open-deploy.png │ │ ├── 4-deploy-contract.png │ │ ├── 5-confirm-deploy-in-metamask.png │ │ └── 6-query-latest-feeds.png │ ├── ftso-overview │ │ ├── ftso_update_architecture_dark.svg │ │ ├── ftso_update_architecture_light.svg │ │ ├── ref_fast_comparison_social.svg │ │ ├── ref_fast_comparison_social_dark.svg │ │ ├── voting_epoch_dark.svg │ │ └── voting_epoch_light.svg │ ├── github-icon.svg │ ├── governance │ │ ├── governance_dark.svg │ │ └── governance_light.svg │ ├── how-to-state-connector │ │ └── CCCR.png │ ├── landing │ │ ├── dev_hub_ani_dark.mp4 │ │ ├── dev_hub_ani_dark.webm │ │ ├── dev_hub_ani_light.mp4 │ │ ├── dev_hub_ani_light.webm │ │ ├── dev_hub_ani_noblur.png │ │ ├── dev_hub_hero_mobile.webp │ │ └── splash.png │ ├── logo │ │ ├── FooterLogoDark.svg │ │ ├── FooterLogoLight.svg │ │ ├── foundry-logo.png │ │ ├── hardhat-logo.svg │ │ ├── metamask-logo.svg │ │ ├── rabby-logo.svg │ │ └── remix-logo.png │ ├── menu │ │ ├── DATACONNECTOR_dark.svg │ │ ├── DATACONNECTOR_dark_old.svg │ │ ├── DATACONNECTOR_light.svg │ │ ├── DATACONNECTOR_light_old.svg │ │ ├── FASSETS_dark.svg │ │ ├── FASSETS_dark_old.svg │ │ ├── FASSETS_light.svg │ │ ├── FASSETS_light_old.svg │ │ ├── FTSO_dark.svg │ │ ├── FTSO_dark_old.svg │ │ ├── FTSO_light.svg │ │ └── FTSO_light_old.svg │ ├── run-node-fsp │ │ ├── fsp_run_node_dark.svg │ │ └── fsp_run_node_light.svg │ ├── run-node-ftso-data-provider │ │ ├── ftso_provider_architecture_dark.svg │ │ └── ftso_provider_architecture_light.svg │ ├── run-node-gcp-marketplace │ │ ├── step1-img.png │ │ ├── step2-1-img.png │ │ └── step2-img.png │ ├── set-evm-version-remix.png │ ├── smart-accounts │ │ ├── approve_dark.svg │ │ ├── approve_light.svg │ │ ├── claim_withdraw_dark.svg │ │ ├── claim_withdraw_light.svg │ │ ├── custom_dark.svg │ │ ├── custom_light.svg │ │ ├── deposit_dark.svg │ │ ├── deposit_light.svg │ │ ├── redeem_dark.svg │ │ ├── redeem_light.svg │ │ ├── reserve_collateral_dark.svg │ │ ├── reserve_collateral_light.svg │ │ ├── withdraw_dark.svg │ │ └── withdraw_light.svg │ ├── social-icons │ │ ├── Telegram.svg │ │ ├── X.svg │ │ ├── discord.svg │ │ ├── discourse.svg │ │ ├── github.svg │ │ ├── linkedin.svg │ │ └── youtube.svg │ ├── tokenomics │ │ ├── tokenomics-distribution-dark.svg │ │ ├── tokenomics-distribution-light.svg │ │ ├── tokenomics-macro-dark.svg │ │ ├── tokenomics-macro-light.svg │ │ ├── tokenomics-schedule-dark.svg │ │ └── tokenomics-schedule-light.svg │ ├── xrp_icon.svg │ └── xrp_icon_dark.svg ├── js │ └── cookie-loader.js ├── openapi │ ├── data-availability-api.yaml │ └── fdcapidoc.json └── pdf │ ├── audits │ ├── 20210701-Coinspect-Smart_Contract_Audit-Flare.pdf │ ├── 20220201-Coinspect-Smart_Contract_Audit-Flare.pdf │ ├── 20220601-Coinspect-Flare-Source_Code_Review-Attestation_Client-v240220.pdf │ ├── 20220601-Coinspect-Flare-Source_Code_Review-Multichain_Client_Library-v240220.pdf │ ├── 20220601-Coinspect-Smart_Contract_Audit-Flare_Network_Launch.pdf │ ├── 20220601-Coinspect_Smart_Contract_Audit_fAsset_v220829.pdf │ ├── 20220801-Flare_Networks_Ltd.-Secure_Code_Review_of_the_Flare_Network's_Validator_Codebase_v1.0_Public.pdf │ ├── 20220901-Flare_Networks_Ltd.-Secure_Code_Review_of_Solidity_Contracts_on_the_Flare_Network_v1.0_public.pdf │ ├── 20220901-Flare_Networks_Ltd.-Secure_Code_Review_of_the_Flare_Validator_V2-Report_v1.0_Public.pdf │ ├── 20221001-Coinspect-Smart_Contract_Audit-Flare_Airdrop_Update-v221109.pdf │ ├── 20221001-Flare_Networks_Ltd.-Secure_Code_Review_of_Solidity_Smart_Contracts_on_the_Flare_Network_v1.0_Public.pdf │ ├── 20221201-Coinspect-SmartContractAudit-FlareTDEUpdates-v221220.pdf │ ├── 20221201-FlareNetworksLtd.-Dec2022-SecureCodeReviewofSoliditySmartContractsontheFlareNetworkv1.0_Public.pdf │ ├── 20221201-FlareNetworksLtd.-SecureCodeReviewofGolangValidatorontheFlareNetworkv1.0_Public.pdf │ ├── 20230101-Coinspect-SmartContractAudit-FlareHybridBandRewardv230220.pdf │ ├── 20230201-FlareNetworksLtd.-SecureCodeReviewof_Golang_Validator_on_the_Flare_Network_v1.0_February_Public.pdf │ ├── 20230401-Coinspect-Flare-SourceCodeSecurityReview-SmartContractsV2-v240515.pdf │ ├── 20230901-Coinspect-Flare-Smart_Contract_Review-FAsset_V2-v240220.pdf │ ├── 20230901-Coinspect-Flare-Smart_Contract_Review-StakingP2-v240220.pdf │ ├── 20231001-Coinspect-Flare-Source_Code_Review-FAsset_Bots-v240220.pdf │ ├── 20231001-Coinspect-Flare-Source_Code_Review-Staking_P2-Offchain_Services-v240220.pdf │ ├── 20231101-Coinspect-Flare-SmartContractAudit-HexWrappedTokens-v231211.pdf │ ├── 20231207-Coinspect-Flare-Smart_Contract_Review-FAsset_Liquidator-v231207.pdf │ ├── 20240101-Coinspect-Flare-SourceCodeSecurityReview-CChainIndexer-v240409.pdf │ ├── 20240101-Coinspect-Flare-SourceCodeSecurityReview-FTSOScaling-v240515.pdf │ ├── 20240101-Coinspect-Flare-SourceCodeSecurityReview-TopLevelClient-v240515.pdf │ ├── 20240101-Coinspect-Smart_Contract_Review-Flare_Attestation_Suite-v240220.pdf │ ├── 20240301-Coinspect-Flare-SourceCodeSecurityReview-TransactionVerifier-v240516.pdf │ ├── 20240401-Coinspect-Flare-SourceCodeSecurityReview-FastUpdates-v240612.pdf │ ├── 20240501-Coinspect-Flare-SecurityReview-VoterRegistryFix-v240603.pdf │ ├── 20240501-FYEO-FlareOngoingSongbird1.0_Public.pdf │ ├── 20240501-Halborn-FTSOFastUpdatesprotocolAudit.pdf │ ├── 20240501-Halborn-FastUpdatesAudit.pdf │ ├── 20240601-Coinspect-SmartContractSecurityReview-Flare-RNatContracts-v240701.pdf │ ├── 20240601-FYEO-Flare-Ongoing_Songbird_June_10th_1.0_Public.pdf │ ├── 20240601-FYEO-Flare-Ongoing_Songbird_June_20th_1.0_Public.docx.pdf │ ├── 20240801-Coinspect-Source_Code_Audit-Flare-FDCv1-v241004.pdf │ ├── 20240901-Coinspect-SmartContractAudit-Flare-FassetUpdate-v240910.pdf │ ├── 20241001-Coinspect-SourceCodeAudit-Flare-FDCv2-v250113.pdf │ ├── 20241001-FLARE-SecurityCodeReviewFLAREDataAvailabilityv1.0_Public.pdf │ ├── 20241215-Coinspect-SmartContractAudit-Flare-FAssetV2Updates-v241217.pdf │ ├── 20250101-Coinspect-SmartContractAudit-Flare-Pre-Register&FTSOManagement-v250109.pdf │ ├── 20250201-Coinspect-SmartContractAudit-Flare-USDT_Swapper-v250327.pdf │ ├── 20250205-Coinspect-SmartContractAudit-Flare-FTSOv2CustomFeedsDiffReview-v240210.pdf │ ├── 20250401-Coinspect-SmartContractAudit-Flare-FAssetCoreVault-v250506.pdf │ ├── 20250409-Zellic-FAsset_OFTAdapter_Report.pdf │ ├── 20250801-Zellic-Flare_FAssets_Audit_Report_08_2025.pdf │ ├── 20250923_Zellic-Flare-FAssets-diff-v1.pdf │ ├── 20251020-Zellic-Flare_FAssets_diff-v2.pdf │ └── remove_spaces.sh │ └── whitepapers │ ├── 20191105-FlareConsensusProtocol.pdf │ ├── 20220722-HybridPostQuantumDigitalSignatureSchemeForTheEthereumVirtualMachine.pdf │ ├── 20221231-TheFlareNetworkAndFLRToken.pdf │ ├── 20230406-KrakenExchange-FTSOPriceComparison.pdf │ ├── 20230529-SongbirdBandUpdate-ImpactOfSTP02.pdf │ ├── 20240223-FlareTimeSeriesOracleV2.pdf │ ├── 20240224-FlareDataConnector.pdf │ ├── 20240225-ConsensusLearning.pdf │ └── remove_spaces.sh ├── tsconfig.json ├── update-deps.sh └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dineshpinto -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/api_key_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/ISSUE_TEMPLATE/api_key_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/development_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/ISSUE_TEMPLATE/development_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feed_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/ISSUE_TEMPLATE/feed_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/url_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/ISSUE_TEMPLATE/url_request.yml -------------------------------------------------------------------------------- /.github/config/typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/config/typos.toml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automatic-feed-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/automatic-feed-request.yml -------------------------------------------------------------------------------- /.github/workflows/check-external-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/check-external-links.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint-check-internal-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/lint-check-internal-links.yml -------------------------------------------------------------------------------- /.github/workflows/spell-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/spell-check.yml -------------------------------------------------------------------------------- /.github/workflows/test-go-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/test-go-examples.yml -------------------------------------------------------------------------------- /.github/workflows/test-javascript-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/test-javascript-examples.yml -------------------------------------------------------------------------------- /.github/workflows/test-python-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/test-python-examples.yml -------------------------------------------------------------------------------- /.github/workflows/test-rust-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/test-rust-examples.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.github/workflows/validate-pr-title.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/.prettierignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/README.md -------------------------------------------------------------------------------- /automations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/.gitignore -------------------------------------------------------------------------------- /automations/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automations/check_new_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/check_new_feed.py -------------------------------------------------------------------------------- /automations/custom_feeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/custom_feeds.json -------------------------------------------------------------------------------- /automations/feed_table_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/feed_table_generator.py -------------------------------------------------------------------------------- /automations/ftso_feeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/ftso_feeds.json -------------------------------------------------------------------------------- /automations/ftso_risk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/ftso_risk.json -------------------------------------------------------------------------------- /automations/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/pyproject.toml -------------------------------------------------------------------------------- /automations/solidity_reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/solidity_reference.json -------------------------------------------------------------------------------- /automations/solidity_reference_table_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/solidity_reference_table_generator.py -------------------------------------------------------------------------------- /automations/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/automations/uv.lock -------------------------------------------------------------------------------- /docgen/generate-solidity-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/generate-solidity-docs.sh -------------------------------------------------------------------------------- /docgen/hardhat.config.ts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/hardhat.config.ts.patch -------------------------------------------------------------------------------- /docgen/repos.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/repos.list -------------------------------------------------------------------------------- /docgen/technical-reference/.gitignore: -------------------------------------------------------------------------------- 1 | *.md -------------------------------------------------------------------------------- /docgen/templates/common.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/templates/common.hbs -------------------------------------------------------------------------------- /docgen/templates/contract.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/templates/contract.hbs -------------------------------------------------------------------------------- /docgen/templates/enum.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/templates/enum.hbs -------------------------------------------------------------------------------- /docgen/templates/error.hbs: -------------------------------------------------------------------------------- 1 | {{>common}} -------------------------------------------------------------------------------- /docgen/templates/event.hbs: -------------------------------------------------------------------------------- 1 | {{>common}} 2 | -------------------------------------------------------------------------------- /docgen/templates/function.hbs: -------------------------------------------------------------------------------- 1 | {{>common}} 2 | -------------------------------------------------------------------------------- /docgen/templates/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/templates/helpers.ts -------------------------------------------------------------------------------- /docgen/templates/modifier.hbs: -------------------------------------------------------------------------------- 1 | {{>common}} 2 | -------------------------------------------------------------------------------- /docgen/templates/node-type.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/templates/node-type.hbs -------------------------------------------------------------------------------- /docgen/templates/page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/templates/page.hbs -------------------------------------------------------------------------------- /docgen/templates/struct.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docgen/templates/struct.hbs -------------------------------------------------------------------------------- /docgen/templates/user-defined-value-type.hbs: -------------------------------------------------------------------------------- 1 | {{>common}} 2 | -------------------------------------------------------------------------------- /docgen/templates/variable.hbs: -------------------------------------------------------------------------------- 1 | {{>common}} 2 | -------------------------------------------------------------------------------- /docs/1-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/1-intro.mdx -------------------------------------------------------------------------------- /docs/2-run-node.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/2-run-node.mdx -------------------------------------------------------------------------------- /docs/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/authors.yml -------------------------------------------------------------------------------- /docs/fassets/1-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/1-overview.mdx -------------------------------------------------------------------------------- /docs/fassets/10-songbird.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/10-songbird.mdx -------------------------------------------------------------------------------- /docs/fassets/2-minting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/2-minting.mdx -------------------------------------------------------------------------------- /docs/fassets/3-redemption.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/3-redemption.mdx -------------------------------------------------------------------------------- /docs/fassets/4-collateral.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/4-collateral.mdx -------------------------------------------------------------------------------- /docs/fassets/5-core-vault.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/5-core-vault.mdx -------------------------------------------------------------------------------- /docs/fassets/6-liquidation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/6-liquidation.mdx -------------------------------------------------------------------------------- /docs/fassets/7-emergency-pause.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/7-emergency-pause.mdx -------------------------------------------------------------------------------- /docs/fassets/8-operational-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/8-operational-parameters.mdx -------------------------------------------------------------------------------- /docs/fassets/9-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/9-reference.mdx -------------------------------------------------------------------------------- /docs/fassets/_minting_resources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/_minting_resources.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/1-fassets-asset-manager-address-contracts-registry.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/1-fassets-asset-manager-address-contracts-registry.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/10-fassets-redemption-default.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/10-fassets-redemption-default.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/11-fassets-redemption-queue.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/11-fassets-redemption-queue.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/2-fassets-fxrp-address.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/2-fassets-fxrp-address.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/3-fassets-settings-solidity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/3-fassets-settings-solidity.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/4-fassets-settings-node.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/4-fassets-settings-node.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/5-fassets-mint.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/5-fassets-mint.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/6-fassets-mint-executor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/6-fassets-mint-executor.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/7-fassets-redeem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/7-fassets-redeem.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/8-fassets-swap-redeem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/8-fassets-swap-redeem.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/9-fassets-agent-details.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/9-fassets-agent-details.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/_exploring-additional-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/_exploring-additional-parameters.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/_get_fxrp_asset_manager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/_get_fxrp_asset_manager.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/_minting_fees.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/_minting_fees.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/_payment_timeframes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/_payment_timeframes.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/_redemption_process_prerequisites.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/_redemption_process_prerequisites.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/fassets-list-agents.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/fassets-list-agents.mdx -------------------------------------------------------------------------------- /docs/fassets/developer-guides/usdt0-fxrp-swap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/developer-guides/usdt0-fxrp-swap.mdx -------------------------------------------------------------------------------- /docs/fassets/guides/1-deploy-fassets-agent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/guides/1-deploy-fassets-agent.mdx -------------------------------------------------------------------------------- /docs/fassets/guides/2-create-fasset-agent-ui.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/guides/2-create-fasset-agent-ui.mdx -------------------------------------------------------------------------------- /docs/fassets/guides/3-create-fasset-agent-cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/guides/3-create-fasset-agent-cli.mdx -------------------------------------------------------------------------------- /docs/fassets/guides/4-faq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/guides/4-faq.mdx -------------------------------------------------------------------------------- /docs/fassets/guides/5-export-private-keys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/guides/5-export-private-keys.mdx -------------------------------------------------------------------------------- /docs/fassets/guides/6-agent-bot-notifications.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/guides/6-agent-bot-notifications.mdx -------------------------------------------------------------------------------- /docs/fassets/guides/7-infrastructure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/guides/7-infrastructure.mdx -------------------------------------------------------------------------------- /docs/fassets/guides/_restart_docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/guides/_restart_docker.mdx -------------------------------------------------------------------------------- /docs/fassets/reference/IAgentOwnerRegistry.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/reference/IAgentOwnerRegistry.mdx -------------------------------------------------------------------------------- /docs/fassets/reference/IAssetManager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/reference/IAssetManager.mdx -------------------------------------------------------------------------------- /docs/fassets/reference/IAssetManagerController.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/reference/IAssetManagerController.mdx -------------------------------------------------------------------------------- /docs/fassets/reference/IAssetManagerEvents.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/reference/IAssetManagerEvents.mdx -------------------------------------------------------------------------------- /docs/fassets/reference/ICollateralPool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/reference/ICollateralPool.mdx -------------------------------------------------------------------------------- /docs/fassets/reference/ICoreVaultManager.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/reference/ICoreVaultManager.mdx -------------------------------------------------------------------------------- /docs/fassets/reference/agent-bot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/reference/agent-bot.mdx -------------------------------------------------------------------------------- /docs/fassets/reference/user-bot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fassets/reference/user-bot.mdx -------------------------------------------------------------------------------- /docs/fdc/1-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/1-overview.mdx -------------------------------------------------------------------------------- /docs/fdc/2-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/2-getting-started.mdx -------------------------------------------------------------------------------- /docs/fdc/3-attestation-types.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/3-attestation-types.mdx -------------------------------------------------------------------------------- /docs/fdc/5-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/5-reference.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/_addresses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/_addresses.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/_finality.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/_finality.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/_standard_address_hash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/_standard_address_hash.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/_standard_payment_reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/_standard_payment_reference.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/_transaction_success_status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/_transaction_success_status.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/address-validity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/address-validity.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/balance-decreasing-transaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/balance-decreasing-transaction.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/confirmed-block-height-exists.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/confirmed-block-height-exists.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/evm-transaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/evm-transaction.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/json-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/json-api.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/payment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/payment.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/referenced-payment-nonexistence.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/referenced-payment-nonexistence.mdx -------------------------------------------------------------------------------- /docs/fdc/attestation-types/web2-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/attestation-types/web2-json.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/_available_testnet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/_available_testnet.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/fdc-by-hand.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/fdc-by-hand.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/01-address-validity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/01-address-validity.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/02-evm-transaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/02-evm-transaction.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/03-payment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/03-payment.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/04-web2-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/04-web2-json.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/05-proof-of-reserves.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/05-proof-of-reserves.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/06-weather-insurance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/06-weather-insurance.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/07-web2-json-for-custom-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/07-web2-json-for-custom-api.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/08-cross-chain-payment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/08-cross-chain-payment.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/09-cross-chain-fdc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/09-cross-chain-fdc.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/confirm-block-height.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/confirm-block-height.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/connect-evm-chains.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/connect-evm-chains.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/create-attestation-type.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/create-attestation-type.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/evm-connectivity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/evm-connectivity.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/foundry/json-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/foundry/json-api.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/01-address-validity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/01-address-validity.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/02-evm-transaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/02-evm-transaction.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/03-payment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/03-payment.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/04-web2-json.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/04-web2-json.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/05-proof-of-reserves.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/05-proof-of-reserves.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/06-weather-insurance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/06-weather-insurance.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/07-web2-json-for-custom-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/07-web2-json-for-custom-api.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/detect-balance-decrease.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/detect-balance-decrease.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/json-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/json-api.mdx -------------------------------------------------------------------------------- /docs/fdc/guides/hardhat/verify-payment-nonexistence.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/guides/hardhat/verify-payment-nonexistence.mdx -------------------------------------------------------------------------------- /docs/fdc/reference/IAddressValidity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IAddressValidity.mdx -------------------------------------------------------------------------------- /docs/fdc/reference/IBalanceDecreasingTransaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IBalanceDecreasingTransaction.mdx -------------------------------------------------------------------------------- /docs/fdc/reference/IConfirmedBlockHeightExists.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IConfirmedBlockHeightExists.mdx -------------------------------------------------------------------------------- /docs/fdc/reference/IEVMTransaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IEVMTransaction.mdx -------------------------------------------------------------------------------- /docs/fdc/reference/IFdcHub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IFdcHub.md -------------------------------------------------------------------------------- /docs/fdc/reference/IFdcInflationConfigurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IFdcInflationConfigurations.md -------------------------------------------------------------------------------- /docs/fdc/reference/IFdcRequestFeeConfigurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IFdcRequestFeeConfigurations.md -------------------------------------------------------------------------------- /docs/fdc/reference/IFdcVerification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IFdcVerification.md -------------------------------------------------------------------------------- /docs/fdc/reference/IPayment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IPayment.mdx -------------------------------------------------------------------------------- /docs/fdc/reference/IReferencedPaymentNonexistence.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/IReferencedPaymentNonexistence.mdx -------------------------------------------------------------------------------- /docs/fdc/reference/data-availability-api.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/fdc/reference/data-availability-api.mdx -------------------------------------------------------------------------------- /docs/ftso/0-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/0-overview.mdx -------------------------------------------------------------------------------- /docs/ftso/1-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/1-getting-started.mdx -------------------------------------------------------------------------------- /docs/ftso/2-feeds.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/2-feeds.mdx -------------------------------------------------------------------------------- /docs/ftso/4-solidity-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/4-solidity-reference.mdx -------------------------------------------------------------------------------- /docs/ftso/5-migration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/5-migration.mdx -------------------------------------------------------------------------------- /docs/ftso/_feed_explanation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/_feed_explanation.mdx -------------------------------------------------------------------------------- /docs/ftso/guides/adapters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/guides/adapters.mdx -------------------------------------------------------------------------------- /docs/ftso/guides/build-first-app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/guides/build-first-app.mdx -------------------------------------------------------------------------------- /docs/ftso/guides/change-quote-feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/guides/change-quote-feed.mdx -------------------------------------------------------------------------------- /docs/ftso/guides/create-custom-feed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/guides/create-custom-feed.mdx -------------------------------------------------------------------------------- /docs/ftso/guides/make-volatility-incentive.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/guides/make-volatility-incentive.mdx -------------------------------------------------------------------------------- /docs/ftso/guides/query-feed-configuration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/guides/query-feed-configuration.mdx -------------------------------------------------------------------------------- /docs/ftso/guides/read-feeds-offchain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/guides/read-feeds-offchain.mdx -------------------------------------------------------------------------------- /docs/ftso/scaling/1-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/scaling/1-overview.mdx -------------------------------------------------------------------------------- /docs/ftso/scaling/2-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/scaling/2-getting-started.mdx -------------------------------------------------------------------------------- /docs/ftso/scaling/3-anchor-feeds.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/scaling/3-anchor-feeds.mdx -------------------------------------------------------------------------------- /docs/ftso/scaling/4-solidity-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/scaling/4-solidity-reference.mdx -------------------------------------------------------------------------------- /docs/ftso/scaling/guides/basic-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/scaling/guides/basic-integration.mdx -------------------------------------------------------------------------------- /docs/ftso/scaling/solidity-reference/IFtsoFeedPublisher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/scaling/solidity-reference/IFtsoFeedPublisher.md -------------------------------------------------------------------------------- /docs/ftso/scaling/solidity-reference/IFtsoInflationConfigurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/scaling/solidity-reference/IFtsoInflationConfigurations.md -------------------------------------------------------------------------------- /docs/ftso/scaling/solidity-reference/IFtsoRewardOffersManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/scaling/solidity-reference/IFtsoRewardOffersManager.md -------------------------------------------------------------------------------- /docs/ftso/solidity-reference/FtsoV2Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/solidity-reference/FtsoV2Interface.md -------------------------------------------------------------------------------- /docs/ftso/solidity-reference/IFastUpdateIncentiveManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/solidity-reference/IFastUpdateIncentiveManager.md -------------------------------------------------------------------------------- /docs/ftso/solidity-reference/IFastUpdater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/solidity-reference/IFastUpdater.md -------------------------------------------------------------------------------- /docs/ftso/solidity-reference/IFastUpdatesConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/solidity-reference/IFastUpdatesConfiguration.md -------------------------------------------------------------------------------- /docs/ftso/solidity-reference/IFeeCalculator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/solidity-reference/IFeeCalculator.md -------------------------------------------------------------------------------- /docs/ftso/solidity-reference/IFtsoFeedIdConverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/ftso/solidity-reference/IFtsoFeedIdConverter.md -------------------------------------------------------------------------------- /docs/network/0-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/0-overview.mdx -------------------------------------------------------------------------------- /docs/network/1-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/1-getting-started.mdx -------------------------------------------------------------------------------- /docs/network/2-developer-tools.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/2-developer-tools.mdx -------------------------------------------------------------------------------- /docs/network/3-governance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/3-governance.mdx -------------------------------------------------------------------------------- /docs/network/4-consensus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/4-consensus.mdx -------------------------------------------------------------------------------- /docs/network/6-solidity-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/6-solidity-reference.mdx -------------------------------------------------------------------------------- /docs/network/7-fsp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/7-fsp.mdx -------------------------------------------------------------------------------- /docs/network/8-flare-tx-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/8-flare-tx-sdk.mdx -------------------------------------------------------------------------------- /docs/network/flare-tx-sdk/1-getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/flare-tx-sdk/1-getting-started.mdx -------------------------------------------------------------------------------- /docs/network/flare-tx-sdk/2-cookbook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/flare-tx-sdk/2-cookbook.mdx -------------------------------------------------------------------------------- /docs/network/flare-tx-sdk/3-advanced-usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/flare-tx-sdk/3-advanced-usage.mdx -------------------------------------------------------------------------------- /docs/network/fsp/1-weights-and-signing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/1-weights-and-signing.mdx -------------------------------------------------------------------------------- /docs/network/fsp/2-rewarding.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/2-rewarding.mdx -------------------------------------------------------------------------------- /docs/network/fsp/3-system-protocols.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/3-system-protocols.mdx -------------------------------------------------------------------------------- /docs/network/fsp/4-offchain-services.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/4-offchain-services.mdx -------------------------------------------------------------------------------- /docs/network/fsp/5-solidity-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/5-solidity-reference.mdx -------------------------------------------------------------------------------- /docs/network/fsp/solidity-reference/IEntityManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/solidity-reference/IEntityManager.md -------------------------------------------------------------------------------- /docs/network/fsp/solidity-reference/IFlareSystemsCalculator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/solidity-reference/IFlareSystemsCalculator.md -------------------------------------------------------------------------------- /docs/network/fsp/solidity-reference/IFlareSystemsManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/solidity-reference/IFlareSystemsManager.md -------------------------------------------------------------------------------- /docs/network/fsp/solidity-reference/IRelay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/solidity-reference/IRelay.md -------------------------------------------------------------------------------- /docs/network/fsp/solidity-reference/IRewardManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/solidity-reference/IRewardManager.md -------------------------------------------------------------------------------- /docs/network/fsp/solidity-reference/ISubmission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/solidity-reference/ISubmission.md -------------------------------------------------------------------------------- /docs/network/fsp/solidity-reference/IVoterRegistry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/solidity-reference/IVoterRegistry.md -------------------------------------------------------------------------------- /docs/network/fsp/solidity-reference/IWNatDelegationFee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/fsp/solidity-reference/IWNatDelegationFee.md -------------------------------------------------------------------------------- /docs/network/guides/flare-contracts-registry.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/flare-contracts-registry.mdx -------------------------------------------------------------------------------- /docs/network/guides/flare-for-go-developers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/flare-for-go-developers.mdx -------------------------------------------------------------------------------- /docs/network/guides/flare-for-javascript-developers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/flare-for-javascript-developers.mdx -------------------------------------------------------------------------------- /docs/network/guides/flare-for-python-developers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/flare-for-python-developers.mdx -------------------------------------------------------------------------------- /docs/network/guides/flare-for-rust-developers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/flare-for-rust-developers.mdx -------------------------------------------------------------------------------- /docs/network/guides/gasless-usdt0-transfers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/gasless-usdt0-transfers.mdx -------------------------------------------------------------------------------- /docs/network/guides/hardhat-foundry-starter-kit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/hardhat-foundry-starter-kit.mdx -------------------------------------------------------------------------------- /docs/network/guides/manage-flaredrops.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/manage-flaredrops.mdx -------------------------------------------------------------------------------- /docs/network/guides/secure-random-numbers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/secure-random-numbers.mdx -------------------------------------------------------------------------------- /docs/network/guides/using-flare-stake-tool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/using-flare-stake-tool.mdx -------------------------------------------------------------------------------- /docs/network/guides/wnat.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/guides/wnat.mdx -------------------------------------------------------------------------------- /docs/network/solidity-reference/IClaimSetupManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/solidity-reference/IClaimSetupManager.md -------------------------------------------------------------------------------- /docs/network/solidity-reference/IDistributionToDelegators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/solidity-reference/IDistributionToDelegators.md -------------------------------------------------------------------------------- /docs/network/solidity-reference/IFlareContractRegistry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/solidity-reference/IFlareContractRegistry.md -------------------------------------------------------------------------------- /docs/network/solidity-reference/IRNat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/solidity-reference/IRNat.md -------------------------------------------------------------------------------- /docs/network/solidity-reference/IWNat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/solidity-reference/IWNat.md -------------------------------------------------------------------------------- /docs/network/solidity-reference/ProtocolsV2Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/solidity-reference/ProtocolsV2Interface.md -------------------------------------------------------------------------------- /docs/network/solidity-reference/RandomNumberV2Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/solidity-reference/RandomNumberV2Interface.md -------------------------------------------------------------------------------- /docs/network/solidity-reference/RewardsV2Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/network/solidity-reference/RewardsV2Interface.md -------------------------------------------------------------------------------- /docs/run-node/1-system-requirements.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/run-node/1-system-requirements.mdx -------------------------------------------------------------------------------- /docs/run-node/2-from-source.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/run-node/2-from-source.mdx -------------------------------------------------------------------------------- /docs/run-node/3-using-docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/run-node/3-using-docker.mdx -------------------------------------------------------------------------------- /docs/run-node/4-register-validator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/run-node/4-register-validator.mdx -------------------------------------------------------------------------------- /docs/run-node/5-flare-entity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/run-node/5-flare-entity.mdx -------------------------------------------------------------------------------- /docs/run-node/6-GCP-marketplace-nodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/run-node/6-GCP-marketplace-nodes.mdx -------------------------------------------------------------------------------- /docs/smart-accounts/1-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/smart-accounts/1-overview.mdx -------------------------------------------------------------------------------- /docs/smart-accounts/2-fasset-instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/smart-accounts/2-fasset-instructions.mdx -------------------------------------------------------------------------------- /docs/smart-accounts/3-custom-instruction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/smart-accounts/3-custom-instruction.mdx -------------------------------------------------------------------------------- /docs/smart-accounts/guides/01-fsa-cli.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/smart-accounts/guides/01-fsa-cli.mdx -------------------------------------------------------------------------------- /docs/smart-accounts/guides/02-custom-instructions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/smart-accounts/guides/02-custom-instructions.mdx -------------------------------------------------------------------------------- /docs/smart-accounts/guides/03-fassets-cycle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/smart-accounts/guides/03-fassets-cycle.mdx -------------------------------------------------------------------------------- /docs/support/audits.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/support/audits.mdx -------------------------------------------------------------------------------- /docs/support/faqs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/support/faqs.mdx -------------------------------------------------------------------------------- /docs/support/flr.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/support/flr.mdx -------------------------------------------------------------------------------- /docs/support/terminology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/support/terminology.mdx -------------------------------------------------------------------------------- /docs/support/whitepapers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/support/whitepapers.mdx -------------------------------------------------------------------------------- /docs/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docs/tags.yml -------------------------------------------------------------------------------- /docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/docusaurus.config.ts -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/developer-hub-go/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/.gitignore -------------------------------------------------------------------------------- /examples/developer-hub-go/FastUpdater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/FastUpdater.go -------------------------------------------------------------------------------- /examples/developer-hub-go/FastUpdatesConfiguration.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/FastUpdatesConfiguration.abi -------------------------------------------------------------------------------- /examples/developer-hub-go/FastUpdatesConfiguration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/FastUpdatesConfiguration.go -------------------------------------------------------------------------------- /examples/developer-hub-go/FastUpdatesIncentiveManager.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/FastUpdatesIncentiveManager.abi -------------------------------------------------------------------------------- /examples/developer-hub-go/FlareContractRegistry.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/FlareContractRegistry.abi -------------------------------------------------------------------------------- /examples/developer-hub-go/FtsoV2.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/FtsoV2.abi -------------------------------------------------------------------------------- /examples/developer-hub-go/FtsoV2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/FtsoV2.go -------------------------------------------------------------------------------- /examples/developer-hub-go/FtsoV2FeedConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/FtsoV2FeedConsumer.sol -------------------------------------------------------------------------------- /examples/developer-hub-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/README.md -------------------------------------------------------------------------------- /examples/developer-hub-go/RandomNumberV2.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/RandomNumberV2.abi -------------------------------------------------------------------------------- /examples/developer-hub-go/coston/block_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston/block_number.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/FastUpdatesIncentiveManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/FastUpdatesIncentiveManager.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/FlareContractRegistry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/FlareContractRegistry.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/FtsoV2FeedConsumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/FtsoV2FeedConsumer.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/RandomNumberV2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/RandomNumberV2.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/block_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/block_number.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/chain_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/chain_id.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/chain_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/chain_id_test.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/deploy_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/deploy_contract.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/make_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/make_query.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/make_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/make_query_test.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/secure_random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/secure_random.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/secure_random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/secure_random_test.go -------------------------------------------------------------------------------- /examples/developer-hub-go/coston2/volatility_incentive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/coston2/volatility_incentive.go -------------------------------------------------------------------------------- /examples/developer-hub-go/create_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/create_account.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/FlareContractRegistry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/FlareContractRegistry.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/FtsoV2AnchorFeedConsumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/FtsoV2AnchorFeedConsumer.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/FtsoV2FeedConsumer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/FtsoV2FeedConsumer.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/block_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/block_number.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/chain_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/chain_id.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/chain_id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/chain_id_test.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/deploy_contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/deploy_contract.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/fetch_anchor_feeds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/fetch_anchor_feeds.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/fetch_and_verify_anchor_onchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/fetch_and_verify_anchor_onchain.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/make_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/make_query.go -------------------------------------------------------------------------------- /examples/developer-hub-go/flare/make_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/flare/make_query_test.go -------------------------------------------------------------------------------- /examples/developer-hub-go/ftsov2_config_coston2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/ftsov2_config_coston2.go -------------------------------------------------------------------------------- /examples/developer-hub-go/ftsov2_consumer_coston2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/ftsov2_consumer_coston2.go -------------------------------------------------------------------------------- /examples/developer-hub-go/get_feed_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/get_feed_id.go -------------------------------------------------------------------------------- /examples/developer-hub-go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/go.mod -------------------------------------------------------------------------------- /examples/developer-hub-go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/go.sum -------------------------------------------------------------------------------- /examples/developer-hub-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/main.go -------------------------------------------------------------------------------- /examples/developer-hub-go/songbird/block_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-go/songbird/block_number.go -------------------------------------------------------------------------------- /examples/developer-hub-javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/.gitignore -------------------------------------------------------------------------------- /examples/developer-hub-javascript/GaslessApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/GaslessApp.tsx -------------------------------------------------------------------------------- /examples/developer-hub-javascript/GaslessRelayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/GaslessRelayer.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/PriceVerification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/PriceVerification.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/README.md -------------------------------------------------------------------------------- /examples/developer-hub-javascript/USD0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/USD0.json -------------------------------------------------------------------------------- /examples/developer-hub-javascript/api3Example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/api3Example.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/babel.config.cjs -------------------------------------------------------------------------------- /examples/developer-hub-javascript/bandExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/bandExample.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/block_number_coston.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/block_number_coston.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/block_number_coston2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/block_number_coston2.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/block_number_flare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/block_number_flare.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/block_number_songbird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/block_number_songbird.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/chain_id_coston2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/chain_id_coston2.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/chain_id_flare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/chain_id_flare.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/chainlinkExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/chainlinkExample.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/chronicleExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/chronicleExample.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/create_account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/create_account.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/deployFTSOConsumer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/deployFTSOConsumer.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/deploy_contract_coston2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/deploy_contract_coston2.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/deploy_contract_flare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/deploy_contract_flare.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/eslint.config.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fassetsCreateXrpPayment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fassetsCreateXrpPayment.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fassetsExecuteMinting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fassetsExecuteMinting.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fassetsReserveCollateral.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fassetsReserveCollateral.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fassetsReserveCollateralWithExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fassetsReserveCollateralWithExecutor.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fassetsSwapAndRedeem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fassetsSwapAndRedeem.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fassets_get_fxrp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fassets_get_fxrp.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fassets_get_redemption_queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fassets_get_redemption_queue.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fassets_list_agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fassets_list_agents.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_get_proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_get_proof.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_min_temp_claim_policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_min_temp_claim_policy.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_min_temp_create_policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_min_temp_create_policy.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_min_temp_deploy_agency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_min_temp_deploy_agency.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_min_temp_expire_policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_min_temp_expire_policy.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_min_temp_resolve_policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_min_temp_resolve_policy.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_min_temp_retire_unclaimed_policy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_min_temp_retire_unclaimed_policy.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_prepare_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_prepare_request.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_submit_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_submit_request.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_verify_proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_verify_proof.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fdc_verify_proof_of_reserves.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fdc_verify_proof_of_reserves.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fetch_abi_coston2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fetch_abi_coston2.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fetch_abi_flare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fetch_abi_flare.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fetch_anchor_feeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fetch_anchor_feeds.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/fetch_and_verify_anchor_onchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/fetch_and_verify_anchor_onchain.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/ftso_v2_consumer_hardhat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/ftso_v2_consumer_hardhat.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/ftsov2_config_coston2_ethers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/ftsov2_config_coston2_ethers.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/ftsov2_config_coston2_web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/ftsov2_config_coston2_web3.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/ftsov2_consumer_coston2_ethers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/ftsov2_consumer_coston2_ethers.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/ftsov2_consumer_coston2_web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/ftsov2_consumer_coston2_web3.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/get_feed_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/get_feed_id.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/hardhat.config.ts: -------------------------------------------------------------------------------- 1 | import "@nomicfoundation/hardhat-ethers"; 2 | -------------------------------------------------------------------------------- /examples/developer-hub-javascript/make_query_coston2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/make_query_coston2.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/make_query_flare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/make_query_flare.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/package-lock.json -------------------------------------------------------------------------------- /examples/developer-hub-javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/package.json -------------------------------------------------------------------------------- /examples/developer-hub-javascript/pythExample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/pythExample.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/query_provider_and_push_onchain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/query_provider_and_push_onchain.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/secure_random_coston2_ethers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/secure_random_coston2_ethers.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/secure_random_coston2_web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/secure_random_coston2_web3.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/test.sh -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/chain_id_coston2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/chain_id_coston2.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/chain_id_flare.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/chain_id_flare.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/fetch_abi_coston2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/fetch_abi_coston2.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/fetch_abi_flare.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/fetch_abi_flare.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/ftsov2_config_coston2_ethers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/ftsov2_config_coston2_ethers.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/ftsov2_config_coston2_web3.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/ftsov2_config_coston2_web3.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/ftsov2_consumer_coston2_ethers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/ftsov2_consumer_coston2_ethers.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/ftsov2_consumer_coston2_web3.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/ftsov2_consumer_coston2_web3.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/make_query_coston2.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/make_query_coston2.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/make_query_flare.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/make_query_flare.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/secure_random_coston2_ethers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/secure_random_coston2_ethers.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/tests/secure_random_coston2_web3.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/tests/secure_random_coston2_web3.test.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/uniswapV3Wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/uniswapV3Wrapper.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/developer-hub-javascript/volatility_incentive_coston2_ethers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/volatility_incentive_coston2_ethers.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/volatility_incentive_coston2_web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/volatility_incentive_coston2_web3.js -------------------------------------------------------------------------------- /examples/developer-hub-javascript/wnat-deposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/wnat-deposit.ts -------------------------------------------------------------------------------- /examples/developer-hub-javascript/wnat-withdraw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-javascript/wnat-withdraw.ts -------------------------------------------------------------------------------- /examples/developer-hub-python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/.gitignore -------------------------------------------------------------------------------- /examples/developer-hub-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/README.md -------------------------------------------------------------------------------- /examples/developer-hub-python/block_number_coston.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/block_number_coston.py -------------------------------------------------------------------------------- /examples/developer-hub-python/block_number_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/block_number_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-python/block_number_flare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/block_number_flare.py -------------------------------------------------------------------------------- /examples/developer-hub-python/block_number_songbird.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/block_number_songbird.py -------------------------------------------------------------------------------- /examples/developer-hub-python/chain_id_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/chain_id_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-python/chain_id_flare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/chain_id_flare.py -------------------------------------------------------------------------------- /examples/developer-hub-python/compile_contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/compile_contract.py -------------------------------------------------------------------------------- /examples/developer-hub-python/create_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/create_account.py -------------------------------------------------------------------------------- /examples/developer-hub-python/deploy_contract_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/deploy_contract_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-python/deploy_contract_flare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/deploy_contract_flare.py -------------------------------------------------------------------------------- /examples/developer-hub-python/fetch_abi_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/fetch_abi_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-python/fetch_abi_flare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/fetch_abi_flare.py -------------------------------------------------------------------------------- /examples/developer-hub-python/fetch_anchor_feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/fetch_anchor_feeds.py -------------------------------------------------------------------------------- /examples/developer-hub-python/fetch_and_verify_anchor_onchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/fetch_and_verify_anchor_onchain.py -------------------------------------------------------------------------------- /examples/developer-hub-python/ftsov2_config_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/ftsov2_config_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-python/ftsov2_consumer_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/ftsov2_consumer_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-python/get_feed_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/get_feed_id.py -------------------------------------------------------------------------------- /examples/developer-hub-python/make_query_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/make_query_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-python/make_query_flare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/make_query_flare.py -------------------------------------------------------------------------------- /examples/developer-hub-python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/pyproject.toml -------------------------------------------------------------------------------- /examples/developer-hub-python/secure_random_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/secure_random_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-python/test_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/test_queries.py -------------------------------------------------------------------------------- /examples/developer-hub-python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/utils.py -------------------------------------------------------------------------------- /examples/developer-hub-python/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/uv.lock -------------------------------------------------------------------------------- /examples/developer-hub-python/volatility_incentive_coston2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-python/volatility_incentive_coston2.py -------------------------------------------------------------------------------- /examples/developer-hub-rust/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea 3 | /build -------------------------------------------------------------------------------- /examples/developer-hub-rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/Cargo.lock -------------------------------------------------------------------------------- /examples/developer-hub-rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/Cargo.toml -------------------------------------------------------------------------------- /examples/developer-hub-rust/FlareContractRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/FlareContractRegistry.json -------------------------------------------------------------------------------- /examples/developer-hub-rust/FtsoV2AnchorFeedConsumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/FtsoV2AnchorFeedConsumer.json -------------------------------------------------------------------------------- /examples/developer-hub-rust/FtsoV2FeedConsumer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/FtsoV2FeedConsumer.json -------------------------------------------------------------------------------- /examples/developer-hub-rust/FtsoV2FeedConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/FtsoV2FeedConsumer.sol -------------------------------------------------------------------------------- /examples/developer-hub-rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/README.md -------------------------------------------------------------------------------- /examples/developer-hub-rust/RandomNumberV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/RandomNumberV2.json -------------------------------------------------------------------------------- /examples/developer-hub-rust/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/config.json -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/block_number_coston.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/block_number_coston.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/block_number_coston2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/block_number_coston2.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/block_number_flare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/block_number_flare.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/block_number_songbird.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/block_number_songbird.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/chain_id_coston2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/chain_id_coston2.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/chain_id_flare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/chain_id_flare.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/create_account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/create_account.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/deploy_contract_coston2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/deploy_contract_coston2.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/deploy_contract_flare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/deploy_contract_flare.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/fetch_anchor_feeds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/fetch_anchor_feeds.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/fetch_and_verify_anchor_onchain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/fetch_and_verify_anchor_onchain.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/ftsov2_config_coston2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/ftsov2_config_coston2.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/ftsov2_consumer_coston2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/ftsov2_consumer_coston2.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/get_feed_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/get_feed_id.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/make_query_coston2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/make_query_coston2.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/make_query_flare.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/make_query_flare.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/secure_random_coston2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/secure_random_coston2.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/src/bin/volatility_incentive_coston2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/src/bin/volatility_incentive_coston2.rs -------------------------------------------------------------------------------- /examples/developer-hub-rust/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-rust/test.sh -------------------------------------------------------------------------------- /examples/developer-hub-solidity/AddressSolidity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/AddressSolidity.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/AddressVerifier.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/AddressVerifier.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/Api3Example.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/Api3Example.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/BandExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/BandExample.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/BlockchainMonitor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/BlockchainMonitor.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/ChainlinkExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/ChainlinkExample.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/ChronicleExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/ChronicleExample.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/EVMTransactionVerifier.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/EVMTransactionVerifier.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FAssetsAssetManagerSettingsLotSize.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FAssetsAssetManagerSettingsLotSize.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FAssetsRedeem.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FAssetsRedeem.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FAssetsSwapAndRedeem.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FAssetsSwapAndRedeem.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FDCTransferEventListener.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FDCTransferEventListener.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FTSOV2AnchorConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FTSOV2AnchorConsumer.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FTSOV2Consumer_hardhat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FTSOV2Consumer_hardhat.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FTSOV2FeedById.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FTSOV2FeedById.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FTSOV2FeedByIdWei.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FTSOV2FeedByIdWei.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FTSOV2FeedByIndexWei.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FTSOV2FeedByIndexWei.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FTSOV2FeedsById.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FTSOV2FeedsById.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FTSOV2FeedsByIdWei.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FTSOV2FeedsByIdWei.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FeeChecker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FeeChecker.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FtsoV2AnchorFeedConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FtsoV2AnchorFeedConsumer.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FtsoV2ChangeQuoteFeed.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FtsoV2ChangeQuoteFeed.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FtsoV2Consumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FtsoV2Consumer.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FtsoV2FeedConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FtsoV2FeedConsumer.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FtsoV2FeedConsumer_foundry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FtsoV2FeedConsumer_foundry.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FtsoV2FeedConsumer_foundry.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FtsoV2FeedConsumer_foundry.t.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FtsoV2FeedConsumer_no_imports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FtsoV2FeedConsumer_no_imports.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/FtsoV2MigrationExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/FtsoV2MigrationExample.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/GetFeedId.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/GetFeedId.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/HelloWorld.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/HelloWorld.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/ITypeTemplate.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/ITypeTemplate.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/InflationMonitor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/InflationMonitor.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/LockMonitor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/LockMonitor.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/PaymentDeadlineEnforcer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/PaymentDeadlineEnforcer.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/PaymentVerifier.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/PaymentVerifier.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/PriceVerifierCustomFeed.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/PriceVerifierCustomFeed.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/PythExample.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/PythExample.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/RandomNumberFetcher.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/RandomNumberFetcher.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/RandomNumberV2Lottery.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/RandomNumberV2Lottery.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/SecureRandomConsumer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/SecureRandomConsumer.sol -------------------------------------------------------------------------------- /examples/developer-hub-solidity/UniswapV3Wrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/examples/developer-hub-solidity/UniswapV3Wrapper.sol -------------------------------------------------------------------------------- /lychee.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/lychee.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/package.json -------------------------------------------------------------------------------- /run-automations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/run-automations.sh -------------------------------------------------------------------------------- /sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/sidebars.ts -------------------------------------------------------------------------------- /src/components/CopyButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/CopyButton.tsx -------------------------------------------------------------------------------- /src/components/CustomCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/CustomCard.tsx -------------------------------------------------------------------------------- /src/components/DataTables/CustomFeeds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/DataTables/CustomFeeds.tsx -------------------------------------------------------------------------------- /src/components/DataTables/FtsoFeeds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/DataTables/FtsoFeeds.tsx -------------------------------------------------------------------------------- /src/components/DataTables/SolidityReference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/DataTables/SolidityReference.tsx -------------------------------------------------------------------------------- /src/components/FAssets/OperationalParameters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/FAssets/OperationalParameters.tsx -------------------------------------------------------------------------------- /src/components/FAssets/Reference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/FAssets/Reference.tsx -------------------------------------------------------------------------------- /src/components/FAssets/operational-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/FAssets/operational-parameters.ts -------------------------------------------------------------------------------- /src/components/FAssets/reference-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/FAssets/reference-data.ts -------------------------------------------------------------------------------- /src/components/FDC/ToHexConverter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/FDC/ToHexConverter.tsx -------------------------------------------------------------------------------- /src/components/FDC/VotingRoundIdCalculator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/FDC/VotingRoundIdCalculator.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/featureCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/HomepageFeatures/featureCard.module.css -------------------------------------------------------------------------------- /src/components/HomepageFeatures/featureCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/HomepageFeatures/featureCard.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/featuresSection.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/HomepageFeatures/featuresSection.module.css -------------------------------------------------------------------------------- /src/components/HomepageFeatures/featuresSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/HomepageFeatures/featuresSection.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/hero.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/HomepageFeatures/hero.module.css -------------------------------------------------------------------------------- /src/components/HomepageFeatures/heroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/HomepageFeatures/heroSection.tsx -------------------------------------------------------------------------------- /src/components/HomepageFeatures/videoComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/HomepageFeatures/videoComponent.tsx -------------------------------------------------------------------------------- /src/components/JiraIssueCollector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/JiraIssueCollector.tsx -------------------------------------------------------------------------------- /src/components/LogoCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/LogoCards.tsx -------------------------------------------------------------------------------- /src/components/OpenApiDoc/OpenApiDoc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/OpenApiDoc/OpenApiDoc.tsx -------------------------------------------------------------------------------- /src/components/developerTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/developerTools.tsx -------------------------------------------------------------------------------- /src/components/newGithubIssue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/newGithubIssue.tsx -------------------------------------------------------------------------------- /src/components/remix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/remix.tsx -------------------------------------------------------------------------------- /src/components/youtube.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/components/youtube.tsx -------------------------------------------------------------------------------- /src/css/command_builder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/css/command_builder.css -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/css/onboarding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/css/onboarding.css -------------------------------------------------------------------------------- /src/data/developerTools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/data/developerTools.json -------------------------------------------------------------------------------- /src/theme/ColorModeToggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/ColorModeToggle/index.tsx -------------------------------------------------------------------------------- /src/theme/ColorModeToggle/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/ColorModeToggle/styles.module.css -------------------------------------------------------------------------------- /src/theme/DocCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/DocCard/index.tsx -------------------------------------------------------------------------------- /src/theme/DocCard/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/DocCard/styles.module.css -------------------------------------------------------------------------------- /src/theme/Footer/Copyright/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/Copyright/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/CustomFooter/customFooter.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/CustomFooter/customFooter.module.css -------------------------------------------------------------------------------- /src/theme/Footer/CustomFooter/customFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/CustomFooter/customFooter.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/Layout/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/LinkItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/LinkItem/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Links/MultiColumn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/Links/MultiColumn/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Links/Simple/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/Links/Simple/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Links/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/Links/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/Logo/index.tsx -------------------------------------------------------------------------------- /src/theme/Footer/Logo/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/Logo/styles.module.css -------------------------------------------------------------------------------- /src/theme/Footer/SocialLinks/SocialLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/SocialLinks/SocialLinks.tsx -------------------------------------------------------------------------------- /src/theme/Footer/SocialLinks/socialLinks.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/SocialLinks/socialLinks.module.css -------------------------------------------------------------------------------- /src/theme/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/Footer/index.tsx -------------------------------------------------------------------------------- /src/theme/PaginatorNavLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/PaginatorNavLink/index.tsx -------------------------------------------------------------------------------- /src/theme/PaginatorNavLink/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/src/theme/PaginatorNavLink/styles.module.css -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/fonts/Satoshi/Satoshi-Variable.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-VariableItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/fonts/Satoshi/Satoshi-VariableItalic.woff2 -------------------------------------------------------------------------------- /static/google83c60269bb5de30d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/google83c60269bb5de30d.html -------------------------------------------------------------------------------- /static/img/DATACONNECTOR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/DATACONNECTOR.svg -------------------------------------------------------------------------------- /static/img/DATACONNECTOR_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/DATACONNECTOR_new.svg -------------------------------------------------------------------------------- /static/img/FASSETS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/FASSETS.svg -------------------------------------------------------------------------------- /static/img/FASSETS_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/FASSETS_new.svg -------------------------------------------------------------------------------- /static/img/FTSO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/FTSO.svg -------------------------------------------------------------------------------- /static/img/FTSO_new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/FTSO_new.svg -------------------------------------------------------------------------------- /static/img/consensus/consensus_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/consensus_dark.svg -------------------------------------------------------------------------------- /static/img/consensus/consensus_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/consensus_light.svg -------------------------------------------------------------------------------- /static/img/consensus/slush_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/slush_dark.svg -------------------------------------------------------------------------------- /static/img/consensus/slush_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/slush_light.svg -------------------------------------------------------------------------------- /static/img/consensus/snowball_tree_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/snowball_tree_dark.svg -------------------------------------------------------------------------------- /static/img/consensus/snowball_tree_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/snowball_tree_light.svg -------------------------------------------------------------------------------- /static/img/consensus/snowman_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/snowman_dark.svg -------------------------------------------------------------------------------- /static/img/consensus/snowman_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/snowman_light.svg -------------------------------------------------------------------------------- /static/img/consensus/topological_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/topological_dark.svg -------------------------------------------------------------------------------- /static/img/consensus/topological_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/consensus/topological_light.svg -------------------------------------------------------------------------------- /static/img/deploy-first-contract/0-open-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/0-open-metamask.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/10-deploy-and-run-transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/10-deploy-and-run-transactions.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/11-set-injected-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/11-set-injected-provider.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/12-connect-to-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/12-connect-to-metamask.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/13-confirm-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/13-confirm-permissions.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/14-message-when-deploying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/14-message-when-deploying.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/15-confirm-deploy-in-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/15-confirm-deploy-in-metamask.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/16-click-on-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/16-click-on-message.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/17-update-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/17-update-message.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/18-confirm-metamask-update-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/18-confirm-metamask-update-message.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/19-query-updated-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/19-query-updated-message.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/2-approve-coston2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/2-approve-coston2.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/3-switch-networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/3-switch-networks.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/4-copy-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/4-copy-address.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/5-paste-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/5-paste-address.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/6-after-faucet-confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/6-after-faucet-confirmation.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/7-open-solidity-compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/7-open-solidity-compiler.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/8-set-evm-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/8-set-evm-version.png -------------------------------------------------------------------------------- /static/img/deploy-first-contract/9-compile-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/deploy-first-contract/9-compile-contract.png -------------------------------------------------------------------------------- /static/img/fassets-overview/fassets-collateral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets-overview/fassets-collateral.png -------------------------------------------------------------------------------- /static/img/fassets-overview/fassets-cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets-overview/fassets-cr.png -------------------------------------------------------------------------------- /static/img/fassets-overview/fassets-fees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets-overview/fassets-fees.png -------------------------------------------------------------------------------- /static/img/fassets-overview/fassets-minting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets-overview/fassets-minting.png -------------------------------------------------------------------------------- /static/img/fassets-overview/fassets-redeeming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets-overview/fassets-redeeming.png -------------------------------------------------------------------------------- /static/img/fassets-overview/fassets-system-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets-overview/fassets-system-overview.png -------------------------------------------------------------------------------- /static/img/fassets-overview/fassets-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets-overview/fassets-tokens.png -------------------------------------------------------------------------------- /static/img/fassets/fassets-agent-add-vault-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/fassets-agent-add-vault-form.png -------------------------------------------------------------------------------- /static/img/fassets/fassets-agent-add-vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/fassets-agent-add-vault.png -------------------------------------------------------------------------------- /static/img/fassets/fassets-agent-vault-operations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/fassets-agent-vault-operations.png -------------------------------------------------------------------------------- /static/img/fassets/fassets-agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/fassets-agent.png -------------------------------------------------------------------------------- /static/img/fassets/flare_fassets_architecture_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/flare_fassets_architecture_dark.svg -------------------------------------------------------------------------------- /static/img/fassets/flare_fassets_architecture_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/flare_fassets_architecture_light.svg -------------------------------------------------------------------------------- /static/img/fassets/flare_fassets_collateral_ratio_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/flare_fassets_collateral_ratio_dark.svg -------------------------------------------------------------------------------- /static/img/fassets/flare_fassets_collateral_ratio_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/flare_fassets_collateral_ratio_light.svg -------------------------------------------------------------------------------- /static/img/fassets/flare_fassets_core_vault_architecture_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/flare_fassets_core_vault_architecture_dark.svg -------------------------------------------------------------------------------- /static/img/fassets/flare_fassets_core_vault_architecture_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/flare_fassets_core_vault_architecture_light.svg -------------------------------------------------------------------------------- /static/img/fassets/flare_fassets_minting_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/flare_fassets_minting_dark.svg -------------------------------------------------------------------------------- /static/img/fassets/flare_fassets_minting_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fassets/flare_fassets_minting_light.svg -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/fdc-by-hand/da-proof-by-request-round-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/da-proof-by-request-round-expanded.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/da-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/da-response.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/da-try-it-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/da-try-it-out.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/fdc-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/fdc-hub.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/fdc-request-fee-configurations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/fdc-request-fee-configurations.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/fdc-verification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/fdc-verification.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/systems-explorer-advanced-finalizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/systems-explorer-advanced-finalizations.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/systems-explorer-attestation-requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/systems-explorer-attestation-requests.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/systems-explorer-finalizations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/systems-explorer-finalizations.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/verifier-address-validity-prepare-request-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/verifier-address-validity-prepare-request-expanded.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/verifier-authorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/verifier-authorization.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/verifier-authorize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/verifier-authorize.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/verifier-authorized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/verifier-authorized.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/verifier-executed-with-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/verifier-executed-with-data.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/verifier-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/verifier-response.png -------------------------------------------------------------------------------- /static/img/fdc-by-hand/verifier-try-it-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-by-hand/verifier-try-it-out.png -------------------------------------------------------------------------------- /static/img/fdc-overview/da_layer_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-overview/da_layer_dark.svg -------------------------------------------------------------------------------- /static/img/fdc-overview/da_layer_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-overview/da_layer_light.svg -------------------------------------------------------------------------------- /static/img/fdc-overview/fdc_architecture_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-overview/fdc_architecture_dark.svg -------------------------------------------------------------------------------- /static/img/fdc-overview/fdc_architecture_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-overview/fdc_architecture_light.svg -------------------------------------------------------------------------------- /static/img/fdc-overview/user_workflow_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-overview/user_workflow_dark.svg -------------------------------------------------------------------------------- /static/img/fdc-overview/user_workflow_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fdc-overview/user_workflow_light.svg -------------------------------------------------------------------------------- /static/img/flare_architecture_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/flare_architecture_dark.svg -------------------------------------------------------------------------------- /static/img/flare_architecture_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/flare_architecture_light.svg -------------------------------------------------------------------------------- /static/img/flare_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/flare_icon.svg -------------------------------------------------------------------------------- /static/img/flare_icon_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/flare_icon_dark.svg -------------------------------------------------------------------------------- /static/img/flare_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/flare_logo.svg -------------------------------------------------------------------------------- /static/img/flare_tbfd_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/flare_tbfd_dark.svg -------------------------------------------------------------------------------- /static/img/flare_tbfd_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/flare_tbfd_light.svg -------------------------------------------------------------------------------- /static/img/fsp/finalization_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fsp/finalization_dark.svg -------------------------------------------------------------------------------- /static/img/fsp/finalization_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fsp/finalization_light.svg -------------------------------------------------------------------------------- /static/img/fsp/fsp_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fsp/fsp_dark.svg -------------------------------------------------------------------------------- /static/img/fsp/fsp_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/fsp/fsp_light.svg -------------------------------------------------------------------------------- /static/img/ftso-getting-started/0-open-solidity-compiler-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-getting-started/0-open-solidity-compiler-tab.png -------------------------------------------------------------------------------- /static/img/ftso-getting-started/1-set-injected-provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-getting-started/1-set-injected-provider.png -------------------------------------------------------------------------------- /static/img/ftso-getting-started/2-compile-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-getting-started/2-compile-contract.png -------------------------------------------------------------------------------- /static/img/ftso-getting-started/3-open-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-getting-started/3-open-deploy.png -------------------------------------------------------------------------------- /static/img/ftso-getting-started/4-deploy-contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-getting-started/4-deploy-contract.png -------------------------------------------------------------------------------- /static/img/ftso-getting-started/5-confirm-deploy-in-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-getting-started/5-confirm-deploy-in-metamask.png -------------------------------------------------------------------------------- /static/img/ftso-getting-started/6-query-latest-feeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-getting-started/6-query-latest-feeds.png -------------------------------------------------------------------------------- /static/img/ftso-overview/ftso_update_architecture_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-overview/ftso_update_architecture_dark.svg -------------------------------------------------------------------------------- /static/img/ftso-overview/ftso_update_architecture_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-overview/ftso_update_architecture_light.svg -------------------------------------------------------------------------------- /static/img/ftso-overview/ref_fast_comparison_social.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-overview/ref_fast_comparison_social.svg -------------------------------------------------------------------------------- /static/img/ftso-overview/ref_fast_comparison_social_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-overview/ref_fast_comparison_social_dark.svg -------------------------------------------------------------------------------- /static/img/ftso-overview/voting_epoch_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-overview/voting_epoch_dark.svg -------------------------------------------------------------------------------- /static/img/ftso-overview/voting_epoch_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/ftso-overview/voting_epoch_light.svg -------------------------------------------------------------------------------- /static/img/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/github-icon.svg -------------------------------------------------------------------------------- /static/img/governance/governance_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/governance/governance_dark.svg -------------------------------------------------------------------------------- /static/img/governance/governance_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/governance/governance_light.svg -------------------------------------------------------------------------------- /static/img/how-to-state-connector/CCCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/how-to-state-connector/CCCR.png -------------------------------------------------------------------------------- /static/img/landing/dev_hub_ani_dark.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/landing/dev_hub_ani_dark.mp4 -------------------------------------------------------------------------------- /static/img/landing/dev_hub_ani_dark.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/landing/dev_hub_ani_dark.webm -------------------------------------------------------------------------------- /static/img/landing/dev_hub_ani_light.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/landing/dev_hub_ani_light.mp4 -------------------------------------------------------------------------------- /static/img/landing/dev_hub_ani_light.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/landing/dev_hub_ani_light.webm -------------------------------------------------------------------------------- /static/img/landing/dev_hub_ani_noblur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/landing/dev_hub_ani_noblur.png -------------------------------------------------------------------------------- /static/img/landing/dev_hub_hero_mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/landing/dev_hub_hero_mobile.webp -------------------------------------------------------------------------------- /static/img/landing/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/landing/splash.png -------------------------------------------------------------------------------- /static/img/logo/FooterLogoDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/logo/FooterLogoDark.svg -------------------------------------------------------------------------------- /static/img/logo/FooterLogoLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/logo/FooterLogoLight.svg -------------------------------------------------------------------------------- /static/img/logo/foundry-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/logo/foundry-logo.png -------------------------------------------------------------------------------- /static/img/logo/hardhat-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/logo/hardhat-logo.svg -------------------------------------------------------------------------------- /static/img/logo/metamask-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/logo/metamask-logo.svg -------------------------------------------------------------------------------- /static/img/logo/rabby-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/logo/rabby-logo.svg -------------------------------------------------------------------------------- /static/img/logo/remix-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/logo/remix-logo.png -------------------------------------------------------------------------------- /static/img/menu/DATACONNECTOR_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/DATACONNECTOR_dark.svg -------------------------------------------------------------------------------- /static/img/menu/DATACONNECTOR_dark_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/DATACONNECTOR_dark_old.svg -------------------------------------------------------------------------------- /static/img/menu/DATACONNECTOR_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/DATACONNECTOR_light.svg -------------------------------------------------------------------------------- /static/img/menu/DATACONNECTOR_light_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/DATACONNECTOR_light_old.svg -------------------------------------------------------------------------------- /static/img/menu/FASSETS_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/FASSETS_dark.svg -------------------------------------------------------------------------------- /static/img/menu/FASSETS_dark_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/FASSETS_dark_old.svg -------------------------------------------------------------------------------- /static/img/menu/FASSETS_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/FASSETS_light.svg -------------------------------------------------------------------------------- /static/img/menu/FASSETS_light_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/FASSETS_light_old.svg -------------------------------------------------------------------------------- /static/img/menu/FTSO_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/FTSO_dark.svg -------------------------------------------------------------------------------- /static/img/menu/FTSO_dark_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/FTSO_dark_old.svg -------------------------------------------------------------------------------- /static/img/menu/FTSO_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/FTSO_light.svg -------------------------------------------------------------------------------- /static/img/menu/FTSO_light_old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/menu/FTSO_light_old.svg -------------------------------------------------------------------------------- /static/img/run-node-fsp/fsp_run_node_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/run-node-fsp/fsp_run_node_dark.svg -------------------------------------------------------------------------------- /static/img/run-node-fsp/fsp_run_node_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/run-node-fsp/fsp_run_node_light.svg -------------------------------------------------------------------------------- /static/img/run-node-ftso-data-provider/ftso_provider_architecture_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/run-node-ftso-data-provider/ftso_provider_architecture_dark.svg -------------------------------------------------------------------------------- /static/img/run-node-ftso-data-provider/ftso_provider_architecture_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/run-node-ftso-data-provider/ftso_provider_architecture_light.svg -------------------------------------------------------------------------------- /static/img/run-node-gcp-marketplace/step1-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/run-node-gcp-marketplace/step1-img.png -------------------------------------------------------------------------------- /static/img/run-node-gcp-marketplace/step2-1-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/run-node-gcp-marketplace/step2-1-img.png -------------------------------------------------------------------------------- /static/img/run-node-gcp-marketplace/step2-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/run-node-gcp-marketplace/step2-img.png -------------------------------------------------------------------------------- /static/img/set-evm-version-remix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/set-evm-version-remix.png -------------------------------------------------------------------------------- /static/img/smart-accounts/approve_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/approve_dark.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/approve_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/approve_light.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/claim_withdraw_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/claim_withdraw_dark.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/claim_withdraw_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/claim_withdraw_light.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/custom_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/custom_dark.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/custom_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/custom_light.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/deposit_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/deposit_dark.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/deposit_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/deposit_light.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/redeem_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/redeem_dark.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/redeem_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/redeem_light.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/reserve_collateral_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/reserve_collateral_dark.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/reserve_collateral_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/reserve_collateral_light.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/withdraw_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/withdraw_dark.svg -------------------------------------------------------------------------------- /static/img/smart-accounts/withdraw_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/smart-accounts/withdraw_light.svg -------------------------------------------------------------------------------- /static/img/social-icons/Telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/social-icons/Telegram.svg -------------------------------------------------------------------------------- /static/img/social-icons/X.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/social-icons/X.svg -------------------------------------------------------------------------------- /static/img/social-icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/social-icons/discord.svg -------------------------------------------------------------------------------- /static/img/social-icons/discourse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/social-icons/discourse.svg -------------------------------------------------------------------------------- /static/img/social-icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/social-icons/github.svg -------------------------------------------------------------------------------- /static/img/social-icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/social-icons/linkedin.svg -------------------------------------------------------------------------------- /static/img/social-icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/social-icons/youtube.svg -------------------------------------------------------------------------------- /static/img/tokenomics/tokenomics-distribution-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/tokenomics/tokenomics-distribution-dark.svg -------------------------------------------------------------------------------- /static/img/tokenomics/tokenomics-distribution-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/tokenomics/tokenomics-distribution-light.svg -------------------------------------------------------------------------------- /static/img/tokenomics/tokenomics-macro-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/tokenomics/tokenomics-macro-dark.svg -------------------------------------------------------------------------------- /static/img/tokenomics/tokenomics-macro-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/tokenomics/tokenomics-macro-light.svg -------------------------------------------------------------------------------- /static/img/tokenomics/tokenomics-schedule-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/tokenomics/tokenomics-schedule-dark.svg -------------------------------------------------------------------------------- /static/img/tokenomics/tokenomics-schedule-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/tokenomics/tokenomics-schedule-light.svg -------------------------------------------------------------------------------- /static/img/xrp_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/xrp_icon.svg -------------------------------------------------------------------------------- /static/img/xrp_icon_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/img/xrp_icon_dark.svg -------------------------------------------------------------------------------- /static/js/cookie-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/js/cookie-loader.js -------------------------------------------------------------------------------- /static/openapi/data-availability-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/openapi/data-availability-api.yaml -------------------------------------------------------------------------------- /static/openapi/fdcapidoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/openapi/fdcapidoc.json -------------------------------------------------------------------------------- /static/pdf/audits/20210701-Coinspect-Smart_Contract_Audit-Flare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20210701-Coinspect-Smart_Contract_Audit-Flare.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20220201-Coinspect-Smart_Contract_Audit-Flare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20220201-Coinspect-Smart_Contract_Audit-Flare.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20220601-Coinspect-Flare-Source_Code_Review-Attestation_Client-v240220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20220601-Coinspect-Flare-Source_Code_Review-Attestation_Client-v240220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20220601-Coinspect-Flare-Source_Code_Review-Multichain_Client_Library-v240220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20220601-Coinspect-Flare-Source_Code_Review-Multichain_Client_Library-v240220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20220601-Coinspect-Smart_Contract_Audit-Flare_Network_Launch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20220601-Coinspect-Smart_Contract_Audit-Flare_Network_Launch.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20220601-Coinspect_Smart_Contract_Audit_fAsset_v220829.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20220601-Coinspect_Smart_Contract_Audit_fAsset_v220829.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20221001-Coinspect-Smart_Contract_Audit-Flare_Airdrop_Update-v221109.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20221001-Coinspect-Smart_Contract_Audit-Flare_Airdrop_Update-v221109.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20221201-Coinspect-SmartContractAudit-FlareTDEUpdates-v221220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20221201-Coinspect-SmartContractAudit-FlareTDEUpdates-v221220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20230101-Coinspect-SmartContractAudit-FlareHybridBandRewardv230220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20230101-Coinspect-SmartContractAudit-FlareHybridBandRewardv230220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20230401-Coinspect-Flare-SourceCodeSecurityReview-SmartContractsV2-v240515.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20230401-Coinspect-Flare-SourceCodeSecurityReview-SmartContractsV2-v240515.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20230901-Coinspect-Flare-Smart_Contract_Review-FAsset_V2-v240220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20230901-Coinspect-Flare-Smart_Contract_Review-FAsset_V2-v240220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20230901-Coinspect-Flare-Smart_Contract_Review-StakingP2-v240220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20230901-Coinspect-Flare-Smart_Contract_Review-StakingP2-v240220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20231001-Coinspect-Flare-Source_Code_Review-FAsset_Bots-v240220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20231001-Coinspect-Flare-Source_Code_Review-FAsset_Bots-v240220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20231001-Coinspect-Flare-Source_Code_Review-Staking_P2-Offchain_Services-v240220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20231001-Coinspect-Flare-Source_Code_Review-Staking_P2-Offchain_Services-v240220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20231101-Coinspect-Flare-SmartContractAudit-HexWrappedTokens-v231211.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20231101-Coinspect-Flare-SmartContractAudit-HexWrappedTokens-v231211.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20231207-Coinspect-Flare-Smart_Contract_Review-FAsset_Liquidator-v231207.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20231207-Coinspect-Flare-Smart_Contract_Review-FAsset_Liquidator-v231207.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240101-Coinspect-Flare-SourceCodeSecurityReview-CChainIndexer-v240409.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240101-Coinspect-Flare-SourceCodeSecurityReview-CChainIndexer-v240409.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240101-Coinspect-Flare-SourceCodeSecurityReview-FTSOScaling-v240515.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240101-Coinspect-Flare-SourceCodeSecurityReview-FTSOScaling-v240515.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240101-Coinspect-Flare-SourceCodeSecurityReview-TopLevelClient-v240515.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240101-Coinspect-Flare-SourceCodeSecurityReview-TopLevelClient-v240515.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240101-Coinspect-Smart_Contract_Review-Flare_Attestation_Suite-v240220.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240101-Coinspect-Smart_Contract_Review-Flare_Attestation_Suite-v240220.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240301-Coinspect-Flare-SourceCodeSecurityReview-TransactionVerifier-v240516.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240301-Coinspect-Flare-SourceCodeSecurityReview-TransactionVerifier-v240516.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240401-Coinspect-Flare-SourceCodeSecurityReview-FastUpdates-v240612.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240401-Coinspect-Flare-SourceCodeSecurityReview-FastUpdates-v240612.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240501-Coinspect-Flare-SecurityReview-VoterRegistryFix-v240603.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240501-Coinspect-Flare-SecurityReview-VoterRegistryFix-v240603.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240501-FYEO-FlareOngoingSongbird1.0_Public.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240501-FYEO-FlareOngoingSongbird1.0_Public.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240501-Halborn-FTSOFastUpdatesprotocolAudit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240501-Halborn-FTSOFastUpdatesprotocolAudit.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240501-Halborn-FastUpdatesAudit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240501-Halborn-FastUpdatesAudit.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240601-Coinspect-SmartContractSecurityReview-Flare-RNatContracts-v240701.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240601-Coinspect-SmartContractSecurityReview-Flare-RNatContracts-v240701.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240601-FYEO-Flare-Ongoing_Songbird_June_10th_1.0_Public.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240601-FYEO-Flare-Ongoing_Songbird_June_10th_1.0_Public.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240601-FYEO-Flare-Ongoing_Songbird_June_20th_1.0_Public.docx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240601-FYEO-Flare-Ongoing_Songbird_June_20th_1.0_Public.docx.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240801-Coinspect-Source_Code_Audit-Flare-FDCv1-v241004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240801-Coinspect-Source_Code_Audit-Flare-FDCv1-v241004.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20240901-Coinspect-SmartContractAudit-Flare-FassetUpdate-v240910.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20240901-Coinspect-SmartContractAudit-Flare-FassetUpdate-v240910.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20241001-Coinspect-SourceCodeAudit-Flare-FDCv2-v250113.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20241001-Coinspect-SourceCodeAudit-Flare-FDCv2-v250113.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20241001-FLARE-SecurityCodeReviewFLAREDataAvailabilityv1.0_Public.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20241001-FLARE-SecurityCodeReviewFLAREDataAvailabilityv1.0_Public.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20241215-Coinspect-SmartContractAudit-Flare-FAssetV2Updates-v241217.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20241215-Coinspect-SmartContractAudit-Flare-FAssetV2Updates-v241217.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20250101-Coinspect-SmartContractAudit-Flare-Pre-Register&FTSOManagement-v250109.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20250101-Coinspect-SmartContractAudit-Flare-Pre-Register&FTSOManagement-v250109.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20250201-Coinspect-SmartContractAudit-Flare-USDT_Swapper-v250327.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20250201-Coinspect-SmartContractAudit-Flare-USDT_Swapper-v250327.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20250205-Coinspect-SmartContractAudit-Flare-FTSOv2CustomFeedsDiffReview-v240210.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20250205-Coinspect-SmartContractAudit-Flare-FTSOv2CustomFeedsDiffReview-v240210.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20250401-Coinspect-SmartContractAudit-Flare-FAssetCoreVault-v250506.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20250401-Coinspect-SmartContractAudit-Flare-FAssetCoreVault-v250506.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20250409-Zellic-FAsset_OFTAdapter_Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20250409-Zellic-FAsset_OFTAdapter_Report.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20250801-Zellic-Flare_FAssets_Audit_Report_08_2025.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20250801-Zellic-Flare_FAssets_Audit_Report_08_2025.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20250923_Zellic-Flare-FAssets-diff-v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20250923_Zellic-Flare-FAssets-diff-v1.pdf -------------------------------------------------------------------------------- /static/pdf/audits/20251020-Zellic-Flare_FAssets_diff-v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/20251020-Zellic-Flare_FAssets_diff-v2.pdf -------------------------------------------------------------------------------- /static/pdf/audits/remove_spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/audits/remove_spaces.sh -------------------------------------------------------------------------------- /static/pdf/whitepapers/20191105-FlareConsensusProtocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/20191105-FlareConsensusProtocol.pdf -------------------------------------------------------------------------------- /static/pdf/whitepapers/20220722-HybridPostQuantumDigitalSignatureSchemeForTheEthereumVirtualMachine.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/20220722-HybridPostQuantumDigitalSignatureSchemeForTheEthereumVirtualMachine.pdf -------------------------------------------------------------------------------- /static/pdf/whitepapers/20221231-TheFlareNetworkAndFLRToken.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/20221231-TheFlareNetworkAndFLRToken.pdf -------------------------------------------------------------------------------- /static/pdf/whitepapers/20230406-KrakenExchange-FTSOPriceComparison.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/20230406-KrakenExchange-FTSOPriceComparison.pdf -------------------------------------------------------------------------------- /static/pdf/whitepapers/20230529-SongbirdBandUpdate-ImpactOfSTP02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/20230529-SongbirdBandUpdate-ImpactOfSTP02.pdf -------------------------------------------------------------------------------- /static/pdf/whitepapers/20240223-FlareTimeSeriesOracleV2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/20240223-FlareTimeSeriesOracleV2.pdf -------------------------------------------------------------------------------- /static/pdf/whitepapers/20240224-FlareDataConnector.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/20240224-FlareDataConnector.pdf -------------------------------------------------------------------------------- /static/pdf/whitepapers/20240225-ConsensusLearning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/20240225-ConsensusLearning.pdf -------------------------------------------------------------------------------- /static/pdf/whitepapers/remove_spaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/static/pdf/whitepapers/remove_spaces.sh -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/tsconfig.json -------------------------------------------------------------------------------- /update-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/update-deps.sh -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flare-foundation/developer-hub/HEAD/webpack.config.js --------------------------------------------------------------------------------