├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── command-line-interface-reference.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── OG-create-dissolve-neuron-api.svg ├── README.md ├── antora.yml └── modules ├── ROOT ├── assets │ └── images │ │ ├── 008-cogwheels-2.svg │ │ ├── 009-text-lines.svg │ │ ├── 012-keywords.svg │ │ ├── 018-races.svg │ │ ├── 020-laptop-computer-1.svg │ │ ├── 021-earth-globe-1.svg │ │ ├── 022-invention.svg │ │ ├── 038-space-ship.svg │ │ ├── 043-gears-2.svg │ │ ├── 044-protected-1.svg │ │ ├── 050-connected.svg │ │ ├── 058-tools-and-utensils-2.svg │ │ ├── 072-hard-disc.svg │ │ ├── 082-programmer-1.svg │ │ ├── 090-cheked.svg │ │ ├── BlockchainForBuilders.png │ │ ├── CorporateCloud.png │ │ ├── DeleteDatabase.png │ │ ├── DeveloperGrants.png │ │ ├── DiscoverExcitingNewParadigm.png │ │ ├── EndtoEndDecentralization.png │ │ ├── ExponentialPowerofOpenWeb.png │ │ ├── Forum.png │ │ ├── HelloWorld.png │ │ ├── ICABCs.png │ │ ├── MotokoLogo1.png │ │ ├── MotokoLogo2.png │ │ ├── RustLogo.png │ │ ├── TokenizeEverything.png │ │ └── VideoTutorial.png ├── nav.adoc └── pages │ ├── download.adoc │ ├── http-middleware.adoc │ ├── index.adoc │ ├── search.adoc │ ├── support.adoc │ └── videos-tutorials.adoc ├── developers-guide ├── assets │ └── images │ │ ├── SDK-protocol-local-overview.svg │ │ ├── SDK-protocol-network.svg │ │ ├── alert-window.png │ │ ├── candid-calc.png │ │ ├── candid-counter.png │ │ ├── candid-favorite-cities-result.png │ │ ├── candid-locations.png │ │ ├── candid-phonebook.png │ │ ├── data-center-simplified.svg │ │ ├── dev-drill-down-overview.png │ │ ├── dev-guide-overview-1.png │ │ ├── dev-work-flow-2.png │ │ ├── dev-work-flow-2.svg │ │ ├── dev-workflow-explore.svg │ │ ├── explore-hello.png │ │ ├── greeting-response.png │ │ ├── greeting.png │ │ ├── hello-everyone-greeting.png │ │ ├── hello-world-prompt.png │ │ ├── hello-world-return.png │ │ ├── icp-tokens-how-to-use.svg │ │ ├── identities-directory.png │ │ ├── identities-folders.png │ │ ├── linkedup-connect-from-dylan-to-maya.png │ │ ├── linkedup-connected-to-maya.png │ │ ├── linkedup-connected.png │ │ ├── linkedup-edit-dylan.png │ │ ├── linkedup-edit-maya.png │ │ ├── linkedup-empty-maya.png │ │ ├── linkedup-incognito.png │ │ ├── linkedup-profile-1.png │ │ ├── linkedup-profile-dylan.png │ │ ├── linkedup-profile-maya.png │ │ ├── linkedup-search-from-dylan-for-maya.png │ │ ├── linkedup-search-result.png │ │ ├── linkedup-search.png │ │ ├── local-remote-path-workflow.svg │ │ ├── local-storage.png │ │ ├── modified-result.png │ │ ├── my-contacts-sample-ui.png │ │ ├── mycontacts-form.png │ │ ├── principal-identities.svg │ │ ├── prompt-window.png │ │ ├── react-greeting.png │ │ ├── revised-greeting.png │ │ ├── subnet-overview.png │ │ └── three-path-workflow.svg ├── dev-nav.adoc ├── examples │ ├── access-hello │ │ └── main.mo │ ├── actor_hello.mo │ ├── add-stylesheet-package.json │ ├── calc_main.mo │ ├── candid-ui.adoc │ ├── counter.mo │ ├── custom-frontend-package.json │ ├── cycles-main.mo │ ├── define-actor-dfx.json │ ├── favorite_cities.mo │ ├── galois │ │ ├── Galois.mo │ │ └── Nat.mo │ ├── hex │ │ └── hex.mo │ ├── location_hello.mo │ ├── motoko-to-do │ │ ├── main.mo │ │ ├── types.mo │ │ └── utils.mo │ ├── multiple-actors │ │ ├── assistant │ │ │ └── main.mo │ │ ├── daemon │ │ │ └── main.mo │ │ ├── dfx.json │ │ ├── factorial │ │ │ └── main.mo │ │ └── rock_paper_scissors │ │ │ └── main.mo │ ├── mycontacts │ │ ├── contacts.mo │ │ ├── dfx.json │ │ ├── mod-index.jsx │ │ └── mycontacts.css │ ├── phonebook.mo │ ├── rawJS.js │ ├── react-index.jsx │ ├── react-revised-index.jsx │ ├── sample-dfx.json │ ├── sample-explore-dfx.json │ ├── sample-generate-dfx.json │ └── sample-tsconfig.json └── pages │ ├── about-this-guide.adoc │ ├── basic-syntax-rules.adoc │ ├── cli-reference.adoc │ ├── cli-reference │ ├── dfx-build.adoc │ ├── dfx-cache.adoc │ ├── dfx-canister.adoc │ ├── dfx-config.adoc │ ├── dfx-deploy.adoc │ ├── dfx-envars.adoc │ ├── dfx-generate.adoc │ ├── dfx-help.adoc │ ├── dfx-identity.adoc │ ├── dfx-ledger.adoc │ ├── dfx-new.adoc │ ├── dfx-parent.adoc │ ├── dfx-ping.adoc │ ├── dfx-replica.adoc │ ├── dfx-start.adoc │ ├── dfx-stop.adoc │ ├── dfx-upgrade.adoc │ └── dfx-wallet.adoc │ ├── computation-and-storage-costs.adoc │ ├── concepts │ ├── bitcoin-integration.adoc │ ├── canisters-code.adoc │ ├── concepts-intro.adoc │ ├── data-centers.adoc │ ├── governance.adoc │ ├── nodes-subnets.adoc │ ├── tokens-cycles.adoc │ ├── trust-in-canisters.adoc │ └── what-is-IC.adoc │ ├── customize-projects.adoc │ ├── default-wallet.adoc │ ├── design-apps.adoc │ ├── glossary.adoc │ ├── install-upgrade-remove.adoc │ ├── lang-service-ide.adoc │ ├── reinstalling-dfx.adoc │ ├── sample-apps.adoc │ ├── sdk-guide.adoc │ ├── troubleshooting.adoc │ ├── tutorials-intro.adoc │ ├── tutorials │ ├── access-control.adoc │ ├── at-a-glance.adoc │ ├── calculator.adoc │ ├── counter-tutorial.adoc │ ├── custom-frontend.adoc │ ├── define-an-actor.adoc │ ├── explore-templates.adoc │ ├── hello-location.adoc │ ├── intercanister-calls.adoc │ ├── multiple-actors.adoc │ ├── multiple-factorial-actors.adoc │ ├── my-contacts.adoc │ ├── phonebook.adoc │ ├── reproducible-builds.adoc │ ├── scalability-cancan.adoc │ └── simple-cycles.adoc │ ├── webpack-config.adoc │ ├── work-with-languages.adoc │ └── working-with-canisters.adoc ├── integration ├── assets │ └── images │ │ ├── basic-rosetta-api-integration.svg │ │ └── create-dissolve-neuron-api.svg ├── integration-nav.adoc └── pages │ └── ledger-quick-start.adoc ├── introduction └── pages │ └── welcome.adoc ├── languages └── pages │ ├── languages-overview.adoc │ └── motoko-at-a-glance.adoc ├── operators-guide ├── ops-nav.adoc └── pages │ └── ops-guide.adoc ├── quickstart ├── assets │ └── images │ │ ├── auth-session.png │ │ ├── create-wallet.png │ │ ├── cycles-faucet │ │ ├── faucet_step_1.png │ │ ├── faucet_step_2.png │ │ ├── faucet_step_3.png │ │ ├── faucet_step_4.png │ │ ├── faucet_step_5.png │ │ └── faucet_step_6.png │ │ ├── cycles-wallet-new-balance.png │ │ ├── cycles-wallet-new-ui.png │ │ ├── cycles-wallet.png │ │ ├── front-end-prompt.png │ │ ├── front-end-result.png │ │ ├── menu-expanded.png │ │ ├── net-alert-prompt.png │ │ ├── net-alert-window.png │ │ ├── net-front-end-prompt.png │ │ ├── net-result.png │ │ ├── new-canister.png │ │ ├── new-id.png │ │ ├── quickstart-prompt.png │ │ ├── quickstart-return.png │ │ ├── quickstart │ │ ├── 1-cycles-wallet.png │ │ ├── 2-canisters-hello-dapp.png │ │ ├── 3-canisters-hello-dapp.png │ │ ├── cd-hello.png │ │ ├── dfx-new-hello-1.png │ │ ├── dfx-new-hello-2.png │ │ ├── dfx-version.png │ │ ├── service-worker.png │ │ ├── terminal-a-dfx-start.png │ │ ├── terminal-b-dfx-deploy.png │ │ ├── terminal-b-ls.png │ │ └── terminal-b-npm-install.png │ │ ├── register-device.png │ │ ├── url.png │ │ ├── wallet-after-hello-deploy.png │ │ ├── wallet-ui-2.png │ │ ├── wallet-ui.png │ │ └── your-profile.png ├── examples │ ├── preview-hello.mo │ └── vscode-plugin.adoc └── pages │ ├── 1-quickstart.adoc │ ├── 2-quickstart.adoc │ ├── 3-quickstart.adoc │ ├── 4-2-convert-ICP-to-cycles.adoc │ ├── 4-quickstart.adoc │ ├── 5-quickstart.adoc │ ├── cycles-faucet.adoc │ ├── local-quickstart.adoc │ ├── network-quickstart.adoc │ ├── newcomers.adoc │ └── quickstart-intro.adoc ├── release-notes └── pages │ ├── 0.6.20-rn.adoc │ ├── 0.6.21-rn.adoc │ ├── 0.6.22-rn.adoc │ ├── 0.6.23-rn.adoc │ ├── 0.6.24-rn.adoc │ ├── 0.6.25-rn.adoc │ ├── 0.6.26-rn.adoc │ ├── 0.7.0-rn.adoc │ ├── 0.7.1-rn.adoc │ ├── 0.7.2-rn.adoc │ ├── 0.7.7-rn.adoc │ ├── 0.8.0-rn.adoc │ ├── 0.8.1-rn.adoc │ ├── 0.8.2-rn.adoc │ ├── 0.8.3-rn.adoc │ ├── 0.8.4-rn.adoc │ ├── 0.9.0-rn.adoc │ ├── 0.9.2-rn.adoc │ ├── 0.9.3-rn.adoc │ └── sdk-release-notes.adoc ├── samples ├── assets │ └── images │ │ ├── 3bd3a2a8bbbc3902.png │ │ ├── 82c8493b03d8157d.png │ │ ├── af3e45eb47eb3f14.png │ │ ├── d71d39c63ca9f522.png │ │ ├── efd35606ec992f9.png │ │ ├── encrypted-notes-arch.png │ │ ├── encrypted-notes-seq.png │ │ ├── f824214c6a3e694a.png │ │ ├── hello.png │ │ └── static-website.png └── pages │ ├── codelabs.adoc │ ├── codelabs │ ├── data-persistence.adoc │ ├── minimalistic-motoko-dapp.adoc │ ├── minimalistic-rust-dapp.adoc │ ├── simple-nft.adoc │ └── static-website.adoc │ ├── dao.adoc │ ├── dex.adoc │ ├── encrypted-notes.adoc │ ├── hackathon-projects.adoc │ ├── hello.adoc │ ├── host-a-website.adoc │ ├── index.adoc │ ├── nft.adoc │ └── tokentransfer.adoc ├── security-best-practices └── pages │ ├── general-security-best-practices.adoc │ ├── introduction.adoc │ ├── rust-canister-development-security-best-practices.adoc │ └── web-app-development-security-best-practices.adoc └── token-holders ├── assets └── images │ ├── DFN-address-screenshot.png │ ├── DFN-extension-screenshot.png │ ├── Etherscan-FDC-query.png │ ├── accounts.png │ ├── canister-list.png │ ├── confirm-following.png │ ├── confirm-send.png │ ├── confirm-top-up.png │ ├── confirmation.png │ ├── convert-to-cycles.png │ ├── create-dissolve-neuron-api.svg │ ├── disburse.png │ ├── dissolve-delay.png │ ├── follow-ica.png │ ├── neuron-properties.png │ ├── new-canister-id.png │ ├── new-linked-account.png │ ├── nns-app-main.png │ ├── select-account-to-disburse.png │ ├── stake-one-token.png │ ├── unlocked-neuron.png │ └── updated-icp.png └── pages ├── custody-options-intro.adoc ├── nns-app-quickstart.adoc ├── seed-donations.adoc └── self-custody-quickstart.adoc /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/command-line-interface-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/.github/ISSUE_TEMPLATE/command-line-interface-reference.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /OG-create-dissolve-neuron-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/OG-create-dissolve-neuron-api.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/README.md -------------------------------------------------------------------------------- /antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/antora.yml -------------------------------------------------------------------------------- /modules/ROOT/assets/images/008-cogwheels-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/008-cogwheels-2.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/009-text-lines.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/009-text-lines.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/012-keywords.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/012-keywords.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/018-races.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/018-races.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/020-laptop-computer-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/020-laptop-computer-1.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/021-earth-globe-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/021-earth-globe-1.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/022-invention.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/022-invention.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/038-space-ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/038-space-ship.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/043-gears-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/043-gears-2.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/044-protected-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/044-protected-1.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/050-connected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/050-connected.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/058-tools-and-utensils-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/058-tools-and-utensils-2.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/072-hard-disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/072-hard-disc.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/082-programmer-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/082-programmer-1.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/090-cheked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/090-cheked.svg -------------------------------------------------------------------------------- /modules/ROOT/assets/images/BlockchainForBuilders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/BlockchainForBuilders.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/CorporateCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/CorporateCloud.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/DeleteDatabase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/DeleteDatabase.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/DeveloperGrants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/DeveloperGrants.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/DiscoverExcitingNewParadigm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/DiscoverExcitingNewParadigm.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/EndtoEndDecentralization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/EndtoEndDecentralization.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/ExponentialPowerofOpenWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/ExponentialPowerofOpenWeb.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/Forum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/Forum.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/HelloWorld.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/ICABCs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/ICABCs.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/MotokoLogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/MotokoLogo1.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/MotokoLogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/MotokoLogo2.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/RustLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/RustLogo.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/TokenizeEverything.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/TokenizeEverything.png -------------------------------------------------------------------------------- /modules/ROOT/assets/images/VideoTutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/assets/images/VideoTutorial.png -------------------------------------------------------------------------------- /modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /modules/ROOT/pages/download.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/pages/download.adoc -------------------------------------------------------------------------------- /modules/ROOT/pages/http-middleware.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/pages/http-middleware.adoc -------------------------------------------------------------------------------- /modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /modules/ROOT/pages/search.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/pages/search.adoc -------------------------------------------------------------------------------- /modules/ROOT/pages/support.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/pages/support.adoc -------------------------------------------------------------------------------- /modules/ROOT/pages/videos-tutorials.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/ROOT/pages/videos-tutorials.adoc -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/SDK-protocol-local-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/SDK-protocol-local-overview.svg -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/SDK-protocol-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/SDK-protocol-network.svg -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/alert-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/alert-window.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/candid-calc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/candid-calc.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/candid-counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/candid-counter.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/candid-favorite-cities-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/candid-favorite-cities-result.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/candid-locations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/candid-locations.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/candid-phonebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/candid-phonebook.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/data-center-simplified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/data-center-simplified.svg -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/dev-drill-down-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/dev-drill-down-overview.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/dev-guide-overview-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/dev-guide-overview-1.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/dev-work-flow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/dev-work-flow-2.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/dev-work-flow-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/dev-work-flow-2.svg -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/dev-workflow-explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/dev-workflow-explore.svg -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/explore-hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/explore-hello.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/greeting-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/greeting-response.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/greeting.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/hello-everyone-greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/hello-everyone-greeting.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/hello-world-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/hello-world-prompt.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/hello-world-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/hello-world-return.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/icp-tokens-how-to-use.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/icp-tokens-how-to-use.svg -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/identities-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/identities-directory.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/identities-folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/identities-folders.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-connect-from-dylan-to-maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-connect-from-dylan-to-maya.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-connected-to-maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-connected-to-maya.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-connected.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-edit-dylan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-edit-dylan.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-edit-maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-edit-maya.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-empty-maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-empty-maya.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-incognito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-incognito.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-profile-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-profile-1.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-profile-dylan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-profile-dylan.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-profile-maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-profile-maya.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-search-from-dylan-for-maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-search-from-dylan-for-maya.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-search-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-search-result.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/linkedup-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/linkedup-search.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/local-remote-path-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/local-remote-path-workflow.svg -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/local-storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/local-storage.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/modified-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/modified-result.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/my-contacts-sample-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/my-contacts-sample-ui.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/mycontacts-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/mycontacts-form.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/principal-identities.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/principal-identities.svg -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/prompt-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/prompt-window.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/react-greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/react-greeting.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/revised-greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/revised-greeting.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/subnet-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/subnet-overview.png -------------------------------------------------------------------------------- /modules/developers-guide/assets/images/three-path-workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/assets/images/three-path-workflow.svg -------------------------------------------------------------------------------- /modules/developers-guide/dev-nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/dev-nav.adoc -------------------------------------------------------------------------------- /modules/developers-guide/examples/access-hello/main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/access-hello/main.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/actor_hello.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/actor_hello.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/add-stylesheet-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/add-stylesheet-package.json -------------------------------------------------------------------------------- /modules/developers-guide/examples/calc_main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/calc_main.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/candid-ui.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/candid-ui.adoc -------------------------------------------------------------------------------- /modules/developers-guide/examples/counter.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/counter.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/custom-frontend-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/custom-frontend-package.json -------------------------------------------------------------------------------- /modules/developers-guide/examples/cycles-main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/cycles-main.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/define-actor-dfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/define-actor-dfx.json -------------------------------------------------------------------------------- /modules/developers-guide/examples/favorite_cities.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/favorite_cities.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/galois/Galois.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/galois/Galois.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/galois/Nat.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/galois/Nat.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/hex/hex.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/hex/hex.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/location_hello.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/location_hello.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/motoko-to-do/main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/motoko-to-do/main.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/motoko-to-do/types.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/motoko-to-do/types.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/motoko-to-do/utils.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/motoko-to-do/utils.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/multiple-actors/assistant/main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/multiple-actors/assistant/main.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/multiple-actors/daemon/main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/multiple-actors/daemon/main.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/multiple-actors/dfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/multiple-actors/dfx.json -------------------------------------------------------------------------------- /modules/developers-guide/examples/multiple-actors/factorial/main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/multiple-actors/factorial/main.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/multiple-actors/rock_paper_scissors/main.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/multiple-actors/rock_paper_scissors/main.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/mycontacts/contacts.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/mycontacts/contacts.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/mycontacts/dfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/mycontacts/dfx.json -------------------------------------------------------------------------------- /modules/developers-guide/examples/mycontacts/mod-index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/mycontacts/mod-index.jsx -------------------------------------------------------------------------------- /modules/developers-guide/examples/mycontacts/mycontacts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/mycontacts/mycontacts.css -------------------------------------------------------------------------------- /modules/developers-guide/examples/phonebook.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/phonebook.mo -------------------------------------------------------------------------------- /modules/developers-guide/examples/rawJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/rawJS.js -------------------------------------------------------------------------------- /modules/developers-guide/examples/react-index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/react-index.jsx -------------------------------------------------------------------------------- /modules/developers-guide/examples/react-revised-index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/react-revised-index.jsx -------------------------------------------------------------------------------- /modules/developers-guide/examples/sample-dfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/sample-dfx.json -------------------------------------------------------------------------------- /modules/developers-guide/examples/sample-explore-dfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/sample-explore-dfx.json -------------------------------------------------------------------------------- /modules/developers-guide/examples/sample-generate-dfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/sample-generate-dfx.json -------------------------------------------------------------------------------- /modules/developers-guide/examples/sample-tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/examples/sample-tsconfig.json -------------------------------------------------------------------------------- /modules/developers-guide/pages/about-this-guide.adoc: -------------------------------------------------------------------------------- 1 | == About this guide 2 | -------------------------------------------------------------------------------- /modules/developers-guide/pages/basic-syntax-rules.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/basic-syntax-rules.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-build.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-build.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-cache.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-cache.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-canister.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-canister.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-config.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-config.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-deploy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-deploy.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-envars.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-envars.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-generate.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-generate.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-help.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-help.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-identity.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-identity.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-ledger.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-ledger.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-new.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-new.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-parent.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-parent.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-ping.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-ping.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-replica.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-replica.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-start.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-start.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-stop.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-stop.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-upgrade.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-upgrade.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/cli-reference/dfx-wallet.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/cli-reference/dfx-wallet.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/computation-and-storage-costs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/computation-and-storage-costs.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/bitcoin-integration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/bitcoin-integration.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/canisters-code.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/canisters-code.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/concepts-intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/concepts-intro.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/data-centers.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/data-centers.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/governance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/governance.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/nodes-subnets.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/nodes-subnets.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/tokens-cycles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/tokens-cycles.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/trust-in-canisters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/trust-in-canisters.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/concepts/what-is-IC.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/concepts/what-is-IC.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/customize-projects.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/customize-projects.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/default-wallet.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/default-wallet.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/design-apps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/design-apps.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/glossary.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/glossary.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/install-upgrade-remove.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/install-upgrade-remove.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/lang-service-ide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/lang-service-ide.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/reinstalling-dfx.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/reinstalling-dfx.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/sample-apps.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/sample-apps.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/sdk-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/sdk-guide.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/troubleshooting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/troubleshooting.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials-intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials-intro.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/access-control.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/access-control.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/at-a-glance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/at-a-glance.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/calculator.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/calculator.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/counter-tutorial.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/counter-tutorial.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/custom-frontend.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/custom-frontend.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/define-an-actor.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/define-an-actor.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/explore-templates.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/explore-templates.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/hello-location.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/hello-location.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/intercanister-calls.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/intercanister-calls.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/multiple-actors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/multiple-actors.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/multiple-factorial-actors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/multiple-factorial-actors.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/my-contacts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/my-contacts.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/phonebook.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/phonebook.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/reproducible-builds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/reproducible-builds.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/scalability-cancan.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/scalability-cancan.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/tutorials/simple-cycles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/tutorials/simple-cycles.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/webpack-config.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/webpack-config.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/work-with-languages.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/work-with-languages.adoc -------------------------------------------------------------------------------- /modules/developers-guide/pages/working-with-canisters.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/developers-guide/pages/working-with-canisters.adoc -------------------------------------------------------------------------------- /modules/integration/assets/images/basic-rosetta-api-integration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/integration/assets/images/basic-rosetta-api-integration.svg -------------------------------------------------------------------------------- /modules/integration/assets/images/create-dissolve-neuron-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/integration/assets/images/create-dissolve-neuron-api.svg -------------------------------------------------------------------------------- /modules/integration/integration-nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/integration/integration-nav.adoc -------------------------------------------------------------------------------- /modules/integration/pages/ledger-quick-start.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/integration/pages/ledger-quick-start.adoc -------------------------------------------------------------------------------- /modules/introduction/pages/welcome.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/introduction/pages/welcome.adoc -------------------------------------------------------------------------------- /modules/languages/pages/languages-overview.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/languages/pages/languages-overview.adoc -------------------------------------------------------------------------------- /modules/languages/pages/motoko-at-a-glance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/languages/pages/motoko-at-a-glance.adoc -------------------------------------------------------------------------------- /modules/operators-guide/ops-nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/operators-guide/ops-nav.adoc -------------------------------------------------------------------------------- /modules/operators-guide/pages/ops-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/operators-guide/pages/ops-guide.adoc -------------------------------------------------------------------------------- /modules/quickstart/assets/images/auth-session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/auth-session.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/create-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/create-wallet.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-faucet/faucet_step_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-faucet/faucet_step_1.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-faucet/faucet_step_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-faucet/faucet_step_2.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-faucet/faucet_step_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-faucet/faucet_step_3.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-faucet/faucet_step_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-faucet/faucet_step_4.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-faucet/faucet_step_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-faucet/faucet_step_5.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-faucet/faucet_step_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-faucet/faucet_step_6.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-wallet-new-balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-wallet-new-balance.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-wallet-new-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-wallet-new-ui.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/cycles-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/cycles-wallet.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/front-end-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/front-end-prompt.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/front-end-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/front-end-result.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/menu-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/menu-expanded.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/net-alert-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/net-alert-prompt.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/net-alert-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/net-alert-window.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/net-front-end-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/net-front-end-prompt.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/net-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/net-result.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/new-canister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/new-canister.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/new-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/new-id.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart-prompt.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart-return.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/1-cycles-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/1-cycles-wallet.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/2-canisters-hello-dapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/2-canisters-hello-dapp.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/3-canisters-hello-dapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/3-canisters-hello-dapp.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/cd-hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/cd-hello.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/dfx-new-hello-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/dfx-new-hello-1.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/dfx-new-hello-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/dfx-new-hello-2.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/dfx-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/dfx-version.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/service-worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/service-worker.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/terminal-a-dfx-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/terminal-a-dfx-start.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/terminal-b-dfx-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/terminal-b-dfx-deploy.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/terminal-b-ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/terminal-b-ls.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/quickstart/terminal-b-npm-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/quickstart/terminal-b-npm-install.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/register-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/register-device.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/url.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/wallet-after-hello-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/wallet-after-hello-deploy.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/wallet-ui-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/wallet-ui-2.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/wallet-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/wallet-ui.png -------------------------------------------------------------------------------- /modules/quickstart/assets/images/your-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/assets/images/your-profile.png -------------------------------------------------------------------------------- /modules/quickstart/examples/preview-hello.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/examples/preview-hello.mo -------------------------------------------------------------------------------- /modules/quickstart/examples/vscode-plugin.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/examples/vscode-plugin.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/1-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/1-quickstart.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/2-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/2-quickstart.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/3-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/3-quickstart.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/4-2-convert-ICP-to-cycles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/4-2-convert-ICP-to-cycles.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/4-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/4-quickstart.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/5-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/5-quickstart.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/cycles-faucet.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/cycles-faucet.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/local-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/local-quickstart.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/network-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/network-quickstart.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/newcomers.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/newcomers.adoc -------------------------------------------------------------------------------- /modules/quickstart/pages/quickstart-intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/quickstart/pages/quickstart-intro.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.6.20-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.6.20-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.6.21-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.6.21-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.6.22-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.6.22-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.6.23-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.6.23-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.6.24-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.6.24-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.6.25-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.6.25-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.6.26-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.6.26-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.7.0-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.7.0-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.7.1-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.7.1-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.7.2-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.7.2-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.7.7-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.7.7-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.8.0-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.8.0-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.8.1-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.8.1-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.8.2-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.8.2-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.8.3-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.8.3-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.8.4-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.8.4-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.9.0-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.9.0-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.9.2-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.9.2-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/0.9.3-rn.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/0.9.3-rn.adoc -------------------------------------------------------------------------------- /modules/release-notes/pages/sdk-release-notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/release-notes/pages/sdk-release-notes.adoc -------------------------------------------------------------------------------- /modules/samples/assets/images/3bd3a2a8bbbc3902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/3bd3a2a8bbbc3902.png -------------------------------------------------------------------------------- /modules/samples/assets/images/82c8493b03d8157d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/82c8493b03d8157d.png -------------------------------------------------------------------------------- /modules/samples/assets/images/af3e45eb47eb3f14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/af3e45eb47eb3f14.png -------------------------------------------------------------------------------- /modules/samples/assets/images/d71d39c63ca9f522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/d71d39c63ca9f522.png -------------------------------------------------------------------------------- /modules/samples/assets/images/efd35606ec992f9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/efd35606ec992f9.png -------------------------------------------------------------------------------- /modules/samples/assets/images/encrypted-notes-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/encrypted-notes-arch.png -------------------------------------------------------------------------------- /modules/samples/assets/images/encrypted-notes-seq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/encrypted-notes-seq.png -------------------------------------------------------------------------------- /modules/samples/assets/images/f824214c6a3e694a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/f824214c6a3e694a.png -------------------------------------------------------------------------------- /modules/samples/assets/images/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/hello.png -------------------------------------------------------------------------------- /modules/samples/assets/images/static-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/assets/images/static-website.png -------------------------------------------------------------------------------- /modules/samples/pages/codelabs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/codelabs.adoc -------------------------------------------------------------------------------- /modules/samples/pages/codelabs/data-persistence.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/codelabs/data-persistence.adoc -------------------------------------------------------------------------------- /modules/samples/pages/codelabs/minimalistic-motoko-dapp.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/codelabs/minimalistic-motoko-dapp.adoc -------------------------------------------------------------------------------- /modules/samples/pages/codelabs/minimalistic-rust-dapp.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/codelabs/minimalistic-rust-dapp.adoc -------------------------------------------------------------------------------- /modules/samples/pages/codelabs/simple-nft.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/codelabs/simple-nft.adoc -------------------------------------------------------------------------------- /modules/samples/pages/codelabs/static-website.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/codelabs/static-website.adoc -------------------------------------------------------------------------------- /modules/samples/pages/dao.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/dao.adoc -------------------------------------------------------------------------------- /modules/samples/pages/dex.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/dex.adoc -------------------------------------------------------------------------------- /modules/samples/pages/encrypted-notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/encrypted-notes.adoc -------------------------------------------------------------------------------- /modules/samples/pages/hackathon-projects.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/hackathon-projects.adoc -------------------------------------------------------------------------------- /modules/samples/pages/hello.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/hello.adoc -------------------------------------------------------------------------------- /modules/samples/pages/host-a-website.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/host-a-website.adoc -------------------------------------------------------------------------------- /modules/samples/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/index.adoc -------------------------------------------------------------------------------- /modules/samples/pages/nft.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/nft.adoc -------------------------------------------------------------------------------- /modules/samples/pages/tokentransfer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/samples/pages/tokentransfer.adoc -------------------------------------------------------------------------------- /modules/security-best-practices/pages/general-security-best-practices.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/security-best-practices/pages/general-security-best-practices.adoc -------------------------------------------------------------------------------- /modules/security-best-practices/pages/introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/security-best-practices/pages/introduction.adoc -------------------------------------------------------------------------------- /modules/security-best-practices/pages/rust-canister-development-security-best-practices.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/security-best-practices/pages/rust-canister-development-security-best-practices.adoc -------------------------------------------------------------------------------- /modules/security-best-practices/pages/web-app-development-security-best-practices.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/security-best-practices/pages/web-app-development-security-best-practices.adoc -------------------------------------------------------------------------------- /modules/token-holders/assets/images/DFN-address-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/DFN-address-screenshot.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/DFN-extension-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/DFN-extension-screenshot.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/Etherscan-FDC-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/Etherscan-FDC-query.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/accounts.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/canister-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/canister-list.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/confirm-following.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/confirm-following.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/confirm-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/confirm-send.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/confirm-top-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/confirm-top-up.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/confirmation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/confirmation.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/convert-to-cycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/convert-to-cycles.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/create-dissolve-neuron-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/create-dissolve-neuron-api.svg -------------------------------------------------------------------------------- /modules/token-holders/assets/images/disburse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/disburse.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/dissolve-delay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/dissolve-delay.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/follow-ica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/follow-ica.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/neuron-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/neuron-properties.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/new-canister-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/new-canister-id.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/new-linked-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/new-linked-account.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/nns-app-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/nns-app-main.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/select-account-to-disburse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/select-account-to-disburse.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/stake-one-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/stake-one-token.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/unlocked-neuron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/unlocked-neuron.png -------------------------------------------------------------------------------- /modules/token-holders/assets/images/updated-icp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/assets/images/updated-icp.png -------------------------------------------------------------------------------- /modules/token-holders/pages/custody-options-intro.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/pages/custody-options-intro.adoc -------------------------------------------------------------------------------- /modules/token-holders/pages/nns-app-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/pages/nns-app-quickstart.adoc -------------------------------------------------------------------------------- /modules/token-holders/pages/seed-donations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/pages/seed-donations.adoc -------------------------------------------------------------------------------- /modules/token-holders/pages/self-custody-quickstart.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/docs/HEAD/modules/token-holders/pages/self-custody-quickstart.adoc --------------------------------------------------------------------------------