├── .github ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ ├── builder-tool.md │ ├── showcase.md │ └── standard-change.md ├── actions │ └── yarn-build │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── action.yml │ │ └── entrypoint.sh └── workflows │ ├── codeql-analysis.yml │ └── yarn-build.yml ├── .gitignore ├── .node-version ├── .nvmrc ├── .yarn-version ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── babel.config.js ├── blog ├── 2020-11-01-november.md ├── 2021-01-07-january.md ├── 2021-02-03-february.md ├── 2021-03-26-march.md ├── 2021-07-12-developer-portal-launch.md ├── 2021-07-26-july.md ├── 2021-08-09-nft-minting-standard.md ├── 2021-08-23-august.md ├── 2021-09-20-september.md ├── 2021-11-23-november.md ├── 2021-12-20-december.md ├── 2022-01-24-january.md ├── 2022-02-28-february.md ├── 2022-03-30-march.md ├── 2022-04-27-april.md ├── 2022-05-30-may.md ├── 2022-07-11-july.md ├── 2022-08-11-august.md ├── 2022-09-23-september.md ├── 2023-01-02-january.md ├── 2023-02-16-february.md ├── 2023-03-21-march.md ├── 2023-06-15-june.md ├── 2023-08-07-august.md ├── 2023-08-21-august.md ├── 2023-09-18-september.md ├── 2023-10-16-october.md ├── 2023-11-27-november.md ├── 2024-01-22-january.md ├── 2024-02-19-february.md ├── 2024-04-29-april.md ├── 2024-06-24-june.md ├── 2024-09-30-september.md ├── 2024-12-09-december.md ├── 2025-01-17-january.md ├── 2025-02-03-february.md ├── 2025-02-05-february.md ├── 2025-02-14-february.md ├── 2025-02-28-february.md ├── 2025-03-24-march.md ├── 2025-03-28-march.md ├── 2025-03-31-march.md ├── 2025-04-11-march.md ├── 2025-05-09-may.md ├── authors.yml └── tags.yml ├── docs ├── careers.md ├── get-started │ ├── aiken.md │ ├── air-gap.md │ ├── blockfrost │ │ ├── cardano-apis.md │ │ ├── get-started.md │ │ ├── open-source.md │ │ ├── other-apis.md │ │ ├── overview.md │ │ └── secure-webhooks.md │ ├── cardano-cli │ │ ├── get-started │ │ │ ├── _category_.yml │ │ │ ├── deregister-stake-address.md │ │ │ ├── get-started.md │ │ │ ├── simple-transactions.md │ │ │ ├── stake-address-delegation.md │ │ │ ├── stakeaddress-registration.md │ │ │ ├── treasury-donations.md │ │ │ └── withdraw-rewards.md │ │ ├── governance │ │ │ ├── constitutional-committee.md │ │ │ ├── delegating-vote.md │ │ │ ├── gov-queries.md │ │ │ ├── governance-actions.md │ │ │ ├── governance.md │ │ │ ├── register-drep.md │ │ │ └── voting.md │ │ ├── native-assets │ │ │ └── native-assets.md │ │ ├── plutus-scripts │ │ │ └── plutus-scripts.md │ │ └── simple-scripts │ │ │ └── simple-scripts.md │ ├── cardano-developer-community.md │ ├── cardano-node │ │ ├── cardano-components.md │ │ ├── dynamic-block-forging.md │ │ ├── installing-cardano-node.md │ │ ├── new-tracing-system │ │ │ ├── _category_.yml │ │ │ ├── cardano-tracer.md │ │ │ └── quick-start.md │ │ ├── rts-options-node.md │ │ ├── running-cardano.md │ │ └── topology.md │ ├── cardano-serialization-lib │ │ ├── create-react-app.md │ │ └── overview.md │ ├── cardano-testnet.md │ ├── cardano-wallet-js.md │ ├── cardano-wallet │ │ └── installing-cardano-wallet.md │ ├── cardanocli-js.md │ ├── cardanosharp-wallet.md │ ├── create-simple-transaction.md │ ├── cscli.md │ ├── dandelion-apis.md │ ├── koios.md │ ├── lucid-evolution │ │ ├── get-started.md │ │ ├── transactions.md │ │ └── wallets.md │ ├── mesh │ │ ├── get-started.md │ │ ├── overview.md │ │ ├── react.md │ │ ├── smart-contract-lib.md │ │ ├── transactions-basic.md │ │ ├── transactions-governance.md │ │ ├── transactions-minting.md │ │ ├── transactions-smart-contract.md │ │ ├── transactions-staking.md │ │ ├── txbuilder.md │ │ └── wallets-integration.md │ ├── ogmios.md │ ├── overview.md │ ├── plu-ts.md │ ├── secure-workflow.md │ ├── technical-concepts.md │ └── testnets-and-devnets.md ├── governance │ ├── cardano-governance │ │ ├── governance-actions.md │ │ ├── overview.md │ │ └── submitting-governance-actions.md │ ├── overview.md │ └── project-catalyst.md ├── integrate-cardano │ ├── creating-wallet-faucet.md │ ├── exchange-integrations.md │ ├── listening-for-payments-cli.md │ ├── listening-for-payments-wallet.md │ ├── multi-witness-transactions-cli.md │ ├── overview.md │ ├── point-of-sale.md │ ├── testnet-faucet.md │ └── user-wallet-authentication.md ├── native-tokens │ ├── authenticated-products.md │ ├── cardano-token-registry.md │ ├── minting-nfts.md │ ├── minting.md │ ├── overview.md │ └── token-registry │ │ ├── How-do-I-delete-my-entry-from-the-registry%3F.md │ │ ├── How-do-I-update-my-entry-in-the-registry%3F.md │ │ ├── How-to-prepare-an-entry-for-the-registry-NA-policy-script.md │ │ ├── How-to-prepare-an-entry-for-the-registry-Plutus-script.md │ │ ├── How-to-submit-an-entry-to-the-registry.md │ │ ├── Is-my-token-name-and-ticker-unique-in-the-registry-%3F.md │ │ ├── Overview.md │ │ ├── Where-do-I-register-my-metadata-for-assets-that-exist-on-one-of-the-publicly-available-testnets-e.g.-preview%2C-preprod-environments-only%3F.md │ │ ├── Why-has-my-pull-request-PR-been-closed%3F.md │ │ ├── Why-hasnt-my-pull-request-PR-been-merged-yet%3F.md │ │ ├── cardano-token-registry-cip-26.md │ │ ├── cardano-token-registry-cip-68.md │ │ └── cardano-token-registry-server.md ├── operate-a-stake-pool │ ├── ansible-cardano-node.md │ ├── audit-your-node.md │ ├── block-producer-keys.md │ ├── cardano-key-pairs.md │ ├── frankenwallet.md │ ├── generating-wallet-keys.md │ ├── grafana-dashboard-tutorial.md │ ├── guild-ops-suite.md │ ├── hardening-server.md │ ├── hardware-requirements.md │ ├── improve-grafana-security.md │ ├── introduction-to-cardano.md │ ├── monitoring-gLiveView.md │ ├── on-chain-polls.md │ ├── overview.md │ ├── prerequisites.md │ ├── register-stake-address.md │ ├── register-stake-pool-metadata.md │ ├── register-stake-pool.md │ ├── relay-node-configuration.md │ └── stake-pool-networking.md ├── portal-archived-changelog.md ├── portal-contribute.md ├── portal-signup.md ├── portal-style-guide.md ├── smart-contracts │ ├── aiken.md │ ├── marlowe.md │ ├── opshin.md │ ├── overview.md │ ├── plu-ts.md │ └── plutus.md └── transaction-metadata │ ├── how-to-create-a-metadata-transaction-cli.md │ ├── how-to-create-a-metadata-transaction-wallet.md │ ├── overview.md │ └── retrieving-metadata.md ├── docusaurus.config.js ├── examples ├── listen_payments │ ├── cli │ │ ├── dotnet │ │ │ ├── .vscode │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── ADAPaymentsPolling.csproj │ │ │ └── Program.cs │ │ ├── js │ │ │ ├── checkPayment.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── python │ │ │ └── checkPayment.py │ └── wallet │ │ ├── README.md │ │ └── cardano-wallet.restbook └── nowpayments-white.png ├── netlify.toml ├── package.json ├── scripts ├── constants.ts ├── reusable.ts └── rust-library.ts ├── searchconfig.json ├── sidebars.js ├── src ├── aiken.prism.lang.js ├── components │ ├── BackgroundWrapper │ │ ├── index.js │ │ └── styles.module.css │ ├── buttons │ │ ├── openStickyButton.js │ │ └── styles.module.css │ ├── docs │ │ └── HydraBuildList │ │ │ ├── README.txt │ │ │ └── index.js │ └── showcase │ │ ├── ShowcaseCard │ │ ├── index.js │ │ └── styles.module.css │ │ ├── ShowcaseCheckbox │ │ ├── index.js │ │ └── styles.module.css │ │ ├── ShowcaseFilterToggle │ │ ├── index.js │ │ └── styles.module.css │ │ ├── ShowcaseLatestToggle │ │ ├── index.js │ │ └── styles.module.css │ │ ├── ShowcaseTagSelect │ │ ├── index.js │ │ └── styles.module.css │ │ └── ShowcaseTooltip │ │ ├── index.js │ │ └── styles.module.css ├── css │ └── custom.css ├── data │ ├── builder-tools.js │ ├── builder-tools │ │ ├── IDE.png │ │ ├── acca.png │ │ ├── adder.png │ │ ├── aiken.png │ │ ├── ansible-cardano-node.png │ │ ├── argus.png │ │ ├── atlas.jpg │ │ ├── automint.png │ │ ├── bakrypt-io.png │ │ ├── bech32.png │ │ ├── blockfrost-crystal.png │ │ ├── blockfrost.png │ │ ├── cardano-addresses-typescript-binding.png │ │ ├── cardano-addresses.png │ │ ├── cardano-c.png │ │ ├── cardano-cli.png │ │ ├── cardano-client-lib.png │ │ ├── cardano-connect-with-wallet.png │ │ ├── cardano-db-sync.png │ │ ├── cardano-graphql.png │ │ ├── cardano-js-sdk.png │ │ ├── cardano-kit-crystal.png │ │ ├── cardano-light-tools.png │ │ ├── cardano-metadata-oracle.png │ │ ├── cardano-multiplatform-lib.png │ │ ├── cardano-node-api.png │ │ ├── cardano-node-audit.png │ │ ├── cardano-python.png │ │ ├── cardano-rosetta.png │ │ ├── cardano-serialization-lib.png │ │ ├── cardano-signer.png │ │ ├── cardano-snapshots.png │ │ ├── cardano-transaction-lib.png │ │ ├── cardano-verify-datasignature.png │ │ ├── cardano-wallet-connector.png │ │ ├── cardano-wallet-interface.png │ │ ├── cardano-wallet-js.png │ │ ├── cardano-wallet.png │ │ ├── cardanocli-js.png │ │ ├── cardanosharp.png │ │ ├── carp.png │ │ ├── cfd.png │ │ ├── clg.png │ │ ├── cnft9000.png │ │ ├── cscli.png │ │ ├── dandelion-apis.png │ │ ├── dconecrypto-webhook.png │ │ ├── demeter.png │ │ ├── dotare-cardano-delegation.png │ │ ├── fracada.png │ │ ├── frankenwallet.png │ │ ├── gOuroboros.png │ │ ├── go-cardano-serialisation.png │ │ ├── guild-operators.png │ │ ├── heidrun.png │ │ ├── helioslang.png │ │ ├── hydra.png │ │ ├── imperator.png │ │ ├── kogmios.png │ │ ├── koios-api-python.png │ │ ├── koios-java-client.png │ │ ├── koios-python.png │ │ ├── koios.png │ │ ├── kupo.png │ │ ├── leader-slot.png │ │ ├── ledgersync.jpg │ │ ├── libada-go.png │ │ ├── lucid-evolution.png │ │ ├── lucid.png │ │ ├── maestro.png │ │ ├── marlowe-playground.png │ │ ├── mesh.png │ │ ├── mumak.png │ │ ├── nft-playground.png │ │ ├── nft-vending-machine.png │ │ ├── nftcdn.png │ │ ├── ogmios-java-client.png │ │ ├── ogmios.png │ │ ├── opshin.png │ │ ├── oura.png │ │ ├── pallas-dotnet.png │ │ ├── pallas.png │ │ ├── pdr_bot.png │ │ ├── pg_cardano.png │ │ ├── pirouette.png │ │ ├── pix.png │ │ ├── plu-ts.png │ │ ├── plu-ts.svg │ │ ├── plutarch.png │ │ ├── plutip.png │ │ ├── pluto.png │ │ ├── plutonomicon.png │ │ ├── plutus-extra.png │ │ ├── plutus-playground.png │ │ ├── potential-robot.png │ │ ├── pycardano.png │ │ ├── rewardcalc.jpg │ │ ├── scrolls.png │ │ ├── spo-scripts-gitmachtl.png │ │ ├── token-registry-api.png │ │ ├── typhonjs.jpg │ │ ├── u5c.png │ │ ├── whisky.png │ │ ├── xogmios.png │ │ ├── yaci-devkit.png │ │ └── zhuli.jpg │ ├── showcase │ │ ├── Nio_app.png │ │ ├── aada-finance.png │ │ ├── adadice.png │ │ ├── adahandle.png │ │ ├── adalite.png │ │ ├── adam.png │ │ ├── adastat.png │ │ ├── adatools.png │ │ ├── adazoo.png │ │ ├── aeoniumsky.png │ │ ├── atomicwallet.png │ │ ├── balance-analytics.png │ │ ├── begin.png │ │ ├── book-token.png │ │ ├── buildingoncardano.png │ │ ├── buildoncardano.png │ │ ├── cardahub.png │ │ ├── cardano-academy.jpg │ │ ├── cardano-blockchain-insights.png │ │ ├── cardano-budget-proposals.jpg │ │ ├── cardano-studio.png │ │ ├── cardano-tools.io.png │ │ ├── cardanoassets.png │ │ ├── cardanocube.png │ │ ├── cardanoexplorer.png │ │ ├── cardanokidz.png │ │ ├── cardanoscan.png │ │ ├── cardanoupdates.png │ │ ├── cardanowall.png │ │ ├── cardanowarriors.png │ │ ├── cardastation.png │ │ ├── ccportal.jpg │ │ ├── cexplorer.png │ │ ├── cf-explorer.png │ │ ├── chainport.png │ │ ├── changwatch.jpg │ │ ├── charli3.jpg │ │ ├── clay-mates.png │ │ ├── cnftjungle.png │ │ ├── cnftlab-party.png │ │ ├── cotiadapay.png │ │ ├── coto.png │ │ ├── daedalus.png │ │ ├── danogo.png │ │ ├── dapps-on-cardano.png │ │ ├── deadpxlz.png │ │ ├── dexhunter.png │ │ ├── do-it-with-lovelace.png │ │ ├── dripdropz.png │ │ ├── eternl.jpg │ │ ├── eutxo.png │ │ ├── finitum-bridge.png │ │ ├── flintwallet.png │ │ ├── flipr.png │ │ ├── gamechanger.png │ │ ├── gerowallet.png │ │ ├── gimbalabs.png │ │ ├── govspace.png │ │ ├── govtools.jpg │ │ ├── hazelnet.png │ │ ├── hosky.png │ │ ├── jesart.png │ │ ├── jpg.png │ │ ├── lace.png │ │ ├── lending-pond.png │ │ ├── lidonation.png │ │ ├── liqwid.png │ │ ├── medusa_wallet_poster.png │ │ ├── mermada.png │ │ ├── mesh-multisig-platform.jpg │ │ ├── milkomeda.png │ │ ├── minswap.png │ │ ├── monadpool-relay-map.png │ │ ├── muesliswap.png │ │ ├── namiwallet.png │ │ ├── nft-maker.png │ │ ├── nftada.png │ │ ├── nmkr.png │ │ ├── nowpayments.png │ │ ├── nufiwallet.png │ │ ├── onboard-ninja.jpg │ │ ├── opencnft.png │ │ ├── orcfax.png │ │ ├── pavia.png │ │ ├── petregistry.png │ │ ├── poolpm.png │ │ ├── poolstats.png │ │ ├── pooltool.png │ │ ├── pooltoolmobile.png │ │ ├── raw-cardano.png │ │ ├── roundtable.png │ │ ├── spacebudz.png │ │ ├── staking-rewards-calculator.png │ │ ├── stampd.png │ │ ├── stellarhood.png │ │ ├── stuff-io.png │ │ ├── summonplatform.png │ │ ├── sundaeswap.png │ │ ├── taptools.png │ │ ├── tempo.png │ │ ├── token-builder.png │ │ ├── turf.png │ │ ├── typhonwallet.png │ │ ├── universe25.png │ │ ├── unsigs.png │ │ ├── veridian.png │ │ ├── veritree.png │ │ ├── vesprwallet.png │ │ ├── voteaire.png │ │ ├── vyfinance.png │ │ ├── wingriders.png │ │ ├── wmt.png │ │ └── yoroi.png │ └── showcases.js ├── img │ ├── hero-header-dots-dark.webp │ └── hero-header-dots.webp ├── pages │ ├── home.js │ ├── index.js │ ├── portalhero.js │ ├── showcase │ │ ├── index.js │ │ └── styles.module.css │ ├── styles.module.css │ └── tools │ │ ├── index.js │ │ └── styles.module.css ├── svg │ └── fav.svg ├── theme │ └── prism-include-languages.js └── utils │ └── jsUtils.js ├── static ├── .nojekyll └── img │ ├── aiken-logo.png │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── authors │ ├── builderfest.png │ └── cardano-foundation.png │ ├── card-get-started-title.svg │ ├── card-get-started.svg │ ├── card-governance-title.svg │ ├── card-governance.svg │ ├── card-integrate-cardano-title.svg │ ├── card-integrate-cardano.svg │ ├── card-native-tokens-title.svg │ ├── card-native-tokens.svg │ ├── card-operate-a-stake-pool-title.svg │ ├── card-operate-a-stake-pool.svg │ ├── card-smart-contracts-title.svg │ ├── card-smart-contracts.svg │ ├── card-transaction-metadata-title.svg │ ├── card-transaction-metadata.svg │ ├── cardano-black.png │ ├── cardano-black.svg │ ├── cardano-white.png │ ├── cardano-white.svg │ ├── cli │ ├── conwayup.png │ ├── delegationcycle.gif │ ├── deregister-stake-address.png │ ├── peer-discovery.jpeg │ ├── upbyron.png │ └── upshelley.png │ ├── dev-portal-hero-dark.webp │ ├── dev-portal-hero-light.webp │ ├── devblog │ ├── adao-light.svg │ ├── adapools.png │ ├── adastat-dark.svg │ ├── adastat-light.svg │ ├── charli3.png │ ├── coti-dark.png │ ├── coti-white.png │ ├── demu.png │ ├── developer-portal-launch.jpeg │ ├── dexhunter-dark.png │ ├── dexhunter-light.png │ ├── fluid-light.svg │ ├── geniusyield-community -dex.jpg │ ├── geniusyield-dark.svg │ ├── geniusyield-light.svg │ ├── geniusyield-my-dex-rewards.jpg │ ├── gmbl-dark.png │ ├── gmbl-light.png │ ├── how-to-mint.png │ ├── koios-dark.png │ ├── koios-light.png │ ├── lenfi-dark.svg │ ├── lenfi-light.svg │ ├── lovelace.png │ ├── mainstreet-achievements.png │ ├── mainstreet-dark.svg │ ├── mainstreet-light.svg │ ├── mainstreet-roadmap.png │ ├── mandala-dark.png │ ├── mandala-light.png │ ├── mercury-logo.jpg │ ├── mesh-dark.png │ ├── mesh-light.png │ ├── milkomeda-dark.png │ ├── milkomeda-light.png │ ├── milkomeda.png │ ├── minswap-blue.png │ ├── minswap-white.png │ ├── nami.png │ ├── newm.png │ ├── nft-maker-img.png │ ├── nfta.jpg │ ├── nftmaker-background-img.png │ ├── nmkr_preview.png │ ├── nowpayments-dark.png │ ├── nowpayments-white.png │ ├── nowpayments.png │ ├── nucast-dark.png │ ├── nucast-dark.svg │ ├── nucast-light.svg │ ├── rejuve-dark.svg │ ├── rejuve-light.svg │ ├── strica-light.png │ ├── tokhun.png │ ├── vespr-dark.svg │ ├── vespr-light.svg │ ├── w3ride-dark.png │ ├── w3ride-light.png │ ├── zengate-dark.svg │ └── zengate-light.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── get-started │ ├── air-gap │ │ ├── 10-software-choices.png │ │ ├── 20-installation-type.png │ │ ├── 30-encrypt-disk.png │ │ └── 35-disk-encrypted.png │ ├── blockfrost │ │ ├── getting-started-1_frontend_landing.png │ │ ├── getting-started-2_add_project.png │ │ ├── getting-started-3_get_api_key.png │ │ └── secure-webhooks-1_webhooks_jsonpath.png │ ├── dandelion-apis │ │ ├── showcase-cardano-node-socket.png │ │ ├── showcase-comingsoon.jpg │ │ ├── showcase-explorer-api.png │ │ ├── showcase-graphql-api.png │ │ ├── showcase-ogmios-api.png │ │ ├── showcase-postgrest-api.png │ │ ├── showcase-rosetta-api.png │ │ ├── showcase-smash.png │ │ └── showcase-submit-api.png │ ├── guild-ops-suite │ │ ├── guild_cntools.png │ │ ├── guild_gliveview.png │ │ └── guild_topologyupdater.png │ ├── koios │ │ └── 1-usage.png │ ├── ogmios │ │ └── 1-dashboard.gif │ └── smart-contracts │ │ ├── marlowe-playground.jpg │ │ └── plutus-playground.jpg │ ├── governance │ └── cips │ │ ├── cip_workflow_dark.png │ │ └── cip_workflow_light.png │ ├── hero-header-dots.webp │ ├── hero-header-enterprise.png │ ├── hero-header-zoom.png │ ├── hero-header-zoom2.png │ ├── integrate-cardano │ ├── ada-online-shop.png │ ├── ada-payment-flow-wallet.png │ ├── ada-payment-flow.png │ ├── latest-block.png │ ├── multi-witness-transaction.png │ └── point-of-sale-example.png │ ├── logo-cardanofoundation-darkmode.svg │ ├── logo-cardanofoundation-lightmode.svg │ ├── logo-eopsin.png │ ├── logo-iohk-darkmode.svg │ ├── logo-iohk-lightmode.svg │ ├── logo-marlowe-small.png │ ├── logo-marlowe.png │ ├── logo-plutus-small.png │ ├── logo-plutus.png │ ├── logo.svg │ ├── logo_OLD.svg │ ├── native-tokens │ ├── nft-burn.png │ ├── nft-current-block-on-explorer.png │ ├── nft-current-block-tip.png │ ├── nft-daedalus-testnet.png │ ├── nft-matx.png │ ├── nft-merch-store-poc.png │ ├── nft-minted-token.png │ ├── nft-txhash-after-burn.png │ └── nft-txhash.png │ ├── nfts │ ├── cardano_explorer_testnet.png │ ├── daedalus_tokens_rec.PNG │ ├── overview_nfts.svg │ ├── pinata_pin.PNG │ ├── poolpm_nft.png │ └── poolpm_nft_testnet.png │ ├── og │ ├── og-blog-ada-makerspace.png │ ├── og-blog-adao.png │ ├── og-blog-adapools.png │ ├── og-blog-adastat.png │ ├── og-blog-adatools.png │ ├── og-blog-cardanoscan.png │ ├── og-blog-charlie.png │ ├── og-blog-coti.png │ ├── og-blog-demu.png │ ├── og-blog-dexhunter.png │ ├── og-blog-fluidtokens.png │ ├── og-blog-gimbalabs.png │ ├── og-blog-koios.png │ ├── og-blog-launch.png │ ├── og-blog-lenfi.png │ ├── og-blog-lovelace-academy.png │ ├── og-blog-mainstreet.png │ ├── og-blog-mandala.png │ ├── og-blog-mercury.png │ ├── og-blog-mesh.png │ ├── og-blog-milkomeda.png │ ├── og-blog-minswap.png │ ├── og-blog-nami.png │ ├── og-blog-newm.png │ ├── og-blog-nftas.png │ ├── og-blog-nftmaker.png │ ├── og-blog-nmkr.png │ ├── og-blog-nowpayments.png │ ├── og-blog-nucast.png │ ├── og-blog-on-the-rocks.png │ ├── og-blog-p2pdefi.png │ ├── og-blog-rejuve.png │ ├── og-blog-strica.png │ ├── og-blog-tokhun.png │ ├── og-blog-vespr.png │ ├── og-blog-w3ride.png │ ├── og-blog-zengate.png │ ├── og-builder-tools.png │ ├── og-changelog.png │ ├── og-developer-blog.png │ ├── og-developer-portal.png │ ├── og-getstarted-aiken.png │ ├── og-getstarted-blockfrost.png │ ├── og-getstarted-cardano-components.png │ ├── og-getstarted-cardano-wallet-js.png │ ├── og-getstarted-cardanocli-js.png │ ├── og-getstarted-cardanosharp-wallet.png │ ├── og-getstarted-cscli.png │ ├── og-getstarted-dandelion-apis.png │ ├── og-getstarted-developer-community.png │ ├── og-getstarted-installing-cardano-node.png │ ├── og-getstarted-installing-cardano-wallet.png │ ├── og-getstarted-koios.png │ ├── og-getstarted-mesh.png │ ├── og-getstarted-ogmios.png │ ├── og-getstarted-overview.png │ ├── og-getstarted-running-cardano-node.png │ ├── og-getstarted-serialization-lib.png │ ├── og-getstarted-technical-concepts.png │ ├── og-getstarted-testnets.png │ ├── og-security-air-gap-environment.png │ ├── og-security-secure-transaction-workflow.png │ └── og-showcase.png │ ├── plu_ts-logo.svg │ ├── portal-header-blue.png │ ├── portal-header-white.png │ ├── spotlight │ ├── adamakerspace.jpeg │ ├── adatools.jpeg │ ├── cardano-on-the-rocks.png │ ├── cardanoscan.png │ ├── hitchhikersguide.png │ ├── jormanager.png │ ├── poolpm.png │ └── pooltool.png │ ├── stake-pool-course │ ├── loki-4-panels.png │ ├── loki-add-dashboard.png │ ├── loki-explore-labels.png │ ├── loki-explore-loki.png │ ├── loki-final-dashboard.png │ ├── loki-grafana-configure-ip.png │ ├── loki-grafana-data-source-loki.png │ ├── loki-grafana-datasource.png │ ├── loki-grafana-select-loki.png │ ├── loki-hot2cold.png │ ├── loki-labels.png │ ├── loki-select-loki.png │ ├── loki-show-logs.png │ ├── loki-test-relay1-explore.png │ ├── setup-aws-1.png │ ├── setup-aws-10-connect.png │ ├── setup-aws-11-connect-2.png │ ├── setup-aws-2.png │ ├── setup-aws-3.png │ ├── setup-aws-4.png │ ├── setup-aws-5-dashboard.png │ ├── setup-aws-6-launch-instance.png │ ├── setup-aws-7-choose.png │ ├── setup-aws-8-instance-type.png │ ├── setup-aws-9-key-pair.png │ ├── snsky_EmailAlert.jpg │ ├── snsky_PeerAlert.jpg │ ├── snsky_dashboard.jpg │ ├── snsky_leaderPanel.jpg │ └── snsky_prometheus.jpg │ ├── stake-pool-guide │ ├── snsky_EmailAlert.jpg │ ├── snsky_PeerAlert.jpg │ ├── snsky_dashboard.jpg │ ├── snsky_leaderPanel.jpg │ ├── snsky_producer.jpg │ ├── snsky_prometheus.jpg │ ├── snsky_relay.jpg │ ├── stake-pool-network.jpg │ └── stake-pool-setup.jpg │ ├── testavatar.png │ └── tx-meta-data │ └── todo-list-app.png ├── tsconfig.json ├── variables.js └── yarn.lock /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 👋👋 Hello there! Welcome. Please follow the instruction below. 2 | 3 | Click the `Preview` tab and select a PR template: 4 | 5 | - [Add Showcase](?expand=1&template=showcase.md) 6 | - [Add Builder Tool](?expand=1&template=builder-tool.md) 7 | - [Update documentation or Fix a Bug](?expand=1&template=standard-change.md) 8 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/builder-tool.md: -------------------------------------------------------------------------------- 1 | 👋 Hello there! Welcome. Please follow the steps below to tell us about your contribution. 2 | 3 | 1. Please complete a Checklist 4 | 2. Fill in all sections of the template 5 | 3. Click "Create pull request" 6 | 7 | ## Checklist 8 | 9 | <-- Please fill the boxes with [x] before submitting a pull request --> 10 | 11 | - [ ] I have read the [How to Contribute](https://developers.cardano.org/docs/portal-contribute/). 12 | - [ ] I have read the [Builder Tool Requirements](https://github.com/cardano-foundation/developer-portal/edit/staging/src/data/builder-tools.js) 13 | - [ ] I have run `yarn build` after adding my changes **without getting any errors**. 14 | - [ ] I have not committed any changes to `yarn.lock` (or have [removed these changes](https://developers.cardano.org/docs/portal-contribute/#i-committed-yarnlock-to-my-pr-branch-what-do-i-do)). 15 | 16 | ## Builder Tool addition 17 | 18 | <-- Provide information for every bullet in the list below. The tags you select must match the tags in your changes to the builder-tools.js --> 19 | 20 | * Title: *Project name* 21 | * Description: *Describe your project* 22 | * Website: 23 | * Getstarted: 24 | * Tags: 25 | * `chainindex` 26 | * `cli` 27 | * `golang` 28 | * `IDE` 29 | * `java` 30 | * `javascript` 31 | * `marlowe` 32 | * `net` 33 | * `nft` 34 | * `operatortool` 35 | * `oracle` 36 | * `plutus` 37 | * `python` 38 | * `rust` 39 | * `purescript` 40 | * `websocket` 41 | * `http` 42 | * `json` 43 | * `haskell` 44 | * `typescript` 45 | * `wallet` 46 | * `serialization` 47 | * `sdk` 48 | * `redis` 49 | * `sql` 50 | * `lowlevel` 51 | * `testing` 52 | * `hosted` 53 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/showcase.md: -------------------------------------------------------------------------------- 1 | 👋 Hello there! Welcome. Please follow the steps below to tell us about your contribution. 2 | 3 | 1. Please complete a Checklist 4 | 2. Fill in all sections of the template 5 | 3. Click "Create pull request" 6 | 7 | ## Checklist 8 | 9 | <-- Please fill the boxes with [x] before submitting a pull request --> 10 | 11 | - [ ] I have read the [How to Contribute](https://developers.cardano.org/docs/portal-contribute/). 12 | - [ ] I have read the [Showcase Requirements](https://github.com/cardano-foundation/developer-portal/edit/staging/src/data/showcases.js) 13 | - [ ] I have run `yarn build` after adding my changes **without getting any errors**. 14 | - [ ] I have not committed any changes to `yarn.lock` (or have [removed these changes](https://developers.cardano.org/docs/portal-contribute/#i-committed-yarnlock-to-my-pr-branch-what-do-i-do)). 15 | 16 | ## Showcase addition 17 | 18 | <-- Provide information for every bullet in the list below. The tags you select must match the tags in your changes to the showcase.js --> 19 | 20 | * Title: *Project name* 21 | * Description: *Describe your project* 22 | * Website: 23 | * Source: 24 | * Tags: 25 | * `analytics` 26 | * `daotool` 27 | * `dex` 28 | * `ecosystem` 29 | * `explorer` 30 | * `educational` 31 | * `game` 32 | * `gateway` 33 | * `identity` 34 | * `marketplace` 35 | * `minting` 36 | * `opensource` 37 | * `pooltool` 38 | * `metadata` 39 | * `token` 40 | * `nftproject` 41 | * `nftsupport` 42 | * `opensource` 43 | * `wallet` 44 | * `catalyst` 45 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/standard-change.md: -------------------------------------------------------------------------------- 1 | 👋 Hello there! Welcome. Please follow the steps below to tell us about your contribution. 2 | 3 | 1. Please complete a Checklist 4 | 2. Fill in all sections of the template 5 | 3. Click "Create pull request" 6 | 7 | ## Checklist 8 | 9 | <-- Please fill the boxes with [x] before submitting a pull request --> 10 | 11 | - [ ] I have read the [How to Contribute](https://developers.cardano.org/docs/portal-contribute/). 12 | - [ ] I have run `yarn build` after adding my changes **without getting any errors**. 13 | - [ ] I have not committed any changes to `yarn.lock` (or have [removed these changes](https://developers.cardano.org/docs/portal-contribute/#i-committed-yarnlock-to-my-pr-branch-what-do-i-do)). 14 | 15 | ## Updating documentation or Bugfix 16 | 17 | <-- Help us understand your motivation by explaining why you decided to make this change. We must be able to understand the purpose of your change from this description. Does this fix a bug? Does it close an issue? If so please mention it. --> 18 | -------------------------------------------------------------------------------- /.github/actions/yarn-build/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:lts-alpine 2 | 3 | RUN apk add --no-cache git 4 | RUN npm i -g --force yarn 5 | COPY "entrypoint.sh" "/entrypoint.sh" 6 | ENTRYPOINT ["/entrypoint.sh"] 7 | CMD ["help"] 8 | -------------------------------------------------------------------------------- /.github/actions/yarn-build/README.md: -------------------------------------------------------------------------------- 1 | # Build Yarn Action 2 | 3 | This github actions provides arbirary actions for the yarn cli command. 4 | The main reason for writing this was that i needed to add a fix for gits 5 | safe directory thing, see entrypoint.sh. 6 | 7 | The code mostly is taken from https://github.com/Borales/actions-yarn 8 | but simplified. Mostly removed the npm auth token stuff, which we wont need 9 | in the near future. And then the original action might have a fix for 10 | the git safedir issue built in so we might want to remove this action 11 | alltogether. 12 | 13 | 14 | To use this action 15 | name: CI 16 | on: [push] 17 | jobs: 18 | build: 19 | name: Test 20 | runs-on: ubuntu-latest 21 | steps: 22 | - uses: actions/checkout@v2 23 | - uses: ./.github/actions/yarn-build 24 | with: 25 | cmd: install # will run `yarn install` command 26 | - uses: ./.github/actions/yarn-build 27 | with: 28 | cmd: build # will run `yarn build` command 29 | -------------------------------------------------------------------------------- /.github/actions/yarn-build/action.yml: -------------------------------------------------------------------------------- 1 | name: "GitHub Action for Yarn" 2 | description: "Wraps the yarn CLI to enable common yarn commands" 3 | branding: 4 | icon: "package" 5 | color: "blue" 6 | inputs: 7 | cmd: 8 | description: "Yarn command" 9 | required: true 10 | runs: 11 | using: "docker" 12 | image: "Dockerfile" 13 | args: 14 | - ${{ inputs.cmd }} 15 | -------------------------------------------------------------------------------- /.github/actions/yarn-build/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | # had to add this line due to changes within git 5 | # see: https://github.com/actions/runner/issues/2033 6 | git config --global --add safe.directory /github/workspace 7 | 8 | sh -c "yarn $*" 9 | -------------------------------------------------------------------------------- /.github/workflows/yarn-build.yml: -------------------------------------------------------------------------------- 1 | name: "Yarn Build" 2 | 3 | on: 4 | push: 5 | pull_request: 6 | 7 | jobs: 8 | build: 9 | name: Build documentation 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout 13 | uses: actions/checkout@v3 14 | 15 | - name: Install 16 | uses: ./.github/actions/yarn-build 17 | with: 18 | cmd: install 19 | 20 | - name: Build 21 | uses: ./.github/actions/yarn-build 22 | with: 23 | cmd: build 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | /node_modules 3 | 4 | # Production 5 | /build 6 | 7 | # Generated files 8 | .docusaurus 9 | .cache-loader 10 | 11 | # Misc 12 | .DS_Store 13 | .env.local 14 | .env.development.local 15 | .env.test.local 16 | .env.production.local 17 | 18 | npm-debug.log* 19 | yarn-debug.log* 20 | yarn-error.log* 21 | 22 | # Common Examples 23 | **/keys** 24 | 25 | # .NET Examples 26 | **/bin** 27 | **/obj** 28 | 29 | # JS / TS Examples 30 | **/node_modules 31 | 32 | # vscode 33 | .vscode 34 | 35 | # markdownlint 36 | .markdownlint.json 37 | 38 | # intellij 39 | .idea 40 | 41 | # TODO: Since we removed CIP, CPS, Changelog these are technically no longer needed, will still keep 42 | # these entries for now to prevent people from committing downloaded files 43 | /docs/governance/cardano-improvement-proposals/* 44 | /docs/governance/cardano-problem-statements/* 45 | /static/img/cip/* 46 | /static/img/cps/* 47 | /changelog/* 48 | 49 | # Auto generated content like Rust Library, Token Registry 50 | /docs/get-started/cardano-serialization-lib/* 51 | 52 | # (only check in yarn.lock when deliberately establishing a software baseline) 53 | yarn.lock 54 | 55 | # Temporary files that sometimes get checked in by accident 56 | .yarn/** 57 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 18.0 -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18.17.0 2 | -------------------------------------------------------------------------------- /.yarn-version: -------------------------------------------------------------------------------- 1 | 1.20.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Cardano Foundation 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Netlify Status](https://api.netlify.com/api/v1/badges/8d3fae14-1136-4a30-8224-f5602a5a2360/deploy-status)](https://app.netlify.com/sites/staging-dev-portal/deploys) 2 | 3 | # Cardano Developer Portal 4 | 5 | We wanted to build a developer portal as open and inclusive as Cardano. A portal that is in the hands of the Cardano community and can be constantly evolved by it. 6 | 7 | For this to be successful, the portal relies on your contributions, and the fact that you are reading this text probably means that you have something to contribute, even if you are not a Developer. 8 | 9 | Please find a detailed installation guide on [developers.cardano.org/docs/portal-contribute/](https://developers.cardano.org/docs/portal-contribute#installation). 10 | 11 | 12 | ## Requirements: 13 | 14 | [Node.js](https://nodejs.org/en/download/) version >= 18.0 15 | [Yarn](https://yarnpkg.com/en/) version >= 1.20 16 | On macOS you also need Xcode and Command Line Tools. 17 | 18 | 19 | ## Clone the repo 20 | 21 | ```console 22 | git clone https://github.com/cardano-foundation/developer-portal.git 23 | ``` 24 | 25 | ## Navigate into the folder 26 | 27 | ```console 28 | cd developer-portal 29 | ``` 30 | 31 | ## Install all dependencies 32 | 33 | ```console 34 | yarn install 35 | ``` 36 | 37 | ## Production build 38 | 39 | Create at least once a production build (as this pulls missing files) 40 | 41 | ```console 42 | yarn build 43 | ``` 44 | 45 | ## Local development 46 | 47 | ```console 48 | yarn start 49 | ``` 50 | 51 | This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server. 52 | 53 | ## Project structure 54 | 55 | Please find the project structure and more detailed information on [developers.cardano.org/docs/portal-contribute/](https://developers.cardano.org/docs/portal-contribute/#project-structure). 56 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [require.resolve("@docusaurus/core/lib/babel/preset")], 3 | }; 4 | -------------------------------------------------------------------------------- /blog/2025-01-17-january.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: 2025-01-17-media-cardano-developer-office-hours 3 | title: "Presenting the yaci-devkit" 4 | authors: [cf] 5 | tags: [media, Developer Office Hours] 6 | --- 7 | 8 | This 12th installment of the Cardano Developer Office Hours is presented by Satya Ranjan, Senior Enterprise Architect at the Cardano Foundation. In this session, Satya discusses how the yaci-devkit simplifies building and testing on a local Cardano dev network, helping developers iterate faster and avoid public testnet limitations. The session highlights key features such as customizable block times, integrated tools, and Blockfrost-compatible APIs. A live demo shows easy setup using Docker and NPM distributions. 9 | 10 |
11 | [**Watch now**](https://youtu.be/lY7Ceuyc5qw) 12 |
13 | 14 | -------------------------------------------------------------------------------- /blog/2025-02-05-february.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: 2025-02-05-media-cardano-developer-office-hours 3 | title: "Java Implementation on Rosetta" 4 | authors: [cf] 5 | tags: [media, Developer Office Hours] 6 | --- 7 | 8 | This 13th installment of the Cardano Developer Office Hours is presented by Thomas Kammerlocher, Senior Full Stack Developer at the Cardano Foundation. Thomas discusses the Java implementation of Rosetta, a tool developed by Coinbase for exchanges to integrate with Cardano. Rosetta simplifies multi-chain support with its blockchain-agnostic API, and the transition from TypeScript to Java enhances performance and reduces resource consumption. Upcoming updates include support for staking rewards tracking, off-chain data integration, and more improvements to scalability and efficiency. 9 | 10 |
11 | [**Watch now**](https://www.youtube.com/watch?v=rbiH6GYWbyQ) 12 |
13 | 14 | -------------------------------------------------------------------------------- /blog/2025-02-14-february.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: 2025-02-14-media-cardano-developer-office-hours 3 | title: "Inter-Blockchain Communication" 4 | authors: [cf] 5 | tags: [media, Developer Office Hours] 6 | --- 7 | 8 | This installment of the Cardano Developer Office Hours explores the Cosmos-Cardano Inter-Blockchain Communication (IBC) bridge project. The session provides an overview of the architecture, current development, and key components driving the project. Topics include the IBC protocol, blockchain interoperability, and the integration of Cosmos SDK with Cardano. A live demo showcases how to send messages between the Cosmos network and a local Cardano node. The session also covers real-world use cases like token transfers, cross-chain swaps, and more. 9 | 10 |
11 | [**Watch now**](https://www.youtube.com/watch?v=ZO17Tg0re40) 12 |
13 | 14 | -------------------------------------------------------------------------------- /blog/2025-02-28-february.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: 2025-02-28-media-cardano-developer-office-hours 3 | title: "Presenting Reeve" 4 | authors: [cf] 5 | tags: [media, Developer Office Hours] 6 | --- 7 | 8 | This installment of the Cardano Developer Office Hours explores Reeve, a next-generation accountability tool for delivering tamper-proof and transparent financial insights. Reeve integrates traditional accounting systems with blockchain technology, ensuring transparency, immutability, and security for financial records. Built on Cardano, the platform offers a decentralized approach to financial data management. Designed for accountants, auditors, non-profits, and enterprises, Reeve helps streamline audits, improve efficiency, and build trust in financial processes. The session provides an overview of the project, its architecture, and current development. 9 | 10 |
11 | [**Watch now**](https://www.youtube.com/watch?v=UqQsAej0CLE) 12 |
13 | 14 | -------------------------------------------------------------------------------- /blog/2025-03-24-march.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: 2025-03-24-media-cardano-developer-office-hours 3 | title: "Java Tooling for dApps Development" 4 | authors: [cf] 5 | tags: [media, Developer Office Hours] 6 | --- 7 | 8 | Satya Ranjan, Lead Blockchain Architect at the Cardano Foundation, presents Java tools for building on Cardano. The session covers `cardano-client-lib`, writing off-chain code, building transactions, and integrating governance and staking. Satya also demos Yaci DevKit for local dev environments, Yaci Store for indexing, and shows how to build lightweight apps using tailored data. Ideal for developers and exchanges exploring Java’s role in Cardano infrastructure. 9 | 10 |
11 | [**Watch now**](https://www.youtube.com/watch?v=L1_E9Bc-f_Y) 12 |
13 | 14 | -------------------------------------------------------------------------------- /blog/2025-03-28-march.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: 2025-03-28-media-cardano-developer-office-hours 3 | title: "Cardano Ecosystem Engineering" 4 | authors: [cf] 5 | tags: [media, Developer Office Hours] 6 | --- 7 | 8 | Giovanni Gargiulo, Senior Software Engineer at the Cardano Foundation, shares how ecosystem engineering supports Cardano’s growth. The session covers DevOps practices behind scalability, security, and uptime, along with challenges of running decentralized infrastructure. Giovanni also touches on infrastructure evolution, global adoption, and what’s ahead for Cardano engineering. 9 | 10 |
11 | [**Watch now**](https://www.youtube.com/watch?v=3w3y3cdaWQA) 12 |
13 | 14 | -------------------------------------------------------------------------------- /blog/2025-04-11-march.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: 2025-04-11-media-cardano-developer-office-hours 3 | title: "Scalus DApp Development Platform" 4 | authors: [cf] 5 | tags: [media, Developer Office Hours] 6 | --- 7 | 8 | Alex Nemish and Oleksii Khodakivskyi from Lantr introduce Scalus, a smart contract framework built with Scala 3. They walk through the vision, roadmap, and show how it simplifies development on Cardano, including a live demo of a payment splitter contract. This session is ideal for devs exploring new tools to build on Cardano. 9 | 10 |
11 | [**Watch now**](https://www.youtube.com/watch?v=UJeFLy92D4Q) 12 |
13 | 14 | -------------------------------------------------------------------------------- /blog/2025-05-09-may.md: -------------------------------------------------------------------------------- 1 | --- 2 | slug: 2025-05-09-media-cardano-developer-office-hours 3 | title: "Decentralizing Open-Source Development" 4 | authors: [cf] 5 | tags: [media, Developer Office Hours] 6 | --- 7 | 8 | In this session of the Cardano Developer Office Hours, the team presents PoP (Proof of Provenance), a project to decentralize open-source development on Cardano. They cover risks of centralized infrastructure, using Cardano for verifiable software metadata, Merkle trees, and on-chain tracking. A live demo shows PoP in action. Use cases include secure versioning, on-chain test management, SPOs as decentralized oracles, and decentralized package tools. 9 | 10 |
11 | [**Watch now**](https://www.youtube.com/watch?v=rCSFiF4rMXI) 12 |
13 | 14 | -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- 1 | cf: 2 | name: Cardano Foundation 3 | title: Not-for-profit organization 4 | url: https://cardanofoundation.org 5 | image_url: /img/authors/cardano-foundation.png 6 | 7 | builderfest: 8 | name: Buidler Fest 9 | title: Home of the Buidler Fest 10 | url: https://buidl.2024.cardano.org 11 | image_url: /img/authors/builderfest.png 12 | 13 | denicio: 14 | name: Denicio Bute 15 | title: Community Content Lead - CF 16 | url: https://github.com/weqanhet 17 | image_url: /img/authors/cardano-foundation.png 18 | 19 | nico: 20 | name: Nicolas Cerny 21 | title: Governance Lead - CF 22 | url: https://github.com/thenic95 23 | image_url: /img/authors/cardano-foundation.png 24 | -------------------------------------------------------------------------------- /docs/careers.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: careers 3 | title: Careers on Cardano 4 | sidebar_label: Careers on Cardano 5 | description: Are you passionate about Cardano and looking for a job working in the Cardano ecosystem? 6 | image: /img/og/og-developer-portal.png 7 | hide_table_of_contents: false 8 | --- 9 | 10 | Are you passionate about Cardano and looking for a job working in the Cardano ecosystem? There are several organizations which practically always have open vacancies and career opportunities. 11 | 12 | Most of these jobs are 100% remote. You can work from anywhere in the world with a flexible schedule. 13 | 14 | ## Work on Cardano projects full-time 15 | 16 | - [Jobs at Cardano Foundation](https://cardanofoundation.org/careers) 17 | - [Jobs at dcSpark](https://dcspark.io/#careers) 18 | - [Jobs at EMURGO](https://emurgo.io/careers/) 19 | - [Jobs at IOHK](https://apply.workable.com/io-global/) 20 | -------------------------------------------------------------------------------- /docs/get-started/aiken.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: aiken 3 | title: Get Started with Aiken 4 | sidebar_label: Aiken 5 | description: Get Started with Aiken 6 | image: /img/og/og-getstarted-aiken.png 7 | --- 8 | 9 | Aiken is a modern smart contract platform for Cardano. 10 | 11 | ## Installation 12 | 13 | ### Install Aiken from Source 14 | 15 | To install Aiken from source we recommend `cargo`, a package manager for Rust. To install it, please refer to the [Rust Installation Guide](https://doc.rust-lang.org/stable/book/ch01-01-installation.html). 16 | 17 | ```sh 18 | cargo install --git https://github.com/aiken-lang/aiken.git 19 | ``` 20 | 21 | ### Install Aiken from Nix Flakes 22 | 23 | ```sh 24 | nix build .#aiken 25 | ``` 26 | 27 | ## Quick Start 28 | 29 | ```sh 30 | aiken --help 31 | ``` 32 | 33 | ## Editor Integrations 34 | 35 | These editor integrations are currently available for Aiken: 36 | 37 | | Editor | Plugin | 38 | | ------------- | ----------- | 39 | | VSCode | [editor-integration-vscode](https://github.com/aiken-lang/editor-integration-vscode) | 40 | | Vim/Neovim | [editor-integration-nvim](https://github.com/aiken-lang/editor-integration-nvim) | 41 | 42 | 43 | ## Hello World 44 | 45 | You are ready now to write and execute your first smart contract on Cardano. Have a look at the [hello world example contract](/docs/smart-contracts/aiken). 46 | 47 | Visit the Aiken website and explore [other examples](https://aiken-lang.org/example--hello-world). 48 | -------------------------------------------------------------------------------- /docs/get-started/blockfrost/open-source.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: open-source 3 | sidebar_position: 6 4 | title: Blockfrost Open Source 5 | sidebar_label: Open Source 6 | description: Open Source 7 | --- 8 | 9 | Blockfrost [backend](https://github.com/blockfrost/blockfrost-backend-ryo), SDKs, [OpenAPI specifications](https://github.com/blockfrost/openapi) and other tooling is open-source and maintained with the support of Cardano community. Participation is always welcome and encouraged. 10 | 11 | # Run Your Own 12 | 13 | Source code of the Blockfrost backend is hosted on Github, in the [blockfrost-ryo-backend](https://github.com/blockfrost/blockfrost-backend-ryo) repository. 14 | 15 | To build it, you need to follow the instructions specified in the [README](https://github.com/blockfrost/blockfrost-backend-ryo#blockfrostio-backend-service) of the repository or you can even use pre-built Docker images: 16 | 17 | ```bash 18 | docker run --rm \ 19 | --name blockfrost-ryo \ 20 | -p 3000:3000 \ 21 | -e BLOCKFROST_CONFIG_SERVER_LISTEN_ADDRESS=0.0.0.0 \ 22 | -v $PWD/config:/app/config \ 23 | blockfrost/backend-ryo:latest 24 | ``` 25 | 26 | # OpenAPI Specification 27 | 28 | The OpenAPI specification is open-source and is intended to serve as a good practice for API built on Cardano. The [source code](https://github.com/blockfrost/openapi) is hosted on Github too. Current version is rendered and available at [docs.blockfrost.io](https://docs.blockfrost.io/). 29 | 30 | # SDKs and other tooling 31 | 32 | All the official SDKs as well as other interesting tooling is hosted under the [Blockfrost organization on Github](https://github.com/blockfrost). 33 | -------------------------------------------------------------------------------- /docs/get-started/blockfrost/overview.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: overview 3 | sidebar_position: 1 4 | title: Overview of the Blockfrost ecosystem 5 | sidebar_label: Overview 6 | description: Blockfrost overview 7 | --- 8 | 9 | Blockfrost is a comprehensive infrastructure toolkit designed to assist developers in building projects on the Cardano platform. 10 | 11 | At the heart of the ecosystem lies a user-friendly, swift, feature-rich and fine-tuned [API as a Service](https://blockfrost.io), providing seamless access to the Cardano blockchain and associated networks. The service is public and freely accessible, making it the perfect alternative to running and maintaining your own infrastructure and tools. 12 | 13 | In addition to the Cardano networks, it also provides access to IPFS and Milkomeda. 14 | 15 | The core technology of Blockfrost is [open-source](https://github.com/blockfrost/blockfrost-backend-ryo), and its development is supported by the collaborative efforts of the Cardano community. 16 | 17 | Find out more details on how to build with Blockfrost at [Blockfrost Development Hub](https://blockfrost.dev/). -------------------------------------------------------------------------------- /docs/get-started/blockfrost/secure-webhooks.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: secure-webhooks 3 | sidebar_position: 5 4 | title: Secure Webhooks 5 | sidebar_label: Secure Webhooks 6 | description: Secure Webhooks 7 | --- 8 | 9 | Instead of repeatedly retrieving and processing potentially irrelevant blockchain data (polling), Blockfrost Secure Webhooks can be set up to streamline the process. Secure Webhooks notify your application only when relevant events occur, enhancing efficiency and reducing effort on your part. 10 | 11 | Webhooks empower Blockfrost to deliver real-time notifications to your application. Utilizing HTTP POST requests, Blockfrost Secure Webhooks transmit events to your application endpoint in JSON format. These events can subsequently be used to trigger actions within your backend systems. 12 | 13 | Optionally, you can create up to 5 trigger conditions for a webhook. Only events that meet all of the conditions will be sent to your endpoint. A condition rule consist of a field, a value, and an operator. You can choose from predefined condition fields or create a custom JSONPath query extracting the field you want to match. 14 | 15 | ![Blockfrost.io JSONPath](../../../static/img/get-started/blockfrost/secure-webhooks-1_webhooks_jsonpath.png) 16 | 17 | Webhooks are both powerful and complex. To learn more, have a look at the [official Blockfrost documentation](https://blockfrost.dev/docs/start-building/webhooks/) 18 | -------------------------------------------------------------------------------- /docs/get-started/cardano-cli/get-started/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 1 # float position is supported 2 | label: 'CLI - Get started' 3 | collapsible: true # make the category collapsible 4 | collapsed: true # keep the category open by default -------------------------------------------------------------------------------- /docs/get-started/cardano-node/new-tracing-system/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 6 # float position is supported 2 | label: 'New tracing system' 3 | collapsible: true # make the category collapsible 4 | collapsed: true # keep the category open by default -------------------------------------------------------------------------------- /docs/get-started/mesh/get-started.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: get-started 3 | sidebar_position: 2 4 | title: Get Started 5 | sidebar_label: Get Started 6 | description: Get Started with Mesh 7 | image: /img/og/og-getstarted-mesh.png 8 | --- 9 | 10 | There are multiple ways to get started with Mesh: 11 | - [Starter Kits](#starter-kits) 12 | - [Guides](#guides) 13 | 14 | ## Starter Kits 15 | 16 | The easiest way to get started with Mesh is to use one of the [Starter Kits](https://github.com/MeshJS/examples). 17 | 18 | Whether you are if you are an NFT project and wants to start your own multi-sig minting website, you can use the Multi-sig Minting Starter Kit. 19 | 20 | Or, if you are a stake pool operator, the Pool Operator Portal Starter Kit allows delegators to connect their wallet and stake with your pool. 21 | 22 | ## Guides 23 | 24 | Whether you are new to web development or a seasoned blockchain full-stack developer, these guides will help you get started. 25 | 26 | | [Browse all guides](https://meshjs.dev/guides) | | 27 | |--|--| 28 | | [Start a Web3 app on Next.js](https://meshjs.dev/guides/nextjs) | A step-by-step guide to setup a Next.js web application, connect wallet and browse wallet's assets. | 29 | | [Minting on Node.js](https://meshjs.dev/guides/minting-on-nodejs) | Load a CLI generated key and mint assets on Node.js | 30 | | [Multi-Signatures Transaction (Minting)](https://meshjs.dev/guides/multisig-minting) | Create a multi-sig transaction and mint NFTs| 31 | | [Get started with Aiken](https://meshjs.dev/guides/aiken) | A step-by-step guide to build contracts with Aiken and build transactions to interact with the blockchain. | 32 | | [Cryptographically Prove Wallet Ownership](https://meshjs.dev/guides/prove-wallet-ownership) | Cryptographically prove the ownership of a wallet by signing a piece of data using data sign. | 33 | | [Vesting example](https://meshjs.dev/guides/vesting) | Vesting contract is a smart contract that locks up funds and allows the beneficiary to withdraw the funds after the lockup period. | 34 | -------------------------------------------------------------------------------- /docs/get-started/plu-ts.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: plu-ts 3 | title: Get Started with `plu-ts` 4 | sidebar_label: plu-ts 5 | description: Get Started with `plu-ts` 6 | --- 7 | 8 | `plu-ts` is a Typescript-embedded smart contract programming language and a transaction creation library. 9 | 10 | ## Installation 11 | 12 | ### Add `plu-ts` as dependency 13 | 14 | To install `plu-ts` you can use `npm` (or the node package manager of your choice) and run the following in you root project. 15 | 16 | ```sh 17 | npm install @harmoniclabs/plu-ts 18 | ``` 19 | 20 | ### Get `plu-ts` from source 21 | 22 | First clone the git repository 23 | 24 | ```sh 25 | git clone https://github.com/HarmonicLabs/plu-ts.git 26 | ``` 27 | 28 | then run `npm install` to set up everything 29 | ```sh 30 | npm install 31 | ``` 32 | 33 | and finally build the project using 34 | ```sh 35 | npm run build 36 | ``` 37 | 38 | the output can be found in the `dist` directory under the project root. 39 | 40 | ## Hello World 41 | 42 | You now have all you need to start your adventure with Typescript smart contracts. Have a look at the [hello world example contract](https://pluts.harmoniclabs.tech/examples/Hello%20World). 43 | 44 | Visit the `plu-ts` website and explore [other examples](https://pluts.harmoniclabs.tech/category/examples). -------------------------------------------------------------------------------- /docs/native-tokens/token-registry/Is-my-token-name-and-ticker-unique-in-the-registry-%3F.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Is my token name and ticker unique in the registry ? 3 | custom_edit_url: null 4 | title: Is my token name and ticker unique in the registry ? 5 | --- 6 | The `subject` value is unique in this registry. The `subject` should be a representation of the assetID which is a unique on-chain identifier. 7 | 8 | The `name` and `ticker` values are not necessarily unique in this registry and are not validated as such. 9 | 10 | For details regarding Native Assets please read through the [developer guide on Native Assets](https://developers.cardano.org/docs/native-tokens/). 11 | ## Token Registry Information 12 | This page was generated automatically from: [https://github.com/cardano-foundation/cardano-token-registry/wiki](https://github.com/cardano-foundation/cardano-token-registry/wiki/Is-my-token-name-and-ticker-unique-in-the-registry-%3F). -------------------------------------------------------------------------------- /docs/native-tokens/token-registry/Where-do-I-register-my-metadata-for-assets-that-exist-on-one-of-the-publicly-available-testnets-e.g.-preview%2C-preprod-environments-only%3F.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Where do I register my metadata for assets that exist on one of the publicly available testnets (e.g. preview, preprod environments) only? 3 | custom_edit_url: null 4 | title: Where do I register my metadata for assets that exist on one of the publicly available testnets (e.g. preview, preprod environments) only? 5 | --- 6 | This repository is the metadata registry for **mainnet** assets only. If you intend to register any metadata for on-chain assets that exist on the publicly available testnets only (e.g. preview and preprod environments) please use the [metadata-registry from IOHK](https://github.com/input-output-hk/metadata-registry-testnet). 7 | ## Token Registry Information 8 | This page was generated automatically from: [https://github.com/cardano-foundation/cardano-token-registry/wiki](https://github.com/cardano-foundation/cardano-token-registry/wiki/Where-do-I-register-my-metadata-for-assets-that-exist-on-one-of-the-publicly-available-testnets-%28e.g.-preview%2C-preprod-environments%29-only%3F). -------------------------------------------------------------------------------- /docs/native-tokens/token-registry/Why-has-my-pull-request-PR-been-closed%3F.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Why has my pull request (PR) been closed? 3 | custom_edit_url: null 4 | title: Why has my pull request (PR) been closed? 5 | --- 6 | If your Pull Requests has failed any of the automated validation tests, it will be closed after a period of time. 7 | 8 | To get more details on why it may be failing these tests, click on the 'Checks' section of your Pull Request and scroll to the relevant failing test. 9 | 10 | Under certain conditions, your Pull Requests may be closed and effectively rejected from the registry even if passing all of the automated validation tests. In this case, please make sure your entry complies with the [Registry Terms of Use](https://github.com/cardano-foundation/cardano-token-registry/blob/master/Registry_Terms_of_Use.md). 11 | 12 | In case of any uncertainties or complaints regarding the treatment of your submission or complaints regarding any existing registry entry, please contact tokenregistry@cardanofoundation.org 13 | ## Token Registry Information 14 | This page was generated automatically from: [https://github.com/cardano-foundation/cardano-token-registry/wiki](https://github.com/cardano-foundation/cardano-token-registry/wiki/Why-has-my-pull-request-%28PR%29-been-closed%3F). -------------------------------------------------------------------------------- /docs/native-tokens/token-registry/Why-hasnt-my-pull-request-PR-been-merged-yet%3F.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_label: Why hasn't my pull request (PR) been merged yet? 3 | custom_edit_url: null 4 | title: Why hasn't my pull request (PR) been merged yet? 5 | --- 6 | Pull Requests are managed by humans and we are doing our best to make this a diligent process: Requests are generally treated from the oldest first; please be patient 🧘‍♂️. 7 | 8 | If your PR is one of the older ones, there might be a few things going on, which should be indicated on the PR itself. Make sure your PR is properly formatted: Each goes through a set of automated tests that check details against the schema. 9 | The status of your validation checks is indicated by: 10 | 11 | **a green checkmark**: means the automatic checks are **passing fine**. 12 | 13 | **a red 'x'**: means the automatic checks are **not passing**. To get more details about why it is failing, click on 'details' in the check section and scroll to the bottom of the resulting page, it will give you more info. 14 | 15 | Although we strive to go over every PR, we typically process the well-formatted / checks-validated PRs first. It is in your best interest to make sure your PR passes the automated checks put in place! 16 | ## Token Registry Information 17 | This page was generated automatically from: [https://github.com/cardano-foundation/cardano-token-registry/wiki](https://github.com/cardano-foundation/cardano-token-registry/wiki/Why-hasn't-my-pull-request-%28PR%29-been-merged-yet%3F). -------------------------------------------------------------------------------- /docs/operate-a-stake-pool/hardware-requirements.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: hardware-requirements 3 | title: Minimum hardware requirements to run a stake pool 4 | sidebar_label: Hardware requirements 5 | description: Minimum hardware requirements to run a stake pool 6 | image: ../img/og-developer-portal.png 7 | --- 8 | The latest technical specifications and supported platforms can be found on the [Cardano Node release page](https://github.com/IntersectMBO/cardano-node/releases). 9 | 10 | Currently the following specifications are recommended on Mainnet: 11 | 12 | - Servers: 1 for block producer node + at least 2 for relay nodes 13 | - CPU: An Intel or AMD x86 processor with two or more cores at 2GHz or faster 14 | - Memory: 24GB of RAM 15 | - Storage: 150GB of free storage (250GB recommended for future growth) 16 | - Operating system: 64-bit Linux (Ubuntu 18.04+, Mint 19.3+, Debian 10.3+) 17 | - Broadband: a good network connection with about 1 GB of bandwidth per hour on a public IP4 address 18 | - [Air-gapped environment](/docs/get-started/air-gap.md) for key security 19 | 20 | For testnet pools, some requirements are smaller: 21 | - Memory: 4GB of RAM 22 | - Storage: 20GB of free storage 23 | - Air-gapped environment not required 24 | 25 | -------------------------------------------------------------------------------- /docs/operate-a-stake-pool/monitoring-gLiveView.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: monitoring-gLiveView 3 | title: Monitoring with gLiveView 4 | sidebar_label: Monitoring with gLiveView 5 | description: "Monitoring the Node (gLiveView)" 6 | image: ../img/og/og-developer-portal.png 7 | --- 8 | Guild LiveView, often known as gLiveView, is a local bash CLI monitoring utility with an easy-to-use interface for monitoring node status. It connects to the locally running node via the specified EKG/Prometheus node endpoints to collect and show node metrics, network information, and other information in real time. The program recognizes whether the node is being used as a relay or a block producer and adjusts the output accordingly. 9 | 10 | To install gLiveView: 11 | 12 | 13 | 1. Download the latest Guild LiveView script files, type: 14 | 15 | ```shell 16 | curl -s -o gLiveView.sh https://raw.githubusercontent.com/cardano-community/guild-operators/master/scripts/cnode-helper-scripts/gLiveView.sh 17 | curl -s -o env https://raw.githubusercontent.com/cardano-community/guild-operators/master/scripts/cnode-helper-scripts/env 18 | ``` 19 | 20 | 2. To set file permissions on the `gLiveView.sh` file that you downloaded in step 1, type: 21 | 22 | ```shell 23 | chmod 755 gLiveView.sh 24 | ``` 25 | 26 | For most setups, it's enough to set `CNODE_PORT` in the `env` file. 27 | 28 | 29 | 30 | :::note 31 | Detailed guide and more information can be found on [Guild Operators Page](https://cardano-community.github.io/guild-operators/Scripts/gliveview/) 32 | ::: 33 | -------------------------------------------------------------------------------- /docs/portal-signup.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: portal-signup 3 | title: Signup 4 | sidebar_label: Signup 5 | description: Signup for the Cardano developer portal. 6 | image: /img/og/og-developer-portal.png 7 | --- 8 | 9 | ![img](../static/img/logo.svg) 10 | 11 | You can sign up here 12 | -------------------------------------------------------------------------------- /examples/listen_payments/cli/dotnet/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": ".NET Core Launch (console)", 9 | "type": "coreclr", 10 | "request": "launch", 11 | "preLaunchTask": "build", 12 | "program": "${workspaceFolder}/bin/Debug/net6.0/ADAPaymentsPolling.dll", 13 | "args": [], 14 | "cwd": "${workspaceFolder}", 15 | "stopAtEntry": false, 16 | "console": "integratedTerminal" 17 | } 18 | 19 | ] 20 | } -------------------------------------------------------------------------------- /examples/listen_payments/cli/dotnet/.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | { 2 | // See https://go.microsoft.com/fwlink/?LinkId=733558 3 | // for the documentation about the tasks.json format 4 | "version": "2.0.0", 5 | "tasks": [ 6 | { 7 | "label": "build", 8 | "command": "dotnet", 9 | "type": "shell", 10 | "args": [ 11 | "build", 12 | // Ask dotnet build to generate full paths for file names. 13 | "/property:GenerateFullPaths=true", 14 | // Do not generate summary otherwise it leads to duplicate errors in Problems panel 15 | "/consoleloggerparameters:NoSummary" 16 | ], 17 | "group": "build", 18 | "presentation": { 19 | "reveal": "silent" 20 | }, 21 | "problemMatcher": "$msCompile" 22 | } 23 | ] 24 | } -------------------------------------------------------------------------------- /examples/listen_payments/cli/dotnet/ADAPaymentsPolling.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | net6.0 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /examples/listen_payments/cli/dotnet/Program.cs: -------------------------------------------------------------------------------- 1 | using System.Linq; 2 | using SimpleExec; // dotnet add package SimpleExec --version 7.0.0 3 | 4 | // Path to the cardano-cli binary or use the global one 5 | const string CARDANO_CLI_PATH = "cardano-cli"; 6 | // The `testnet` identifier number 7 | const int CARDANO_NETWORK_MAGIC = 1097911063; 8 | // The directory where we store our payment keys 9 | // assuming our current directory context is /home/user/receive-ada-sample 10 | const string CARDANO_KEYS_DIR = "keys"; 11 | // The total payment we expect in lovelace unit 12 | const long TOTAL_EXPECTED_LOVELACE = 1000000; 13 | 14 | // Read wallet address string value from payment.addr file 15 | var walletAddress = await System.IO.File.ReadAllTextAsync($"{CARDANO_KEYS_DIR}/payment1.addr"); 16 | 17 | // We use the SimpleExec library to execute cardano-cli shell command to query the wallet UTXO and read the output data 18 | var rawUtxoTable = await Command.ReadAsync(CARDANO_CLI_PATH, string.Join(" ", 19 | "query", "utxo", 20 | "--testnet-magic", CARDANO_NETWORK_MAGIC, 21 | "--address", walletAddress 22 | ), noEcho: true); 23 | 24 | // Calculate total lovelace of the UTXO(s) inside the wallet address 25 | var utxoTableRows = rawUtxoTable.Trim().Split("\n"); 26 | var totalLovelaceRecv = 0L; 27 | var isPaymentComplete = false; 28 | 29 | foreach(var row in utxoTableRows.Skip(2)){ 30 | var cells = row.Split(" ").Where(c => c.Trim() != string.Empty); 31 | totalLovelaceRecv += long.Parse(cells.ElementAt(2)); 32 | } 33 | 34 | // Determine if the total lovelace received is more than or equal to 35 | // the total expected lovelace and displaying the results. 36 | isPaymentComplete = totalLovelaceRecv >= TOTAL_EXPECTED_LOVELACE; 37 | 38 | System.Console.WriteLine($"Total Received: {totalLovelaceRecv} LOVELACE"); 39 | System.Console.WriteLine($"Expected Payment: {TOTAL_EXPECTED_LOVELACE} LOVELACE"); 40 | System.Console.WriteLine($"Payment Complete: {(isPaymentComplete ? "✅":"❌")}"); -------------------------------------------------------------------------------- /examples/listen_payments/cli/js/checkPayment.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Filename: checkPayment.js 3 | */ 4 | 5 | import * as fs from 'fs'; 6 | // Please add this dependency using npm install node-cmd 7 | import cmd from 'node-cmd'; 8 | 9 | // Path to the cardano-cli binary or use the global one 10 | const CARDANO_CLI_PATH = "cardano-cli"; 11 | // The `testnet` identifier number 12 | const CARDANO_NETWORK_MAGIC = 1097911063; 13 | // The directory where we store our payment keys 14 | // assuming our current directory context is /home/user/receive-ada-sample/receive-ada-sample 15 | const CARDANO_KEYS_DIR = "keys"; 16 | // The imaginary total payment we expect in lovelace unit 17 | const TOTAL_EXPECTED_LOVELACE = 1000000; 18 | 19 | const walletAddress = fs.readFileSync(`${CARDANO_KEYS_DIR}/payment.addr`).toString(); 20 | 21 | // We use the node-cmd npm library to execute shell commands and read the output data 22 | const rawUtxoTable = cmd.runSync([ 23 | CARDANO_CLI_PATH, 24 | "query", "utxo", 25 | "--testnet-magic", CARDANO_NETWORK_MAGIC, 26 | "--address", walletAddress 27 | ].join(" ")); 28 | 29 | // Calculate total lovelace of the UTXO(s) inside the wallet address 30 | const utxoTableRows = rawUtxoTable.data.trim().split('\n'); 31 | let totalLovelaceRecv = 0; 32 | let isPaymentComplete = false; 33 | 34 | for(let x = 2; x < utxoTableRows.length; x++) { 35 | const cells = utxoTableRows[x].split(" ").filter(i => i); 36 | totalLovelaceRecv += parseInt(cells[2]); 37 | } 38 | 39 | // Determine if the total lovelace received is more than or equal to 40 | // the total expected lovelace and displaying the results. 41 | isPaymentComplete = totalLovelaceRecv >= TOTAL_EXPECTED_LOVELACE; 42 | 43 | console.log(`Total Received: ${totalLovelaceRecv} LOVELACE`); 44 | console.log(`Expected Payment: ${TOTAL_EXPECTED_LOVELACE} LOVELACE`); 45 | console.log(`Payment Complete: ${(isPaymentComplete ? "✅" : "❌")}`); -------------------------------------------------------------------------------- /examples/listen_payments/cli/js/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ada-payments-polling", 3 | "version": "0.0.1", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "ada-payments-polling", 9 | "version": "0.0.1", 10 | "license": "ISC", 11 | "dependencies": { 12 | "node-cmd": "^4.0.0" 13 | } 14 | }, 15 | "node_modules/node-cmd": { 16 | "version": "4.0.0", 17 | "resolved": "https://registry.npmjs.org/node-cmd/-/node-cmd-4.0.0.tgz", 18 | "integrity": "sha512-3OHy8KI8MuwADyugQRZBsaqe3c0r3yxQSoLsDBVk7vAjPmfG01512MPBQjfmBJxrH+2qURbiBf/ZyoimrhdA6A==", 19 | "engines": { 20 | "node": ">=6.4.0" 21 | } 22 | } 23 | }, 24 | "dependencies": { 25 | "node-cmd": { 26 | "version": "4.0.0", 27 | "resolved": "https://registry.npmjs.org/node-cmd/-/node-cmd-4.0.0.tgz", 28 | "integrity": "sha512-3OHy8KI8MuwADyugQRZBsaqe3c0r3yxQSoLsDBVk7vAjPmfG01512MPBQjfmBJxrH+2qURbiBf/ZyoimrhdA6A==" 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /examples/listen_payments/cli/js/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ada-payments-polling", 3 | "version": "0.0.1", 4 | "description": "An example on how to poll ada wallet for any UTXO changes", 5 | "main": "checkPayment.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "Clark Alesna", 10 | "license": "ISC", 11 | "type": "module", 12 | "dependencies": { 13 | "node-cmd": "^4.0.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /examples/listen_payments/cli/python/checkPayment.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | import os 3 | import subprocess 4 | 5 | CARDANO_CLI_PATH = "cardano-cli" 6 | CARDANO_NETWORK_MAGIC = 1097911063 7 | CARDANO_KEYS_DIR = "keys" 8 | TOTAL_EXPECTED_LOVELACE = 1000000 9 | 10 | with open(os.path.join(CARDANO_KEYS_DIR, "payment.addr"), 'r') as file: 11 | walletAddress = file.read() 12 | 13 | rawUtxoTable = subprocess.check_output([ 14 | CARDANO_CLI_PATH, 15 | 'query', 'utxo', 16 | '--testnet-magic', str(CARDANO_NETWORK_MAGIC), 17 | '--address', walletAddress]) 18 | 19 | utxoTableRows = rawUtxoTable.strip().splitlines() 20 | totalLovelaceRecv = 0 21 | isPaymentComplete = False 22 | 23 | for x in range(2, len(utxoTableRows)): 24 | cells = utxoTableRows[x].split() 25 | totalLovelaceRecv += int(cells[2]) 26 | 27 | isPaymentComplete = totalLovelaceRecv >= TOTAL_EXPECTED_LOVELACE 28 | 29 | print("Total Received: %s LOVELACE" % totalLovelaceRecv) 30 | print("Expected Payment: %s LOVELACE" % TOTAL_EXPECTED_LOVELACE) 31 | print("Payment Complete: %s" % {True: "✅", False: "❌"} [isPaymentComplete]) -------------------------------------------------------------------------------- /examples/listen_payments/wallet/README.md: -------------------------------------------------------------------------------- 1 | # README 2 | 3 | Please install the vscode extension [REST BOOK](https://marketplace.visualstudio.com/items?itemName=tanhakabir.rest-book) to use the cardano-wallet.restbook file. -------------------------------------------------------------------------------- /examples/nowpayments-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/examples/nowpayments-white.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "devportal", 3 | "version": "0.0.0", 4 | "private": true, 5 | "scripts": { 6 | "docusaurus": "docusaurus", 7 | "start": "docusaurus start", 8 | "build": "ts-node scripts/rust-library.ts && docusaurus build", 9 | "swizzle": "docusaurus swizzle", 10 | "deploy": "docusaurus deploy", 11 | "serve": "docusaurus serve", 12 | "clear": "docusaurus clear" 13 | }, 14 | "dependencies": { 15 | "@docusaurus/core": "3.6.3", 16 | "@docusaurus/plugin-client-redirects": "^3.6.3", 17 | "@docusaurus/plugin-content-docs": "^3.6.3", 18 | "@docusaurus/plugin-ideal-image": "^3.6.3", 19 | "@docusaurus/preset-classic": "3.6.3", 20 | "@docusaurus/theme-mermaid": "^3.6.3", 21 | "@docusaurus/theme-search-algolia": "3.6.3", 22 | "@mdx-js/react": "^3.1.0", 23 | "@popperjs/core": "^2.11.2", 24 | "clsx": "^1.1.1", 25 | "node-fetch": "^2.6.7", 26 | "react": "^18.0.0", 27 | "react-dom": "^18.0.0", 28 | "react-popper": "^2.2.5", 29 | "ts-node": "^10.4.0", 30 | "typescript": "^4.5.3" 31 | }, 32 | "browserslist": { 33 | "production": [ 34 | ">0.5%", 35 | "not dead", 36 | "not op_mini all" 37 | ], 38 | "development": [ 39 | "last 1 chrome version", 40 | "last 1 firefox version", 41 | "last 1 safari version" 42 | ] 43 | }, 44 | "devDependencies": { 45 | "@types/node-fetch": "^2.5.12" 46 | }, 47 | "workspaces": [ 48 | "packages/*" 49 | ] 50 | } 51 | -------------------------------------------------------------------------------- /scripts/constants.ts: -------------------------------------------------------------------------------- 1 | // Rust Library constants 2 | const rl_static_resource_path: string = "/tree/master/doc/getting-started"; 3 | const rl_docs_path: string = "./docs/get-started/cardano-serialization-lib"; 4 | const rl_repo_base_url: string = 5 | "https://github.com/Emurgo/cardano-serialization-lib"; 6 | const rl_raw_base_index_url: string = 7 | "https://raw.githubusercontent.com/Emurgo/cardano-serialization-lib/master/doc/index.rst"; 8 | const rl_repo_raw_base_url: string = 9 | "https://raw.githubusercontent.com/Emurgo/cardano-serialization-lib/master/doc/getting-started/"; 10 | 11 | // Token Registry constants 12 | const tr_docs_path: string = "./docs/native-tokens/token-registry"; 13 | const tr_github_wiki: string = 14 | "https://github.com/cardano-foundation/cardano-token-registry/wiki"; 15 | const tr_url: string = 16 | "https://github.com/cardano-foundation/cardano-token-registry/blob/master/"; 17 | const tr_raw_wiki_url: string = 18 | "https://raw.githubusercontent.com/wiki/cardano-foundation/cardano-token-registry/"; 19 | const tr_overview_url: string = 20 | "https://raw.githubusercontent.com/cardano-foundation/cardano-token-registry/master/README.md"; 21 | 22 | // General constants 23 | const custom_edit_url = "\ncustom_edit_url: null" 24 | 25 | export { 26 | rl_static_resource_path, 27 | rl_docs_path, 28 | rl_repo_base_url, 29 | rl_raw_base_index_url, 30 | rl_repo_raw_base_url, 31 | tr_docs_path, 32 | tr_github_wiki, 33 | tr_url, 34 | tr_raw_wiki_url, 35 | tr_overview_url, 36 | custom_edit_url, 37 | }; 38 | -------------------------------------------------------------------------------- /searchconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "index_name": "developer-portal", 3 | "sitemap_urls": [ 4 | "https://developers.cardano.org/sitemap.xml" 5 | ], 6 | "sitemap_alternate_links": true, 7 | "stop_urls": [], 8 | "selectors": { 9 | "lvl0": { 10 | "selector": "(//ul[contains(@class,'menu__list')]//a[contains(@class, 'menu__link menu__link--sublist menu__link--active')]/text() | //nav[contains(@class, 'navbar')]//a[contains(@class, 'navbar__link--active')]/text())[last()]", 11 | "type": "xpath", 12 | "global": true, 13 | "default_value": "Documentation" 14 | }, 15 | "lvl1": "header h1", 16 | "lvl2": "article h2", 17 | "lvl3": "article h3", 18 | "lvl4": "article h4", 19 | "lvl5": "article h5, article td:first-child", 20 | "lvl6": "article h6", 21 | "text": "article p, article li, article td:last-child" 22 | }, 23 | "strip_chars": " .,;:#", 24 | "custom_settings": { 25 | "separatorsToIndex": "_", 26 | "attributesForFaceting": [ 27 | "language", 28 | "version", 29 | "type", 30 | "docusaurus_tag" 31 | ], 32 | "attributesToRetrieve": [ 33 | "hierarchy", 34 | "content", 35 | "anchor", 36 | "url", 37 | "url_without_anchor", 38 | "type" 39 | ] 40 | }, 41 | "conversation_id": [ 42 | "1417357410" 43 | ], 44 | "nb_hits": 900 45 | } -------------------------------------------------------------------------------- /src/aiken.prism.lang.js: -------------------------------------------------------------------------------- 1 | Prism.languages.aiken = { 2 | 'string': /".*"/, 3 | 'comment': /\/\/.*/, 4 | 'number': /(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:E[+-]?\d+)?/i, 5 | 'boolean': /\btrue|false\b/, 6 | 'class-name': /\b[A-Z]\w*\b/, 7 | 'punctuation': /\./, 8 | 'function-definition': { 9 | pattern: /\b(fn|test\s)[^(]*/, 10 | alias: 'function', 11 | lookbehind: true 12 | }, 13 | 'variable': { 14 | pattern: /\b(let\s)[^=]*/, 15 | lookbehind: true 16 | }, 17 | 'keyword': /\b(if|else|fn|let|when|is|use|pub|type|opaque|const|todo|assert|check|test)\b/, 18 | 'operator': [ 19 | /&&|\\|\|/, 20 | /\+|\-|\/|\*|%/, 21 | /<=|>=|==|!=|<|>/, 22 | /\.\./, 23 | /\|>/, 24 | /->/ 25 | ] 26 | }; 27 | -------------------------------------------------------------------------------- /src/components/BackgroundWrapper/index.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import clsx from "clsx"; 3 | import styles from "./styles.module.css"; 4 | import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; 5 | import Link from "@docusaurus/Link"; 6 | import useBaseUrl from "@docusaurus/useBaseUrl"; 7 | 8 | // 9 | // This component: 10 | // wrap components in a background style that can be selected 11 | // most of the time you do not want to put a as a child of 12 | // while it is usually fine to have a 13 | 14 | export default function BackgroundWrapper({ children, backgroundType }) { 15 | 16 | 17 | // this version of the BackgroundWrapper only uses the ada background 18 | // see https://cardano.org/docs/components/background-wrapper for details 19 | let wrapperClassName = styles.backgroundAda; 20 | 21 | return
{children}
; 22 | } 23 | -------------------------------------------------------------------------------- /src/components/BackgroundWrapper/styles.module.css: -------------------------------------------------------------------------------- 1 | 2 | .backgroundAda { 3 | position: relative; 4 | background-size: contain; 5 | background-repeat: no-repeat; 6 | padding: 20px; 7 | z-index: 0; 8 | /*overflow: hidden;*/ /* no overflow to let it bleed */ 9 | } 10 | 11 | .backgroundAda:before { 12 | content: "₳"; 13 | z-index: -1; 14 | position: absolute; 15 | top: -15rem; 16 | right: 15vw; 17 | opacity: 0.07; 18 | font-size: 31rem; /* adjust size of the A */ 19 | padding-top: 0px; 20 | margin-top: 0px; 21 | transform: rotate(7deg); 22 | color: #1f5cf8; 23 | } 24 | 25 | [data-theme="dark"] .backgroundAda:before { 26 | color: #98b7f2; /* dark mode color for the A */ 27 | } 28 | 29 | .backgroundAda:before { 30 | pointer-events: none; 31 | } -------------------------------------------------------------------------------- /src/components/buttons/openStickyButton.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import styles from "./styles.module.css"; 3 | 4 | export default function openStickyButton() { 5 | return ( 6 | 7 | 13 | 14 | ); 15 | } 16 | -------------------------------------------------------------------------------- /src/components/docs/HydraBuildList/README.txt: -------------------------------------------------------------------------------- 1 | This code appears to be permanently deprecated by: 2 | https://github.com/cardano-foundation/developer-portal/issues/871 3 | https://github.com/IntersectMBO/cardano-node/issues/4688 4 | 5 | and is now being removed from the one documentation file which references it: 6 | docs/get-started/cardano-node/installing-cardano-node.md.md 7 | -------------------------------------------------------------------------------- /src/components/showcase/ShowcaseCheckbox/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | import React from "react"; 9 | import clsx from "clsx"; 10 | 11 | import styles from "./styles.module.css"; 12 | 13 | function ShowcaseCheckbox({ 14 | className, 15 | name, 16 | label, 17 | onChange, 18 | checked, 19 | ...props 20 | }) { 21 | const id = `showcase_checkbox_id_${name};`; 22 | return ( 23 |
24 | 31 | 32 |
33 | ); 34 | } 35 | 36 | export default ShowcaseCheckbox; 37 | -------------------------------------------------------------------------------- /src/components/showcase/ShowcaseCheckbox/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .checkboxContainer { 9 | display: inline; 10 | padding: 5px; 11 | user-select: none; 12 | } 13 | 14 | .checkboxContainer, 15 | .checkboxContainer > * { 16 | cursor: pointer; 17 | } 18 | 19 | .checkboxContainer label { 20 | margin-left: 0.5rem; 21 | text-overflow: ellipsis; 22 | } 23 | 24 | -------------------------------------------------------------------------------- /src/components/showcase/ShowcaseTagSelect/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .checkboxLabel:hover { 9 | opacity: 1; 10 | box-shadow: 0 0 2px 1px var(--ifm-color-secondary-darkest); 11 | } 12 | 13 | .screenReader { 14 | border: 0; 15 | clip: rect(0 0 0 0); 16 | clip-path: polygon(0 0, 0 0, 0 0); 17 | height: 1px; 18 | margin: -1px; 19 | overflow: hidden; 20 | padding: 0; 21 | position: absolute; 22 | width: 10px; 23 | white-space: nowrap; 24 | } 25 | 26 | input[type='checkbox'] + .checkboxLabel { 27 | display: flex; 28 | align-items: center; 29 | cursor: pointer; 30 | line-height: 1.5; 31 | border-radius: 4px; 32 | padding: 0.275rem 0.8rem; 33 | opacity: 0.85; 34 | transition: opacity 200ms ease-out; 35 | border: 2px solid var(--ifm-color-secondary-darkest); 36 | } 37 | 38 | input:focus-visible + .checkboxLabel { 39 | outline: 2px solid currentColor; 40 | } 41 | 42 | input:checked + .checkboxLabel { 43 | opacity: 0.9; 44 | background-color: var(--site-color-checkbox-checked-bg); 45 | border: 2px solid var(--ifm-color-primary-darkest); 46 | } 47 | 48 | input:checked + .checkboxLabel:hover { 49 | opacity: 0.75; 50 | box-shadow: 0 0 2px 1px var(--ifm-color-primary-dark); 51 | } -------------------------------------------------------------------------------- /src/components/showcase/ShowcaseTooltip/styles.module.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Facebook, Inc. and its affiliates. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | .tooltip { 9 | border-radius: 4px; 10 | padding: 4px 8px; 11 | color: var(--site-color-tooltip); 12 | background: var(--site-color-tooltip-background); 13 | font-size: 0.8rem; 14 | z-index: 500; 15 | line-height: 1.4; 16 | font-weight: 500; 17 | max-width: 300px; 18 | opacity: 0.92; 19 | } 20 | 21 | .tooltipArrow { 22 | visibility: hidden; 23 | } 24 | 25 | .tooltipArrow, 26 | .tooltipArrow::before { 27 | position: absolute; 28 | width: 8px; 29 | height: 8px; 30 | background: inherit; 31 | } 32 | 33 | .tooltipArrow::before { 34 | visibility: visible; 35 | content: ''; 36 | transform: rotate(45deg); 37 | } 38 | 39 | .tooltip[data-popper-placement^='top'] > .tooltipArrow { 40 | bottom: -4px; 41 | } 42 | 43 | .tooltip[data-popper-placement^='bottom'] > .tooltipArrow { 44 | top: -4px; 45 | } -------------------------------------------------------------------------------- /src/data/builder-tools/IDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/IDE.png -------------------------------------------------------------------------------- /src/data/builder-tools/acca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/acca.png -------------------------------------------------------------------------------- /src/data/builder-tools/adder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/adder.png -------------------------------------------------------------------------------- /src/data/builder-tools/aiken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/aiken.png -------------------------------------------------------------------------------- /src/data/builder-tools/ansible-cardano-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/ansible-cardano-node.png -------------------------------------------------------------------------------- /src/data/builder-tools/argus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/argus.png -------------------------------------------------------------------------------- /src/data/builder-tools/atlas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/atlas.jpg -------------------------------------------------------------------------------- /src/data/builder-tools/automint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/automint.png -------------------------------------------------------------------------------- /src/data/builder-tools/bakrypt-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/bakrypt-io.png -------------------------------------------------------------------------------- /src/data/builder-tools/bech32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/bech32.png -------------------------------------------------------------------------------- /src/data/builder-tools/blockfrost-crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/blockfrost-crystal.png -------------------------------------------------------------------------------- /src/data/builder-tools/blockfrost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/blockfrost.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-addresses-typescript-binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-addresses-typescript-binding.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-addresses.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-c.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-cli.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-client-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-client-lib.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-connect-with-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-connect-with-wallet.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-db-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-db-sync.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-graphql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-graphql.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-js-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-js-sdk.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-kit-crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-kit-crystal.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-light-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-light-tools.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-metadata-oracle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-metadata-oracle.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-multiplatform-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-multiplatform-lib.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-node-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-node-api.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-node-audit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-node-audit.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-python.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-rosetta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-rosetta.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-serialization-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-serialization-lib.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-signer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-signer.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-snapshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-snapshots.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-transaction-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-transaction-lib.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-verify-datasignature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-verify-datasignature.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-wallet-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-wallet-connector.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-wallet-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-wallet-interface.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-wallet-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-wallet-js.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardano-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardano-wallet.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardanocli-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardanocli-js.png -------------------------------------------------------------------------------- /src/data/builder-tools/cardanosharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cardanosharp.png -------------------------------------------------------------------------------- /src/data/builder-tools/carp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/carp.png -------------------------------------------------------------------------------- /src/data/builder-tools/cfd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cfd.png -------------------------------------------------------------------------------- /src/data/builder-tools/clg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/clg.png -------------------------------------------------------------------------------- /src/data/builder-tools/cnft9000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cnft9000.png -------------------------------------------------------------------------------- /src/data/builder-tools/cscli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/cscli.png -------------------------------------------------------------------------------- /src/data/builder-tools/dandelion-apis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/dandelion-apis.png -------------------------------------------------------------------------------- /src/data/builder-tools/dconecrypto-webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/dconecrypto-webhook.png -------------------------------------------------------------------------------- /src/data/builder-tools/demeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/demeter.png -------------------------------------------------------------------------------- /src/data/builder-tools/dotare-cardano-delegation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/dotare-cardano-delegation.png -------------------------------------------------------------------------------- /src/data/builder-tools/fracada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/fracada.png -------------------------------------------------------------------------------- /src/data/builder-tools/frankenwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/frankenwallet.png -------------------------------------------------------------------------------- /src/data/builder-tools/gOuroboros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/gOuroboros.png -------------------------------------------------------------------------------- /src/data/builder-tools/go-cardano-serialisation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/go-cardano-serialisation.png -------------------------------------------------------------------------------- /src/data/builder-tools/guild-operators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/guild-operators.png -------------------------------------------------------------------------------- /src/data/builder-tools/heidrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/heidrun.png -------------------------------------------------------------------------------- /src/data/builder-tools/helioslang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/helioslang.png -------------------------------------------------------------------------------- /src/data/builder-tools/hydra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/hydra.png -------------------------------------------------------------------------------- /src/data/builder-tools/imperator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/imperator.png -------------------------------------------------------------------------------- /src/data/builder-tools/kogmios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/kogmios.png -------------------------------------------------------------------------------- /src/data/builder-tools/koios-api-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/koios-api-python.png -------------------------------------------------------------------------------- /src/data/builder-tools/koios-java-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/koios-java-client.png -------------------------------------------------------------------------------- /src/data/builder-tools/koios-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/koios-python.png -------------------------------------------------------------------------------- /src/data/builder-tools/koios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/koios.png -------------------------------------------------------------------------------- /src/data/builder-tools/kupo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/kupo.png -------------------------------------------------------------------------------- /src/data/builder-tools/leader-slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/leader-slot.png -------------------------------------------------------------------------------- /src/data/builder-tools/ledgersync.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/ledgersync.jpg -------------------------------------------------------------------------------- /src/data/builder-tools/libada-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/libada-go.png -------------------------------------------------------------------------------- /src/data/builder-tools/lucid-evolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/lucid-evolution.png -------------------------------------------------------------------------------- /src/data/builder-tools/lucid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/lucid.png -------------------------------------------------------------------------------- /src/data/builder-tools/maestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/maestro.png -------------------------------------------------------------------------------- /src/data/builder-tools/marlowe-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/marlowe-playground.png -------------------------------------------------------------------------------- /src/data/builder-tools/mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/mesh.png -------------------------------------------------------------------------------- /src/data/builder-tools/mumak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/mumak.png -------------------------------------------------------------------------------- /src/data/builder-tools/nft-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/nft-playground.png -------------------------------------------------------------------------------- /src/data/builder-tools/nft-vending-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/nft-vending-machine.png -------------------------------------------------------------------------------- /src/data/builder-tools/nftcdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/nftcdn.png -------------------------------------------------------------------------------- /src/data/builder-tools/ogmios-java-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/ogmios-java-client.png -------------------------------------------------------------------------------- /src/data/builder-tools/ogmios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/ogmios.png -------------------------------------------------------------------------------- /src/data/builder-tools/opshin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/opshin.png -------------------------------------------------------------------------------- /src/data/builder-tools/oura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/oura.png -------------------------------------------------------------------------------- /src/data/builder-tools/pallas-dotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/pallas-dotnet.png -------------------------------------------------------------------------------- /src/data/builder-tools/pallas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/pallas.png -------------------------------------------------------------------------------- /src/data/builder-tools/pdr_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/pdr_bot.png -------------------------------------------------------------------------------- /src/data/builder-tools/pg_cardano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/pg_cardano.png -------------------------------------------------------------------------------- /src/data/builder-tools/pirouette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/pirouette.png -------------------------------------------------------------------------------- /src/data/builder-tools/pix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/pix.png -------------------------------------------------------------------------------- /src/data/builder-tools/plu-ts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/plu-ts.png -------------------------------------------------------------------------------- /src/data/builder-tools/plutarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/plutarch.png -------------------------------------------------------------------------------- /src/data/builder-tools/plutip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/plutip.png -------------------------------------------------------------------------------- /src/data/builder-tools/pluto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/pluto.png -------------------------------------------------------------------------------- /src/data/builder-tools/plutonomicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/plutonomicon.png -------------------------------------------------------------------------------- /src/data/builder-tools/plutus-extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/plutus-extra.png -------------------------------------------------------------------------------- /src/data/builder-tools/plutus-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/plutus-playground.png -------------------------------------------------------------------------------- /src/data/builder-tools/potential-robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/potential-robot.png -------------------------------------------------------------------------------- /src/data/builder-tools/pycardano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/pycardano.png -------------------------------------------------------------------------------- /src/data/builder-tools/rewardcalc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/rewardcalc.jpg -------------------------------------------------------------------------------- /src/data/builder-tools/scrolls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/scrolls.png -------------------------------------------------------------------------------- /src/data/builder-tools/spo-scripts-gitmachtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/spo-scripts-gitmachtl.png -------------------------------------------------------------------------------- /src/data/builder-tools/token-registry-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/token-registry-api.png -------------------------------------------------------------------------------- /src/data/builder-tools/typhonjs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/typhonjs.jpg -------------------------------------------------------------------------------- /src/data/builder-tools/u5c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/u5c.png -------------------------------------------------------------------------------- /src/data/builder-tools/whisky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/whisky.png -------------------------------------------------------------------------------- /src/data/builder-tools/xogmios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/xogmios.png -------------------------------------------------------------------------------- /src/data/builder-tools/yaci-devkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/yaci-devkit.png -------------------------------------------------------------------------------- /src/data/builder-tools/zhuli.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/builder-tools/zhuli.jpg -------------------------------------------------------------------------------- /src/data/showcase/Nio_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/Nio_app.png -------------------------------------------------------------------------------- /src/data/showcase/aada-finance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/aada-finance.png -------------------------------------------------------------------------------- /src/data/showcase/adadice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/adadice.png -------------------------------------------------------------------------------- /src/data/showcase/adahandle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/adahandle.png -------------------------------------------------------------------------------- /src/data/showcase/adalite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/adalite.png -------------------------------------------------------------------------------- /src/data/showcase/adam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/adam.png -------------------------------------------------------------------------------- /src/data/showcase/adastat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/adastat.png -------------------------------------------------------------------------------- /src/data/showcase/adatools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/adatools.png -------------------------------------------------------------------------------- /src/data/showcase/adazoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/adazoo.png -------------------------------------------------------------------------------- /src/data/showcase/aeoniumsky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/aeoniumsky.png -------------------------------------------------------------------------------- /src/data/showcase/atomicwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/atomicwallet.png -------------------------------------------------------------------------------- /src/data/showcase/balance-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/balance-analytics.png -------------------------------------------------------------------------------- /src/data/showcase/begin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/begin.png -------------------------------------------------------------------------------- /src/data/showcase/book-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/book-token.png -------------------------------------------------------------------------------- /src/data/showcase/buildingoncardano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/buildingoncardano.png -------------------------------------------------------------------------------- /src/data/showcase/buildoncardano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/buildoncardano.png -------------------------------------------------------------------------------- /src/data/showcase/cardahub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardahub.png -------------------------------------------------------------------------------- /src/data/showcase/cardano-academy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardano-academy.jpg -------------------------------------------------------------------------------- /src/data/showcase/cardano-blockchain-insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardano-blockchain-insights.png -------------------------------------------------------------------------------- /src/data/showcase/cardano-budget-proposals.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardano-budget-proposals.jpg -------------------------------------------------------------------------------- /src/data/showcase/cardano-studio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardano-studio.png -------------------------------------------------------------------------------- /src/data/showcase/cardano-tools.io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardano-tools.io.png -------------------------------------------------------------------------------- /src/data/showcase/cardanoassets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardanoassets.png -------------------------------------------------------------------------------- /src/data/showcase/cardanocube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardanocube.png -------------------------------------------------------------------------------- /src/data/showcase/cardanoexplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardanoexplorer.png -------------------------------------------------------------------------------- /src/data/showcase/cardanokidz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardanokidz.png -------------------------------------------------------------------------------- /src/data/showcase/cardanoscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardanoscan.png -------------------------------------------------------------------------------- /src/data/showcase/cardanoupdates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardanoupdates.png -------------------------------------------------------------------------------- /src/data/showcase/cardanowall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardanowall.png -------------------------------------------------------------------------------- /src/data/showcase/cardanowarriors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardanowarriors.png -------------------------------------------------------------------------------- /src/data/showcase/cardastation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cardastation.png -------------------------------------------------------------------------------- /src/data/showcase/ccportal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/ccportal.jpg -------------------------------------------------------------------------------- /src/data/showcase/cexplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cexplorer.png -------------------------------------------------------------------------------- /src/data/showcase/cf-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cf-explorer.png -------------------------------------------------------------------------------- /src/data/showcase/chainport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/chainport.png -------------------------------------------------------------------------------- /src/data/showcase/changwatch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/changwatch.jpg -------------------------------------------------------------------------------- /src/data/showcase/charli3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/charli3.jpg -------------------------------------------------------------------------------- /src/data/showcase/clay-mates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/clay-mates.png -------------------------------------------------------------------------------- /src/data/showcase/cnftjungle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cnftjungle.png -------------------------------------------------------------------------------- /src/data/showcase/cnftlab-party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cnftlab-party.png -------------------------------------------------------------------------------- /src/data/showcase/cotiadapay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/cotiadapay.png -------------------------------------------------------------------------------- /src/data/showcase/coto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/coto.png -------------------------------------------------------------------------------- /src/data/showcase/daedalus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/daedalus.png -------------------------------------------------------------------------------- /src/data/showcase/danogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/danogo.png -------------------------------------------------------------------------------- /src/data/showcase/dapps-on-cardano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/dapps-on-cardano.png -------------------------------------------------------------------------------- /src/data/showcase/deadpxlz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/deadpxlz.png -------------------------------------------------------------------------------- /src/data/showcase/dexhunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/dexhunter.png -------------------------------------------------------------------------------- /src/data/showcase/do-it-with-lovelace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/do-it-with-lovelace.png -------------------------------------------------------------------------------- /src/data/showcase/dripdropz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/dripdropz.png -------------------------------------------------------------------------------- /src/data/showcase/eternl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/eternl.jpg -------------------------------------------------------------------------------- /src/data/showcase/eutxo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/eutxo.png -------------------------------------------------------------------------------- /src/data/showcase/finitum-bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/finitum-bridge.png -------------------------------------------------------------------------------- /src/data/showcase/flintwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/flintwallet.png -------------------------------------------------------------------------------- /src/data/showcase/flipr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/flipr.png -------------------------------------------------------------------------------- /src/data/showcase/gamechanger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/gamechanger.png -------------------------------------------------------------------------------- /src/data/showcase/gerowallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/gerowallet.png -------------------------------------------------------------------------------- /src/data/showcase/gimbalabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/gimbalabs.png -------------------------------------------------------------------------------- /src/data/showcase/govspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/govspace.png -------------------------------------------------------------------------------- /src/data/showcase/govtools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/govtools.jpg -------------------------------------------------------------------------------- /src/data/showcase/hazelnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/hazelnet.png -------------------------------------------------------------------------------- /src/data/showcase/hosky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/hosky.png -------------------------------------------------------------------------------- /src/data/showcase/jesart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/jesart.png -------------------------------------------------------------------------------- /src/data/showcase/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/jpg.png -------------------------------------------------------------------------------- /src/data/showcase/lace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/lace.png -------------------------------------------------------------------------------- /src/data/showcase/lending-pond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/lending-pond.png -------------------------------------------------------------------------------- /src/data/showcase/lidonation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/lidonation.png -------------------------------------------------------------------------------- /src/data/showcase/liqwid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/liqwid.png -------------------------------------------------------------------------------- /src/data/showcase/medusa_wallet_poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/medusa_wallet_poster.png -------------------------------------------------------------------------------- /src/data/showcase/mermada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/mermada.png -------------------------------------------------------------------------------- /src/data/showcase/mesh-multisig-platform.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/mesh-multisig-platform.jpg -------------------------------------------------------------------------------- /src/data/showcase/milkomeda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/milkomeda.png -------------------------------------------------------------------------------- /src/data/showcase/minswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/minswap.png -------------------------------------------------------------------------------- /src/data/showcase/monadpool-relay-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/monadpool-relay-map.png -------------------------------------------------------------------------------- /src/data/showcase/muesliswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/muesliswap.png -------------------------------------------------------------------------------- /src/data/showcase/namiwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/namiwallet.png -------------------------------------------------------------------------------- /src/data/showcase/nft-maker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/nft-maker.png -------------------------------------------------------------------------------- /src/data/showcase/nftada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/nftada.png -------------------------------------------------------------------------------- /src/data/showcase/nmkr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/nmkr.png -------------------------------------------------------------------------------- /src/data/showcase/nowpayments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/nowpayments.png -------------------------------------------------------------------------------- /src/data/showcase/nufiwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/nufiwallet.png -------------------------------------------------------------------------------- /src/data/showcase/onboard-ninja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/onboard-ninja.jpg -------------------------------------------------------------------------------- /src/data/showcase/opencnft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/opencnft.png -------------------------------------------------------------------------------- /src/data/showcase/orcfax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/orcfax.png -------------------------------------------------------------------------------- /src/data/showcase/pavia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/pavia.png -------------------------------------------------------------------------------- /src/data/showcase/petregistry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/petregistry.png -------------------------------------------------------------------------------- /src/data/showcase/poolpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/poolpm.png -------------------------------------------------------------------------------- /src/data/showcase/poolstats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/poolstats.png -------------------------------------------------------------------------------- /src/data/showcase/pooltool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/pooltool.png -------------------------------------------------------------------------------- /src/data/showcase/pooltoolmobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/pooltoolmobile.png -------------------------------------------------------------------------------- /src/data/showcase/raw-cardano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/raw-cardano.png -------------------------------------------------------------------------------- /src/data/showcase/roundtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/roundtable.png -------------------------------------------------------------------------------- /src/data/showcase/spacebudz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/spacebudz.png -------------------------------------------------------------------------------- /src/data/showcase/staking-rewards-calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/staking-rewards-calculator.png -------------------------------------------------------------------------------- /src/data/showcase/stampd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/stampd.png -------------------------------------------------------------------------------- /src/data/showcase/stellarhood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/stellarhood.png -------------------------------------------------------------------------------- /src/data/showcase/stuff-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/stuff-io.png -------------------------------------------------------------------------------- /src/data/showcase/summonplatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/summonplatform.png -------------------------------------------------------------------------------- /src/data/showcase/sundaeswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/sundaeswap.png -------------------------------------------------------------------------------- /src/data/showcase/taptools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/taptools.png -------------------------------------------------------------------------------- /src/data/showcase/tempo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/tempo.png -------------------------------------------------------------------------------- /src/data/showcase/token-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/token-builder.png -------------------------------------------------------------------------------- /src/data/showcase/turf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/turf.png -------------------------------------------------------------------------------- /src/data/showcase/typhonwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/typhonwallet.png -------------------------------------------------------------------------------- /src/data/showcase/universe25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/universe25.png -------------------------------------------------------------------------------- /src/data/showcase/unsigs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/unsigs.png -------------------------------------------------------------------------------- /src/data/showcase/veridian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/veridian.png -------------------------------------------------------------------------------- /src/data/showcase/veritree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/veritree.png -------------------------------------------------------------------------------- /src/data/showcase/vesprwallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/vesprwallet.png -------------------------------------------------------------------------------- /src/data/showcase/voteaire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/voteaire.png -------------------------------------------------------------------------------- /src/data/showcase/vyfinance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/vyfinance.png -------------------------------------------------------------------------------- /src/data/showcase/wingriders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/wingriders.png -------------------------------------------------------------------------------- /src/data/showcase/wmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/wmt.png -------------------------------------------------------------------------------- /src/data/showcase/yoroi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/data/showcase/yoroi.png -------------------------------------------------------------------------------- /src/img/hero-header-dots-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/img/hero-header-dots-dark.webp -------------------------------------------------------------------------------- /src/img/hero-header-dots.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/src/img/hero-header-dots.webp -------------------------------------------------------------------------------- /src/pages/home.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Index from './index'; 3 | 4 | function Home() { 5 | return ( 6 | 7 | ); 8 | } 9 | 10 | export default Home; -------------------------------------------------------------------------------- /src/pages/portalhero.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import clsx from "clsx"; 3 | import Link from "@docusaurus/Link"; 4 | import styles from "./styles.module.css"; 5 | import useDocusaurusContext from "@docusaurus/useDocusaurusContext"; 6 | 7 | function PortalHero({ title, description, cta, filename, url }) { 8 | const context = useDocusaurusContext(); 9 | const { siteConfig = {} } = context; 10 | const EDIT_URL = !filename ? url : `${siteConfig.customFields.repository}/edit/${siteConfig.customFields.branch}/src/data/${filename}`; 11 | return ( 12 |
13 |
14 |

{title}

15 |

{description}

16 |
17 | 25 | {cta} 26 | 27 |
28 |
29 |
30 | ); 31 | } 32 | 33 | export default PortalHero; 34 | -------------------------------------------------------------------------------- /src/pages/styles.module.css: -------------------------------------------------------------------------------- 1 | /* stylelint-disable docusaurus/copyright-header */ 2 | 3 | /** 4 | * CSS files with the .module.css suffix will be treated as CSS modules 5 | * and scoped locally. 6 | */ 7 | 8 | .heroBanner { 9 | padding: 4rem 0; 10 | text-align: center; 11 | position: relative; 12 | overflow: hidden; 13 | background-size: auto; 14 | background-position: 59% 50%; 15 | } 16 | 17 | html[data-theme=light] .getStarted { 18 | color: #fff; 19 | } 20 | 21 | html[data-theme=dark] .getStarted { 22 | color: #000; 23 | } 24 | 25 | html[data-theme=light] .heroBanner { 26 | background-image: url(/img/dev-portal-hero-light.webp); 27 | background-color: #383fd0; 28 | } 29 | 30 | html[data-theme=dark] .heroBanner { 31 | background-image: url(/img/dev-portal-hero-dark.webp); 32 | background-color: #2da48d; 33 | } 34 | 35 | @media screen and (max-width: 1024px) { 36 | .heroBanner { 37 | background-position: 34% 50%; 38 | } 39 | } 40 | 41 | @media screen and (max-width: 966px) { 42 | .heroBanner { 43 | padding: 2rem; 44 | } 45 | } 46 | 47 | @media screen and (min-width: 1950px) { 48 | .heroBanner { 49 | background-repeat: no-repeat; 50 | background-size: cover; 51 | } 52 | } 53 | 54 | .buttons { 55 | display: flex; 56 | align-items: center; 57 | justify-content: center; 58 | } 59 | 60 | .features { 61 | display: flex; 62 | align-items: center; 63 | padding: 2rem 0; 64 | width: 100%; 65 | } 66 | 67 | .featureImage { 68 | height: 200px; 69 | width: 200px; 70 | } 71 | 72 | .featurePadding { 73 | padding-bottom: 1rem !important; 74 | } -------------------------------------------------------------------------------- /src/svg/fav.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/theme/prism-include-languages.js: -------------------------------------------------------------------------------- 1 | import ExecutionEnvironment from '@docusaurus/ExecutionEnvironment'; 2 | import siteConfig from '@generated/docusaurus.config'; 3 | 4 | const prismIncludeLanguages = (PrismObject) => { 5 | if (ExecutionEnvironment.canUseDOM) { 6 | const { 7 | themeConfig: {prism = {}}, 8 | } = siteConfig; 9 | const {additionalLanguages = []} = prism; 10 | window.Prism = PrismObject; 11 | 12 | additionalLanguages.forEach((lang) => { 13 | try { 14 | // Explicitly load 'markup-templating' for templating languages like PHP 15 | if (lang === 'php' || lang === 'some-other-templating-language') { 16 | require('prismjs/components/prism-markup-templating'); 17 | } 18 | require(`prismjs/components/prism-${lang}`); 19 | } catch (error) { 20 | console.error(`Failed to load Prism language: ${lang}`, error); 21 | } 22 | }); 23 | 24 | try { 25 | window.x = require('../aiken.prism.lang.js'); 26 | } catch (error) { 27 | console.error('Failed to load custom Prism language file: aiken.prism.lang.js', error); 28 | } 29 | 30 | delete window.Prism; 31 | } 32 | }; 33 | 34 | export default prismIncludeLanguages; 35 | -------------------------------------------------------------------------------- /src/utils/jsUtils.js: -------------------------------------------------------------------------------- 1 | export function difference(...arrays) { 2 | return arrays.reduce((a, b) => a.filter((c) => !b.includes(c))); 3 | } 4 | 5 | export function sortBy(array, getter) { 6 | function compareBy(getter) { 7 | return (a, b) => 8 | getter(a) > getter(b) ? 1 : getter(b) > getter(a) ? -1 : 0; 9 | } 10 | 11 | const sortedArray = [...array]; 12 | sortedArray.sort(compareBy(getter)); 13 | return sortedArray; 14 | } 15 | 16 | export function toggleListItem(list, item) { 17 | const itemIndex = list.indexOf(item); 18 | if (itemIndex === -1) { 19 | return list.concat(item); 20 | } else { 21 | const newList = [...list]; 22 | newList.splice(itemIndex, 1); 23 | return newList; 24 | } 25 | } -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/.nojekyll -------------------------------------------------------------------------------- /static/img/aiken-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/aiken-logo.png -------------------------------------------------------------------------------- /static/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/img/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /static/img/authors/builderfest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/authors/builderfest.png -------------------------------------------------------------------------------- /static/img/authors/cardano-foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/authors/cardano-foundation.png -------------------------------------------------------------------------------- /static/img/cardano-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/cardano-black.png -------------------------------------------------------------------------------- /static/img/cardano-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/cardano-white.png -------------------------------------------------------------------------------- /static/img/cli/conwayup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/cli/conwayup.png -------------------------------------------------------------------------------- /static/img/cli/delegationcycle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/cli/delegationcycle.gif -------------------------------------------------------------------------------- /static/img/cli/deregister-stake-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/cli/deregister-stake-address.png -------------------------------------------------------------------------------- /static/img/cli/peer-discovery.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/cli/peer-discovery.jpeg -------------------------------------------------------------------------------- /static/img/cli/upbyron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/cli/upbyron.png -------------------------------------------------------------------------------- /static/img/cli/upshelley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/cli/upshelley.png -------------------------------------------------------------------------------- /static/img/dev-portal-hero-dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/dev-portal-hero-dark.webp -------------------------------------------------------------------------------- /static/img/dev-portal-hero-light.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/dev-portal-hero-light.webp -------------------------------------------------------------------------------- /static/img/devblog/adapools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/adapools.png -------------------------------------------------------------------------------- /static/img/devblog/adastat-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/devblog/adastat-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/devblog/charli3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/charli3.png -------------------------------------------------------------------------------- /static/img/devblog/coti-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/coti-dark.png -------------------------------------------------------------------------------- /static/img/devblog/coti-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/coti-white.png -------------------------------------------------------------------------------- /static/img/devblog/demu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/demu.png -------------------------------------------------------------------------------- /static/img/devblog/developer-portal-launch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/developer-portal-launch.jpeg -------------------------------------------------------------------------------- /static/img/devblog/dexhunter-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/dexhunter-dark.png -------------------------------------------------------------------------------- /static/img/devblog/dexhunter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/dexhunter-light.png -------------------------------------------------------------------------------- /static/img/devblog/fluid-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/devblog/geniusyield-community -dex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/geniusyield-community -dex.jpg -------------------------------------------------------------------------------- /static/img/devblog/geniusyield-my-dex-rewards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/geniusyield-my-dex-rewards.jpg -------------------------------------------------------------------------------- /static/img/devblog/gmbl-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/gmbl-dark.png -------------------------------------------------------------------------------- /static/img/devblog/gmbl-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/gmbl-light.png -------------------------------------------------------------------------------- /static/img/devblog/how-to-mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/how-to-mint.png -------------------------------------------------------------------------------- /static/img/devblog/koios-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/koios-dark.png -------------------------------------------------------------------------------- /static/img/devblog/koios-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/koios-light.png -------------------------------------------------------------------------------- /static/img/devblog/lenfi-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/devblog/lenfi-light.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/devblog/lovelace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/lovelace.png -------------------------------------------------------------------------------- /static/img/devblog/mainstreet-achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/mainstreet-achievements.png -------------------------------------------------------------------------------- /static/img/devblog/mainstreet-roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/mainstreet-roadmap.png -------------------------------------------------------------------------------- /static/img/devblog/mandala-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/mandala-dark.png -------------------------------------------------------------------------------- /static/img/devblog/mandala-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/mandala-light.png -------------------------------------------------------------------------------- /static/img/devblog/mercury-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/mercury-logo.jpg -------------------------------------------------------------------------------- /static/img/devblog/mesh-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/mesh-dark.png -------------------------------------------------------------------------------- /static/img/devblog/mesh-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/mesh-light.png -------------------------------------------------------------------------------- /static/img/devblog/milkomeda-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/milkomeda-dark.png -------------------------------------------------------------------------------- /static/img/devblog/milkomeda-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/milkomeda-light.png -------------------------------------------------------------------------------- /static/img/devblog/milkomeda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/milkomeda.png -------------------------------------------------------------------------------- /static/img/devblog/minswap-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/minswap-blue.png -------------------------------------------------------------------------------- /static/img/devblog/minswap-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/minswap-white.png -------------------------------------------------------------------------------- /static/img/devblog/nami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nami.png -------------------------------------------------------------------------------- /static/img/devblog/newm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/newm.png -------------------------------------------------------------------------------- /static/img/devblog/nft-maker-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nft-maker-img.png -------------------------------------------------------------------------------- /static/img/devblog/nfta.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nfta.jpg -------------------------------------------------------------------------------- /static/img/devblog/nftmaker-background-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nftmaker-background-img.png -------------------------------------------------------------------------------- /static/img/devblog/nmkr_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nmkr_preview.png -------------------------------------------------------------------------------- /static/img/devblog/nowpayments-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nowpayments-dark.png -------------------------------------------------------------------------------- /static/img/devblog/nowpayments-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nowpayments-white.png -------------------------------------------------------------------------------- /static/img/devblog/nowpayments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nowpayments.png -------------------------------------------------------------------------------- /static/img/devblog/nucast-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/nucast-dark.png -------------------------------------------------------------------------------- /static/img/devblog/strica-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/strica-light.png -------------------------------------------------------------------------------- /static/img/devblog/tokhun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/tokhun.png -------------------------------------------------------------------------------- /static/img/devblog/w3ride-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/w3ride-dark.png -------------------------------------------------------------------------------- /static/img/devblog/w3ride-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/devblog/w3ride-light.png -------------------------------------------------------------------------------- /static/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/favicon-16x16.png -------------------------------------------------------------------------------- /static/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/favicon-32x32.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/get-started/air-gap/10-software-choices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/air-gap/10-software-choices.png -------------------------------------------------------------------------------- /static/img/get-started/air-gap/20-installation-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/air-gap/20-installation-type.png -------------------------------------------------------------------------------- /static/img/get-started/air-gap/30-encrypt-disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/air-gap/30-encrypt-disk.png -------------------------------------------------------------------------------- /static/img/get-started/air-gap/35-disk-encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/air-gap/35-disk-encrypted.png -------------------------------------------------------------------------------- /static/img/get-started/blockfrost/getting-started-1_frontend_landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/blockfrost/getting-started-1_frontend_landing.png -------------------------------------------------------------------------------- /static/img/get-started/blockfrost/getting-started-2_add_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/blockfrost/getting-started-2_add_project.png -------------------------------------------------------------------------------- /static/img/get-started/blockfrost/getting-started-3_get_api_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/blockfrost/getting-started-3_get_api_key.png -------------------------------------------------------------------------------- /static/img/get-started/blockfrost/secure-webhooks-1_webhooks_jsonpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/blockfrost/secure-webhooks-1_webhooks_jsonpath.png -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-cardano-node-socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-cardano-node-socket.png -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-comingsoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-comingsoon.jpg -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-explorer-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-explorer-api.png -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-graphql-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-graphql-api.png -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-ogmios-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-ogmios-api.png -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-postgrest-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-postgrest-api.png -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-rosetta-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-rosetta-api.png -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-smash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-smash.png -------------------------------------------------------------------------------- /static/img/get-started/dandelion-apis/showcase-submit-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/dandelion-apis/showcase-submit-api.png -------------------------------------------------------------------------------- /static/img/get-started/guild-ops-suite/guild_cntools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/guild-ops-suite/guild_cntools.png -------------------------------------------------------------------------------- /static/img/get-started/guild-ops-suite/guild_gliveview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/guild-ops-suite/guild_gliveview.png -------------------------------------------------------------------------------- /static/img/get-started/guild-ops-suite/guild_topologyupdater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/guild-ops-suite/guild_topologyupdater.png -------------------------------------------------------------------------------- /static/img/get-started/koios/1-usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/koios/1-usage.png -------------------------------------------------------------------------------- /static/img/get-started/ogmios/1-dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/ogmios/1-dashboard.gif -------------------------------------------------------------------------------- /static/img/get-started/smart-contracts/marlowe-playground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/smart-contracts/marlowe-playground.jpg -------------------------------------------------------------------------------- /static/img/get-started/smart-contracts/plutus-playground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/get-started/smart-contracts/plutus-playground.jpg -------------------------------------------------------------------------------- /static/img/governance/cips/cip_workflow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/governance/cips/cip_workflow_dark.png -------------------------------------------------------------------------------- /static/img/governance/cips/cip_workflow_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/governance/cips/cip_workflow_light.png -------------------------------------------------------------------------------- /static/img/hero-header-dots.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/hero-header-dots.webp -------------------------------------------------------------------------------- /static/img/hero-header-enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/hero-header-enterprise.png -------------------------------------------------------------------------------- /static/img/hero-header-zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/hero-header-zoom.png -------------------------------------------------------------------------------- /static/img/hero-header-zoom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/hero-header-zoom2.png -------------------------------------------------------------------------------- /static/img/integrate-cardano/ada-online-shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/integrate-cardano/ada-online-shop.png -------------------------------------------------------------------------------- /static/img/integrate-cardano/ada-payment-flow-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/integrate-cardano/ada-payment-flow-wallet.png -------------------------------------------------------------------------------- /static/img/integrate-cardano/ada-payment-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/integrate-cardano/ada-payment-flow.png -------------------------------------------------------------------------------- /static/img/integrate-cardano/latest-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/integrate-cardano/latest-block.png -------------------------------------------------------------------------------- /static/img/integrate-cardano/multi-witness-transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/integrate-cardano/multi-witness-transaction.png -------------------------------------------------------------------------------- /static/img/integrate-cardano/point-of-sale-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/integrate-cardano/point-of-sale-example.png -------------------------------------------------------------------------------- /static/img/logo-eopsin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/logo-eopsin.png -------------------------------------------------------------------------------- /static/img/logo-marlowe-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/logo-marlowe-small.png -------------------------------------------------------------------------------- /static/img/logo-marlowe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/logo-marlowe.png -------------------------------------------------------------------------------- /static/img/logo-plutus-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/logo-plutus-small.png -------------------------------------------------------------------------------- /static/img/logo-plutus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/logo-plutus.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-burn.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-current-block-on-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-current-block-on-explorer.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-current-block-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-current-block-tip.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-daedalus-testnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-daedalus-testnet.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-matx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-matx.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-merch-store-poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-merch-store-poc.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-minted-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-minted-token.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-txhash-after-burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-txhash-after-burn.png -------------------------------------------------------------------------------- /static/img/native-tokens/nft-txhash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/native-tokens/nft-txhash.png -------------------------------------------------------------------------------- /static/img/nfts/cardano_explorer_testnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/nfts/cardano_explorer_testnet.png -------------------------------------------------------------------------------- /static/img/nfts/daedalus_tokens_rec.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/nfts/daedalus_tokens_rec.PNG -------------------------------------------------------------------------------- /static/img/nfts/pinata_pin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/nfts/pinata_pin.PNG -------------------------------------------------------------------------------- /static/img/nfts/poolpm_nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/nfts/poolpm_nft.png -------------------------------------------------------------------------------- /static/img/nfts/poolpm_nft_testnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/nfts/poolpm_nft_testnet.png -------------------------------------------------------------------------------- /static/img/og/og-blog-ada-makerspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-ada-makerspace.png -------------------------------------------------------------------------------- /static/img/og/og-blog-adao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-adao.png -------------------------------------------------------------------------------- /static/img/og/og-blog-adapools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-adapools.png -------------------------------------------------------------------------------- /static/img/og/og-blog-adastat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-adastat.png -------------------------------------------------------------------------------- /static/img/og/og-blog-adatools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-adatools.png -------------------------------------------------------------------------------- /static/img/og/og-blog-cardanoscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-cardanoscan.png -------------------------------------------------------------------------------- /static/img/og/og-blog-charlie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-charlie.png -------------------------------------------------------------------------------- /static/img/og/og-blog-coti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-coti.png -------------------------------------------------------------------------------- /static/img/og/og-blog-demu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-demu.png -------------------------------------------------------------------------------- /static/img/og/og-blog-dexhunter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-dexhunter.png -------------------------------------------------------------------------------- /static/img/og/og-blog-fluidtokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-fluidtokens.png -------------------------------------------------------------------------------- /static/img/og/og-blog-gimbalabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-gimbalabs.png -------------------------------------------------------------------------------- /static/img/og/og-blog-koios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-koios.png -------------------------------------------------------------------------------- /static/img/og/og-blog-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-launch.png -------------------------------------------------------------------------------- /static/img/og/og-blog-lenfi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-lenfi.png -------------------------------------------------------------------------------- /static/img/og/og-blog-lovelace-academy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-lovelace-academy.png -------------------------------------------------------------------------------- /static/img/og/og-blog-mainstreet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-mainstreet.png -------------------------------------------------------------------------------- /static/img/og/og-blog-mandala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-mandala.png -------------------------------------------------------------------------------- /static/img/og/og-blog-mercury.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-mercury.png -------------------------------------------------------------------------------- /static/img/og/og-blog-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-mesh.png -------------------------------------------------------------------------------- /static/img/og/og-blog-milkomeda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-milkomeda.png -------------------------------------------------------------------------------- /static/img/og/og-blog-minswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-minswap.png -------------------------------------------------------------------------------- /static/img/og/og-blog-nami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-nami.png -------------------------------------------------------------------------------- /static/img/og/og-blog-newm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-newm.png -------------------------------------------------------------------------------- /static/img/og/og-blog-nftas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-nftas.png -------------------------------------------------------------------------------- /static/img/og/og-blog-nftmaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-nftmaker.png -------------------------------------------------------------------------------- /static/img/og/og-blog-nmkr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-nmkr.png -------------------------------------------------------------------------------- /static/img/og/og-blog-nowpayments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-nowpayments.png -------------------------------------------------------------------------------- /static/img/og/og-blog-nucast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-nucast.png -------------------------------------------------------------------------------- /static/img/og/og-blog-on-the-rocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-on-the-rocks.png -------------------------------------------------------------------------------- /static/img/og/og-blog-p2pdefi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-p2pdefi.png -------------------------------------------------------------------------------- /static/img/og/og-blog-rejuve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-rejuve.png -------------------------------------------------------------------------------- /static/img/og/og-blog-strica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-strica.png -------------------------------------------------------------------------------- /static/img/og/og-blog-tokhun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-tokhun.png -------------------------------------------------------------------------------- /static/img/og/og-blog-vespr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-vespr.png -------------------------------------------------------------------------------- /static/img/og/og-blog-w3ride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-w3ride.png -------------------------------------------------------------------------------- /static/img/og/og-blog-zengate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-blog-zengate.png -------------------------------------------------------------------------------- /static/img/og/og-builder-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-builder-tools.png -------------------------------------------------------------------------------- /static/img/og/og-changelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-changelog.png -------------------------------------------------------------------------------- /static/img/og/og-developer-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-developer-blog.png -------------------------------------------------------------------------------- /static/img/og/og-developer-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-developer-portal.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-aiken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-aiken.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-blockfrost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-blockfrost.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-cardano-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-cardano-components.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-cardano-wallet-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-cardano-wallet-js.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-cardanocli-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-cardanocli-js.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-cardanosharp-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-cardanosharp-wallet.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-cscli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-cscli.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-dandelion-apis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-dandelion-apis.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-developer-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-developer-community.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-installing-cardano-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-installing-cardano-node.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-installing-cardano-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-installing-cardano-wallet.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-koios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-koios.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-mesh.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-ogmios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-ogmios.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-overview.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-running-cardano-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-running-cardano-node.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-serialization-lib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-serialization-lib.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-technical-concepts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-technical-concepts.png -------------------------------------------------------------------------------- /static/img/og/og-getstarted-testnets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-getstarted-testnets.png -------------------------------------------------------------------------------- /static/img/og/og-security-air-gap-environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-security-air-gap-environment.png -------------------------------------------------------------------------------- /static/img/og/og-security-secure-transaction-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-security-secure-transaction-workflow.png -------------------------------------------------------------------------------- /static/img/og/og-showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/og/og-showcase.png -------------------------------------------------------------------------------- /static/img/portal-header-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/portal-header-blue.png -------------------------------------------------------------------------------- /static/img/portal-header-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/portal-header-white.png -------------------------------------------------------------------------------- /static/img/spotlight/adamakerspace.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/spotlight/adamakerspace.jpeg -------------------------------------------------------------------------------- /static/img/spotlight/adatools.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/spotlight/adatools.jpeg -------------------------------------------------------------------------------- /static/img/spotlight/cardano-on-the-rocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/spotlight/cardano-on-the-rocks.png -------------------------------------------------------------------------------- /static/img/spotlight/cardanoscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/spotlight/cardanoscan.png -------------------------------------------------------------------------------- /static/img/spotlight/hitchhikersguide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/spotlight/hitchhikersguide.png -------------------------------------------------------------------------------- /static/img/spotlight/jormanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/spotlight/jormanager.png -------------------------------------------------------------------------------- /static/img/spotlight/poolpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/spotlight/poolpm.png -------------------------------------------------------------------------------- /static/img/spotlight/pooltool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/spotlight/pooltool.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-4-panels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-4-panels.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-add-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-add-dashboard.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-explore-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-explore-labels.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-explore-loki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-explore-loki.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-final-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-final-dashboard.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-grafana-configure-ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-grafana-configure-ip.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-grafana-data-source-loki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-grafana-data-source-loki.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-grafana-datasource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-grafana-datasource.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-grafana-select-loki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-grafana-select-loki.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-hot2cold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-hot2cold.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-labels.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-select-loki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-select-loki.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-show-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-show-logs.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/loki-test-relay1-explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/loki-test-relay1-explore.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-1.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-10-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-10-connect.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-11-connect-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-11-connect-2.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-2.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-3.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-4.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-5-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-5-dashboard.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-6-launch-instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-6-launch-instance.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-7-choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-7-choose.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-8-instance-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-8-instance-type.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/setup-aws-9-key-pair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/setup-aws-9-key-pair.png -------------------------------------------------------------------------------- /static/img/stake-pool-course/snsky_EmailAlert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/snsky_EmailAlert.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-course/snsky_PeerAlert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/snsky_PeerAlert.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-course/snsky_dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/snsky_dashboard.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-course/snsky_leaderPanel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/snsky_leaderPanel.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-course/snsky_prometheus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-course/snsky_prometheus.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/snsky_EmailAlert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/snsky_EmailAlert.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/snsky_PeerAlert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/snsky_PeerAlert.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/snsky_dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/snsky_dashboard.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/snsky_leaderPanel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/snsky_leaderPanel.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/snsky_producer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/snsky_producer.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/snsky_prometheus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/snsky_prometheus.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/snsky_relay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/snsky_relay.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/stake-pool-network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/stake-pool-network.jpg -------------------------------------------------------------------------------- /static/img/stake-pool-guide/stake-pool-setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/stake-pool-guide/stake-pool-setup.jpg -------------------------------------------------------------------------------- /static/img/testavatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/testavatar.png -------------------------------------------------------------------------------- /static/img/tx-meta-data/todo-list-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardano-foundation/developer-portal/662a3dc35b26db50c1bb3891766be60cebc900c9/static/img/tx-meta-data/todo-list-app.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "lib": ["es5", "es6", "dom"], 4 | "outDir": "./dist/", 5 | "sourceMap": true, 6 | "noImplicitAny": true, 7 | "module": "commonjs", 8 | "target": "es6", 9 | "moduleResolution": "node", 10 | "jsx": "react" 11 | }, 12 | "include": ["./scripts"] 13 | } 14 | 15 | -------------------------------------------------------------------------------- /variables.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "repository": "https://github.com/cardano-foundation/developer-portal", 3 | "branch": "staging", 4 | "cardanoNodeVersion": "1.27.0" 5 | } --------------------------------------------------------------------------------