├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── MoveDID-Audit-Report.pdf ├── MoveDID-Deck-EN.pdf ├── README.md ├── design ├── collection.svg ├── move-did-dark.png └── move-did.png ├── did-aptos ├── Move.toml ├── README.md └── sources │ ├── addr_aggregator.move │ ├── addr_aggregator.spec.move.bak │ ├── addr_aptos.move │ ├── addr_aptos.spec.move.bak │ ├── addr_bitcoin_verfificated_offline.move.bak │ ├── addr_eth.move │ ├── addr_eth.spec.move.bak │ ├── addr_info.move │ ├── addr_info.spec.move.bak │ ├── eth_sig_verifier.move │ ├── eth_sig_verifier.spec.move.bak │ ├── init.move │ ├── service_aggregator.move │ ├── service_aggregator.spec.move.bak │ ├── utils.move │ └── utils.spec.move.bak ├── did-nft ├── collection.svg ├── type_0.png ├── type_1.png ├── type_2.png └── type_3.png ├── did-rooch └── did-rooch │ ├── Move.toml │ └── sources │ └── addr_aggregator.move ├── docs ├── .gitattributes ├── .gitignore ├── .prettierignore ├── README.md ├── babel.config.js ├── docs │ ├── bodhi │ │ └── index.md │ ├── guides-for-moveflow.md.bak │ ├── images │ │ ├── airdropper_structure.png │ │ ├── did_manager.png │ │ ├── faas_structure.jpeg │ │ └── rmud_logo.png │ ├── index.md │ ├── movedid │ │ ├── index.md │ │ ├── movedid-contract.md │ │ ├── movedid-specification.md │ │ └── movedid-vc-specification.md │ ├── rmud-public-goods │ │ ├── index.md │ │ └── tai-shang-micro-faas-system.md │ └── rmud-white-paper.md ├── docusaurus.config.js ├── netlify.toml ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── BlockQuote │ │ │ ├── index.module.css │ │ │ └── index.tsx │ │ ├── Cards │ │ │ ├── BaseContainer │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── CardsWrapper │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── SimpleTextCard │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ │ ├── WithBackgroundImage │ │ │ │ └── index.tsx │ │ │ └── index.js │ │ ├── Link │ │ │ └── index.js │ │ ├── PublicationArchiveList │ │ │ └── index.js │ │ ├── PublicationLink │ │ │ └── index.js │ │ └── variables.module.css │ ├── css │ │ └── custom.css │ └── remark │ │ └── code-injector.js ├── static │ ├── .nojekyll │ ├── api │ │ ├── devnet-api.html │ │ └── latest-api.html │ ├── img │ │ ├── ab-icon@2x.svg │ │ ├── accounts-dark.svg │ │ ├── accounts.svg │ │ ├── admin-dark.svg │ │ ├── admin.svg │ │ ├── aptos-clients-dark.svg │ │ ├── aptos-clients.svg │ │ ├── aptos-coin-sourcing-dark.svg │ │ ├── aptos-coin-sourcing.svg │ │ ├── aptos-header-logo-white.png │ │ ├── aptos-keys-dark.svg │ │ ├── aptos-keys.svg │ │ ├── aptos-logo.png │ │ ├── aptos-logomark-white.png │ │ ├── aptos-nodes-dark.svg │ │ ├── aptos-nodes.svg │ │ ├── aptos.ico │ │ ├── aptos_logo_wordmark_transparent_blk.png │ │ ├── aptos_logo_wordmark_transparent_white.png │ │ ├── aptos_meta_opengraph_051222.jpg │ │ ├── aptos_word.svg │ │ ├── aptos_word_dark.svg │ │ ├── backend-dark.svg │ │ ├── backend.svg │ │ ├── bg-circle-half.svg │ │ ├── bg-circle-whole.svg │ │ ├── bobby-pin-2.svg │ │ ├── bobby-pin-dark.svg │ │ ├── bobby-pin.svg │ │ ├── borrowing-and-references-dark.svg │ │ ├── borrowing-and-references.svg │ │ ├── capability-passing-dark.svg │ │ ├── capability-passing.svg │ │ ├── cli-dark.svg │ │ ├── cli-reference-dark.svg │ │ ├── cli-reference.svg │ │ ├── cli.svg │ │ ├── cog-dark.png │ │ ├── cog.png │ │ ├── compliance-dark.svg │ │ ├── compliance.svg │ │ ├── concepts-dark.svg │ │ ├── concepts.svg │ │ ├── configure-public-full-node-dark.svg │ │ ├── configure-public-full-node.svg │ │ ├── contribute-dark.svg │ │ ├── contribute.svg │ │ ├── core-contributors-dark.svg │ │ ├── core-contributors-potential-new.svg │ │ ├── core-contributors.svg │ │ ├── core-dark.svg │ │ ├── core.svg │ │ ├── crowdboost-dark.svg │ │ ├── crowdboost.svg │ │ ├── custody-dark.svg │ │ ├── custody.svg │ │ ├── debugging-move-in-aptos-network-dark.svg │ │ ├── debugging-move-in-aptos-network.svg │ │ ├── develop-dark.svg │ │ ├── develop.svg │ │ ├── developers-illustration.png │ │ ├── docs.png │ │ ├── docs │ │ │ ├── 0-explorer-select-network-dark.png │ │ │ ├── 0-explorer-select-network.png │ │ │ ├── 1-explorer-search-txn-dark.png │ │ │ ├── 1-explorer-search-txn.png │ │ │ ├── 1-life-of-txn-dark.svg │ │ │ ├── 1-life-of-txn.svg │ │ │ ├── 2-explorer-home-dark.png │ │ │ ├── 2-explorer-home.png │ │ │ ├── 2-life-of-txn-dark.svg │ │ │ ├── 2-life-of-txn.svg │ │ │ ├── 3-explorer-transactions-dark.png │ │ │ ├── 3-explorer-transactions.png │ │ │ ├── 3-life-of-txn-dark.svg │ │ │ ├── 3-life-of-txn.svg │ │ │ ├── 4-explorer-txn-details-dark.png │ │ │ ├── 4-explorer-txn-details.png │ │ │ ├── 4-life-of-txn-dark.svg │ │ │ ├── 4-life-of-txn.svg │ │ │ ├── 5-explorer-account-dark.png │ │ │ ├── 5-explorer-account.png │ │ │ ├── 5-life-of-txn-dark.svg │ │ │ ├── 5-life-of-txn.svg │ │ │ ├── 6-explorer-token-acitivities-dark.png │ │ │ ├── 6-explorer-token-acitivities.png │ │ │ ├── 6-life-of-txn-dark.svg │ │ │ ├── 6-life-of-txn.svg │ │ │ ├── 7-explorer-latest-blocks-dark.png │ │ │ ├── 7-explorer-latest-blocks.png │ │ │ ├── 7-life-of-txn-dark.svg │ │ │ ├── 7-life-of-txn.svg │ │ │ ├── 8-explorer-block-transactions-dark.png │ │ │ ├── 8-explorer-block-transactions.png │ │ │ ├── 9-explorer-validators-dark.png │ │ │ ├── 9-explorer-validators.png │ │ │ ├── add-funds.svg │ │ │ ├── admin-dash.png │ │ │ ├── aptos-blockchain-pdf.png │ │ │ ├── aptos-c-sourcing.svg │ │ │ ├── aptos-indexing-dark.svg │ │ │ ├── aptos-indexing.svg │ │ │ ├── aptos-move-paper.png │ │ │ ├── aptos-token-standard-flow-v1.png │ │ │ ├── aptos-whitepaper-pdf.png │ │ │ ├── aptos-whitepaper-pdf@2x.png │ │ │ ├── architecture-dark.svg │ │ │ ├── architecture.svg │ │ │ ├── beaker-dark.svg │ │ │ ├── beaker.svg │ │ │ ├── blueprint-dark.svg │ │ │ ├── blueprint.svg │ │ │ ├── building-dark.svg │ │ │ ├── building.svg │ │ │ ├── check-transaction.png │ │ │ ├── client-service.svg │ │ │ ├── coins-dark.svg │ │ │ ├── coins.svg │ │ │ ├── connect-to-ait3-and-join-validator-set.svg │ │ │ ├── consensus.svg │ │ │ ├── council-tsc-operations.svg │ │ │ ├── creating-signed-transaction-dark.svg │ │ │ ├── creating-signed-transaction-light.svg │ │ │ ├── crossed-tools-dark.svg │ │ │ ├── crossed-tools.svg │ │ │ ├── cube.svg │ │ │ ├── custody-dark.svg │ │ │ ├── custody.svg │ │ │ ├── cycle.svg │ │ │ ├── dashboard-dark.svg │ │ │ ├── dashboard.svg │ │ │ ├── dice-dark.svg │ │ │ ├── dice.svg │ │ │ ├── direct-payment-usecase.svg │ │ │ ├── direct-payments.svg │ │ │ ├── events-fig1.svg │ │ │ ├── events-fig2.svg │ │ │ ├── execute-transactions.png │ │ │ ├── execution.svg │ │ │ ├── fist-dark.svg │ │ │ ├── fist.svg │ │ │ ├── flow-dark.svg │ │ │ ├── flow.svg │ │ │ ├── initialize-staking-pool-dark.svg │ │ │ ├── initialize-staking-pool.svg │ │ │ ├── install-node-and-register.svg │ │ │ ├── install-validator-and-register-dark.svg │ │ │ ├── install-validator-and-register.svg │ │ │ ├── jellyfish-merkle-tree-pdf.png │ │ │ ├── key-yamls-dark.svg │ │ │ ├── key-yamls.svg │ │ │ ├── language-settings.svg │ │ │ ├── liquidity-dark.svg │ │ │ ├── liquidity.svg │ │ │ ├── local-mobile-wallet-dark.svg │ │ │ ├── local-mobile-wallet.svg │ │ │ ├── local-web-wallet-dark.svg │ │ │ ├── local-web-wallet.svg │ │ │ ├── localization-dark.svg │ │ │ ├── localization.svg │ │ │ ├── login-dark.svg │ │ │ ├── login.svg │ │ │ ├── mempool.svg │ │ │ ├── merchant-buy.svg │ │ │ ├── merchant-checkout.svg │ │ │ ├── merchant-payment-mgmt1.svg │ │ │ ├── merchant-payment-mgmt2.svg │ │ │ ├── merchant-solutions-dark.svg │ │ │ ├── merchant-solutions.svg │ │ │ ├── merkle-accumulators.svg │ │ │ ├── mobile-w-receive.png │ │ │ ├── mobile-w-send.png │ │ │ ├── modify-settings.svg │ │ │ ├── move-language-pdf.png │ │ │ ├── move-language-pdf@2x.png │ │ │ ├── operator-flow-dark.svg │ │ │ ├── operator-flow.svg │ │ │ ├── overlapping-circle.svg │ │ │ ├── owner-staking-op-voter-actions.svg │ │ │ ├── payment-payouts.svg │ │ │ ├── pubsub-dark.svg │ │ │ ├── pubsub.svg │ │ │ ├── reference-wallet-dark.svg │ │ │ ├── reference-wallet.svg │ │ │ ├── rest-service.svg │ │ │ ├── rust-alt-dark.png │ │ │ ├── rust-alt.png │ │ │ ├── sdk-cplusplus.png │ │ │ ├── sdk-csharp.png │ │ │ ├── sdk-go.png │ │ │ ├── sdk-java.png │ │ │ ├── sdk-python.png │ │ │ ├── sdk-rust.png │ │ │ ├── sdk-typescript.png │ │ │ ├── service-api-account.svg │ │ │ ├── service-api-admin.svg │ │ │ ├── service-api-cico.svg │ │ │ ├── service-api-user.svg │ │ │ ├── service-apis-dark.svg │ │ │ ├── service-apis.svg │ │ │ ├── sign-in-to-survey-dark.svg │ │ │ ├── sign-in-to-survey.svg │ │ │ ├── stake-state-dark.svg │ │ │ ├── stake-state.svg │ │ │ ├── staking-dark.svg │ │ │ ├── staking-light.svg │ │ │ ├── state-machine-pdf.png │ │ │ ├── state-machine-pdf@2x.png │ │ │ ├── storage.svg │ │ │ ├── token-standard-dark-mode.svg │ │ │ ├── token-standard-light-mode.svg │ │ │ ├── transactions-and-state-dark.svg │ │ │ ├── transactions-and-state.svg │ │ │ ├── transactions.svg │ │ │ ├── ts-sdk-dark.svg │ │ │ ├── ts-sdk-light.svg │ │ │ ├── userflows-demo-wallet.svg │ │ │ ├── userflows-local-wallet.svg │ │ │ ├── using-gas.svg │ │ │ ├── v-fn-network.svg │ │ │ ├── validator-deploy-flow-dark.svg │ │ │ ├── validator-deploy-flow.svg │ │ │ ├── validator-state-dark.svg │ │ │ ├── validator-state.svg │ │ │ ├── validator.svg │ │ │ ├── virtual-machine.svg │ │ │ ├── voter-flow-dark.svg │ │ │ ├── voter-flow.svg │ │ │ ├── voting-resolution-flow-dark.svg │ │ │ ├── voting-resolution-flow.svg │ │ │ ├── wallet-actions.svg │ │ │ ├── wallet-dark.svg │ │ │ ├── wallet-home.svg │ │ │ ├── wallet-storage-dark.svg │ │ │ ├── wallet-storage.svg │ │ │ ├── wallet.svg │ │ │ ├── wave-top-dark.svg │ │ │ └── wave-top.svg │ │ ├── document-dark.svg │ │ ├── document.svg │ │ ├── encapsulating-data-behavior-dark.svg │ │ ├── encapsulating-data-behavior.svg │ │ ├── escrow-dark.svg │ │ ├── escrow.svg │ │ ├── events-dark.svg │ │ ├── events.svg │ │ ├── external-link.png │ │ ├── first-logo-dark.svg │ │ ├── first-logo.svg │ │ ├── form-icon.svg │ │ ├── frontend-dark.svg │ │ ├── frontend.svg │ │ ├── gas-dark.svg │ │ ├── gas.svg │ │ ├── github-dark.svg │ │ ├── github.svg │ │ ├── go-sdk-dark.svg │ │ ├── go-sdk.svg │ │ ├── hero.jpg │ │ ├── home-dark.svg │ │ ├── home.svg │ │ ├── integrate-your-merchant-store-with-the-lpn-dark.svg │ │ ├── integrate-your-merchant-store-with-the-lpn.svg │ │ ├── introduction-to-move-dark.svg │ │ ├── introduction-to-move.svg │ │ ├── introduction-to-wallets-dark.svg │ │ ├── introduction-to-wallets.svg │ │ ├── java-sdk-dark.svg │ │ ├── java-sdk.svg │ │ ├── keywords-dark.svg │ │ ├── keywords.svg │ │ ├── libra-nodes-dark.svg │ │ ├── libra-nodes.svg │ │ ├── life-of-a-transaction-dark.svg │ │ ├── life-of-a-transaction.svg │ │ ├── liquidity-dark.svg │ │ ├── liquidity.svg │ │ ├── local-mobile-wallet-dark.svg │ │ ├── local-mobile-wallet.svg │ │ ├── local-web-wallet-dark.svg │ │ ├── local-web-wallet.svg │ │ ├── localization-dark.svg │ │ ├── localization.svg │ │ ├── login-and-authentication-dark.svg │ │ ├── login-and-authentication.svg │ │ ├── logo.svg │ │ ├── manage-aptos-keys-dark.svg │ │ ├── manage-aptos-keys.svg │ │ ├── manage-keys-dark.svg │ │ ├── manage-keys.svg │ │ ├── marketing-arrow.svg │ │ ├── marketing-module.jpg │ │ ├── merchant-introduction-dark.svg │ │ ├── merchant-introduction.svg │ │ ├── merchant-solutions-dark.svg │ │ ├── merchant-solutions.svg │ │ ├── merchant-store-dark.svg │ │ ├── merchant-store.svg │ │ ├── mobile-dark.svg │ │ ├── mobile.svg │ │ ├── modules-and-scripts-dark.svg │ │ ├── modules-and-scripts.svg │ │ ├── move-and-copy-dark.svg │ │ ├── move-and-copy.svg │ │ ├── move-did-dark.png │ │ ├── move-did.png │ │ ├── move-storage-and-execution-model-dark.svg │ │ ├── move-storage-and-execution-model.svg │ │ ├── move-tools-dark.svg │ │ ├── move-tools.svg │ │ ├── my-first-client-dark.svg │ │ ├── my-first-client.svg │ │ ├── my-first-transaction-dark-tutorials.svg │ │ ├── my-first-transaction-dark.svg │ │ ├── my-first-transaction-tutorials.svg │ │ ├── my-first-transaction.svg │ │ ├── node-operators-dark.svg │ │ ├── node-operators.svg │ │ ├── nyan.jpeg │ │ ├── operators-dark.svg │ │ ├── operators.svg │ │ ├── overlapping-circle-and-square-2.svg │ │ ├── overlapping-circle-and-square-dark.svg │ │ ├── overlapping-circle-and-square.svg │ │ ├── payment-management-dark.svg │ │ ├── payment-management.svg │ │ ├── placeholder-dark.svg │ │ ├── placeholder.svg │ │ ├── protocol-overview-dark.svg │ │ ├── protocol-overview.svg │ │ ├── public-demo-dark.svg │ │ ├── public-demo-wallet-dark.svg │ │ ├── public-demo-wallet.svg │ │ ├── public-demo.svg │ │ ├── pubsub-dark.svg │ │ ├── pubsub.svg │ │ ├── python-sdk-dark.svg │ │ ├── python-sdk.svg │ │ ├── query-the-blockchain-dark-tutorials.svg │ │ ├── query-the-blockchain-dark.svg │ │ ├── query-the-blockchain-tutorials.svg │ │ ├── query-the-blockchain.svg │ │ ├── reference-dark.svg │ │ ├── reference-documentation-dark.svg │ │ ├── reference-documentation.svg │ │ ├── reference-safety.svg │ │ ├── rest-service-dark.svg │ │ ├── rest-service.svg │ │ ├── risk-dark.svg │ │ ├── risk.svg │ │ ├── rmud_logo.png │ │ ├── roadmap.png │ │ ├── role-based-access-control-dark.svg │ │ ├── role-based-access-control.svg │ │ ├── run-a-local-network-dark-tutorials.svg │ │ ├── run-a-local-network-dark.svg │ │ ├── run-a-local-network-tutorials.svg │ │ ├── run-a-local-network.svg │ │ ├── run-local-network-dark.svg │ │ ├── run-local-network.svg │ │ ├── rust.png │ │ ├── sdk.png │ │ ├── sdks-dark.svg │ │ ├── sdks.svg │ │ ├── security-dark.svg │ │ ├── security.svg │ │ ├── securityemail.png │ │ ├── service-apis-dark.svg │ │ ├── service-apis.svg │ │ ├── set-up-for-development-dark.svg │ │ ├── set-up-for-development.svg │ │ ├── shared │ │ │ ├── arrow-left-dark-hover.svg │ │ │ ├── arrow-left-hover.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-pressed.svg │ │ │ ├── close.svg │ │ │ ├── copy-dark-hover.svg │ │ │ ├── copy-dark.svg │ │ │ ├── copy-hover.svg │ │ │ ├── copy.svg │ │ │ ├── edit-dark-hover.svg │ │ │ ├── edit-hover.svg │ │ │ ├── edit.svg │ │ │ ├── favicon.ico │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── newsletter-dark-hover.svg │ │ │ ├── newsletter-dark.svg │ │ │ ├── newsletter-hover.svg │ │ │ ├── newsletter.svg │ │ │ ├── search.svg │ │ │ ├── share-logo.jpg │ │ │ ├── vertical-ellipse.svg │ │ │ ├── white-paper-dark.svg │ │ │ └── white-paper.svg │ │ ├── socials │ │ │ ├── discord.svg │ │ │ ├── git.svg │ │ │ ├── hero_v3-min.9c96f35d.jpg │ │ │ ├── linkedin.svg │ │ │ ├── medium.svg │ │ │ └── twitter.svg │ │ ├── storage-dark.svg │ │ ├── storage.svg │ │ ├── structure-dark.svg │ │ ├── structure.svg │ │ ├── technical-papers-dark.svg │ │ ├── technical-papers.svg │ │ ├── terminology-dark.svg │ │ ├── terminology.svg │ │ ├── test-the-aptos-reference-wallet-dark.svg │ │ ├── test-the-aptos-reference-wallet.svg │ │ ├── test-the-merchant-store-dark.svg │ │ ├── test-the-merchant-store-web-dark.svg │ │ ├── test-the-merchant-store-web.svg │ │ ├── test-the-merchant-store.svg │ │ ├── thumbs-down.svg │ │ ├── thumbs-up.svg │ │ ├── token_data.png │ │ ├── toy-coin-dark.svg │ │ ├── toy-coin.svg │ │ ├── transaction-dark.svg │ │ ├── transaction-types-dark.svg │ │ ├── transaction-types.svg │ │ ├── transaction-workflows-dark.svg │ │ ├── transaction-workflows.svg │ │ ├── transaction.svg │ │ ├── try-the-public-demo-dark.svg │ │ ├── try-the-public-demo.svg │ │ ├── tutorial-gcp-logging1.png │ │ ├── tutorial-gcp-logging2.png │ │ ├── tutorial-gcp-logging3.png │ │ ├── tutorial-gcp-logging4.png │ │ ├── tutorial-gcp-logging5.png │ │ ├── tutorial-gcp-mon1.png │ │ ├── tutorial-gcp-mon2.png │ │ ├── tutorials-dark.svg │ │ ├── tutorials.svg │ │ ├── understanding-type-indexed-storage-dark.svg │ │ ├── understanding-type-indexed-storage.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ ├── undraw_docusaurus_tree.svg │ │ ├── use-payment-management-dark.svg │ │ ├── use-payment-management.svg │ │ ├── use-the-admin-dashboard-dark.svg │ │ ├── use-the-admin-dashboard.svg │ │ ├── vasp-dark.svg │ │ ├── vasp.svg │ │ ├── vertical-ellipse.svg │ │ ├── vfn-network.svg │ │ ├── wallet-administration-dashboard-dark.svg │ │ ├── wallet-administration-dashboard.svg │ │ ├── wallet-app-dark.svg │ │ ├── wallet-app.svg │ │ ├── wallet-architecture-dark.svg │ │ ├── wallet-architecture.svg │ │ ├── wallet-integration-guide-dark.svg │ │ ├── wallet-integration-guide.svg │ │ ├── wallets-dark.svg │ │ ├── wallets.svg │ │ ├── web-dark.svg │ │ ├── web.svg │ │ ├── white-paper-excerpt.svg │ │ └── white-paper.png │ ├── move-examples │ │ ├── Cargo.toml │ │ ├── data_structures │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ ├── big_vector.move │ │ │ │ ├── bucket_table.move │ │ │ │ └── iterable_table.move │ │ ├── governance │ │ │ ├── Move.toml │ │ │ ├── metadata-example.json │ │ │ └── sources │ │ │ │ ├── block_update_epoch_interval.move │ │ │ │ ├── governance_update_voting_duration.move │ │ │ │ ├── stake_update_min_max.move │ │ │ │ ├── stake_update_recurring_lockup_time.move │ │ │ │ ├── stake_update_rewards_rate.move │ │ │ │ └── stake_update_voting_power_increase_limit.move │ │ ├── hello_blockchain │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ ├── hello_blockchain.move │ │ │ │ └── hello_blockchain_test.move │ │ ├── hello_prover │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ └── prove.move │ │ ├── loot_liked_nft │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ └── svg_handler.move │ │ ├── marketplace │ │ │ ├── Move.toml │ │ │ ├── readme.md │ │ │ └── sources │ │ │ │ ├── marketplace_auction_example.move │ │ │ │ ├── marketplace_bid_utils.move │ │ │ │ ├── marketplace_instant_sale_example.move │ │ │ │ └── marketplace_listing_utils.move │ │ ├── message_board │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ ├── acl_message_board.move │ │ │ │ ├── cap_message_board.move │ │ │ │ └── offer.move │ │ ├── mint_nft │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ └── minting.move │ │ ├── moon_coin │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ └── MoonCoin.move │ │ ├── resource_account │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ └── simple_defi.move │ │ ├── scripts │ │ │ ├── minter │ │ │ │ ├── Move.toml │ │ │ │ └── sources │ │ │ │ │ └── minter.move │ │ │ └── two_by_two_transfer │ │ │ │ ├── Move.toml │ │ │ │ └── sources │ │ │ │ └── script.move │ │ ├── shared_account │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ └── shared_account.move │ │ ├── split_transfer │ │ │ ├── Move.toml │ │ │ └── sources │ │ │ │ └── split_transfer.move │ │ ├── src │ │ │ ├── lib.rs │ │ │ └── main.rs │ │ └── tests │ │ │ ├── move_prover_tests.rs │ │ │ └── move_unit_tests.rs │ ├── papers │ │ ├── 2020-05-26.pdf │ │ ├── Aptos-Whitepaper.pdf │ │ ├── aptos-consensus-state-machine-replication-in-the-aptos-blockchain │ │ │ ├── 2019-06-28.pdf │ │ │ ├── 2019-09-26.pdf │ │ │ ├── 2019-10-24.pdf │ │ │ ├── 2019-11-08.pdf │ │ │ ├── 2020-04-09.pdf │ │ │ ├── 2020-05-26.pdf │ │ │ ├── 2021-08-17.pdf │ │ │ └── 2022-09-14.pdf │ │ ├── aptos-move-a-language-with-programmable-resources │ │ │ ├── 2019-06-18.pdf │ │ │ ├── 2019-09-26.pdf │ │ │ ├── 2020-04-09.pdf │ │ │ └── 2020-05-26.pdf │ │ ├── jellyfish-merkle-tree │ │ │ └── 2021-01-14.pdf │ │ ├── the-aptos-blockchain │ │ │ ├── 2019-06-25.pdf │ │ │ ├── 2019-09-18.pdf │ │ │ ├── 2019-09-26.pdf │ │ │ ├── 2020-04-09.pdf │ │ │ └── 2020-05-26.pdf │ │ ├── whitepaper-korean.pdf │ │ └── whitepaper.pdf │ └── sdks │ │ ├── python │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── aptos_sdk │ │ │ ├── __init__.py │ │ │ ├── account.py │ │ │ ├── account_address.py │ │ │ ├── authenticator.py │ │ │ ├── bcs.py │ │ │ ├── client.py │ │ │ ├── ed25519.py │ │ │ ├── transactions.py │ │ │ └── type_tag.py │ │ ├── examples │ │ │ ├── .gitignore │ │ │ ├── common.py │ │ │ ├── hello-blockchain.py │ │ │ ├── simple-nft.py │ │ │ ├── transfer-coin.py │ │ │ ├── transfer-two-by-two.py │ │ │ ├── two_by_two_transfer.mv │ │ │ └── your-coin.py │ │ ├── poetry.lock │ │ ├── pyproject.toml │ │ └── setup.py │ │ ├── rust │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── examples │ │ │ └── transfer-coin.rs │ │ ├── publishing.md │ │ └── src │ │ │ ├── coin_client.rs │ │ │ ├── lib.rs │ │ │ ├── transaction_builder.rs │ │ │ └── types.rs │ │ └── typescript │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .nvmrc │ │ ├── .prettierignore │ │ ├── .versionrc.json │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── check.sh │ │ ├── checked_publish.sh │ │ ├── examples │ │ ├── README.md │ │ ├── javascript │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── typescript-esm │ │ │ ├── index.ts │ │ │ ├── package.json │ │ │ ├── tsconfig.json │ │ │ └── yarn.lock │ │ └── typescript │ │ │ ├── bcs_transaction.ts │ │ │ ├── common.ts │ │ │ ├── multisig_transaction.ts │ │ │ ├── package.json │ │ │ ├── simple_nft.ts │ │ │ ├── transfer_coin.ts │ │ │ ├── tsconfig.json │ │ │ ├── yarn.lock │ │ │ └── your_coin.ts │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src │ │ ├── abis.ts │ │ ├── aptos_account.test.ts │ │ ├── aptos_account.ts │ │ ├── aptos_client.test.ts │ │ ├── aptos_client.ts │ │ ├── aptos_types │ │ │ ├── abi.test.ts │ │ │ ├── abi.ts │ │ │ ├── account_address.test.ts │ │ │ ├── account_address.ts │ │ │ ├── authentication_key.ts │ │ │ ├── authenticator.ts │ │ │ ├── ed25519.ts │ │ │ ├── identifier.ts │ │ │ ├── index.ts │ │ │ ├── multi_ed25519.test.ts │ │ │ ├── multi_ed25519.ts │ │ │ ├── rotation_proof_challenge.ts │ │ │ ├── transaction.ts │ │ │ └── type_tag.ts │ │ ├── bcs │ │ │ ├── consts.ts │ │ │ ├── deserializer.test.ts │ │ │ ├── deserializer.ts │ │ │ ├── helper.test.ts │ │ │ ├── helper.ts │ │ │ ├── index.ts │ │ │ ├── serializer.test.ts │ │ │ ├── serializer.ts │ │ │ └── types.ts │ │ ├── coin_client.test.ts │ │ ├── coin_client.ts │ │ ├── faucet_client.test.ts │ │ ├── faucet_client.ts │ │ ├── generated │ │ │ ├── AptosGeneratedClient.ts │ │ │ ├── core │ │ │ │ ├── ApiError.ts │ │ │ │ ├── ApiRequestOptions.ts │ │ │ │ ├── ApiResult.ts │ │ │ │ ├── AxiosHttpRequest.ts │ │ │ │ ├── BaseHttpRequest.ts │ │ │ │ ├── CancelablePromise.ts │ │ │ │ ├── OpenAPI.ts │ │ │ │ └── request.ts │ │ │ ├── index.ts │ │ │ ├── models │ │ │ │ ├── AccountData.ts │ │ │ │ ├── AccountSignature.ts │ │ │ │ ├── AccountSignature_Ed25519Signature.ts │ │ │ │ ├── AccountSignature_MultiEd25519Signature.ts │ │ │ │ ├── Address.ts │ │ │ │ ├── AptosError.ts │ │ │ │ ├── AptosErrorCode.ts │ │ │ │ ├── Block.ts │ │ │ │ ├── BlockMetadataTransaction.ts │ │ │ │ ├── DecodedTableData.ts │ │ │ │ ├── DeleteModule.ts │ │ │ │ ├── DeleteResource.ts │ │ │ │ ├── DeleteTableItem.ts │ │ │ │ ├── DeletedTableData.ts │ │ │ │ ├── DirectWriteSet.ts │ │ │ │ ├── Ed25519Signature.ts │ │ │ │ ├── EncodeSubmissionRequest.ts │ │ │ │ ├── EntryFunctionId.ts │ │ │ │ ├── EntryFunctionPayload.ts │ │ │ │ ├── Event.ts │ │ │ │ ├── EventGuid.ts │ │ │ │ ├── GasEstimation.ts │ │ │ │ ├── GenesisPayload.ts │ │ │ │ ├── GenesisPayload_WriteSetPayload.ts │ │ │ │ ├── GenesisTransaction.ts │ │ │ │ ├── HashValue.ts │ │ │ │ ├── HealthCheckSuccess.ts │ │ │ │ ├── HexEncodedBytes.ts │ │ │ │ ├── IdentifierWrapper.ts │ │ │ │ ├── IndexResponse.ts │ │ │ │ ├── ModuleBundlePayload.ts │ │ │ │ ├── MoveAbility.ts │ │ │ │ ├── MoveFunction.ts │ │ │ │ ├── MoveFunctionGenericTypeParam.ts │ │ │ │ ├── MoveFunctionVisibility.ts │ │ │ │ ├── MoveModule.ts │ │ │ │ ├── MoveModuleBytecode.ts │ │ │ │ ├── MoveModuleId.ts │ │ │ │ ├── MoveResource.ts │ │ │ │ ├── MoveScriptBytecode.ts │ │ │ │ ├── MoveStruct.ts │ │ │ │ ├── MoveStructField.ts │ │ │ │ ├── MoveStructGenericTypeParam.ts │ │ │ │ ├── MoveStructTag.ts │ │ │ │ ├── MoveStructValue.ts │ │ │ │ ├── MoveType.ts │ │ │ │ ├── MoveValue.ts │ │ │ │ ├── MultiAgentSignature.ts │ │ │ │ ├── MultiEd25519Signature.ts │ │ │ │ ├── PendingTransaction.ts │ │ │ │ ├── RoleType.ts │ │ │ │ ├── ScriptPayload.ts │ │ │ │ ├── ScriptWriteSet.ts │ │ │ │ ├── StateCheckpointTransaction.ts │ │ │ │ ├── SubmitTransactionRequest.ts │ │ │ │ ├── TableItemRequest.ts │ │ │ │ ├── Transaction.ts │ │ │ │ ├── TransactionPayload.ts │ │ │ │ ├── TransactionPayload_EntryFunctionPayload.ts │ │ │ │ ├── TransactionPayload_ModuleBundlePayload.ts │ │ │ │ ├── TransactionPayload_ScriptPayload.ts │ │ │ │ ├── TransactionSignature.ts │ │ │ │ ├── TransactionSignature_Ed25519Signature.ts │ │ │ │ ├── TransactionSignature_MultiAgentSignature.ts │ │ │ │ ├── TransactionSignature_MultiEd25519Signature.ts │ │ │ │ ├── Transaction_BlockMetadataTransaction.ts │ │ │ │ ├── Transaction_GenesisTransaction.ts │ │ │ │ ├── Transaction_PendingTransaction.ts │ │ │ │ ├── Transaction_StateCheckpointTransaction.ts │ │ │ │ ├── Transaction_UserTransaction.ts │ │ │ │ ├── TransactionsBatchSingleSubmissionFailure.ts │ │ │ │ ├── TransactionsBatchSubmissionResult.ts │ │ │ │ ├── U128.ts │ │ │ │ ├── U64.ts │ │ │ │ ├── UserTransaction.ts │ │ │ │ ├── VersionedEvent.ts │ │ │ │ ├── WriteModule.ts │ │ │ │ ├── WriteResource.ts │ │ │ │ ├── WriteSet.ts │ │ │ │ ├── WriteSetChange.ts │ │ │ │ ├── WriteSetChange_DeleteModule.ts │ │ │ │ ├── WriteSetChange_DeleteResource.ts │ │ │ │ ├── WriteSetChange_DeleteTableItem.ts │ │ │ │ ├── WriteSetChange_WriteModule.ts │ │ │ │ ├── WriteSetChange_WriteResource.ts │ │ │ │ ├── WriteSetChange_WriteTableItem.ts │ │ │ │ ├── WriteSetPayload.ts │ │ │ │ ├── WriteSet_DirectWriteSet.ts │ │ │ │ ├── WriteSet_ScriptWriteSet.ts │ │ │ │ └── WriteTableItem.ts │ │ │ ├── schemas │ │ │ │ ├── $AccountData.ts │ │ │ │ ├── $AccountSignature.ts │ │ │ │ ├── $AccountSignature_Ed25519Signature.ts │ │ │ │ ├── $AccountSignature_MultiEd25519Signature.ts │ │ │ │ ├── $Address.ts │ │ │ │ ├── $AptosError.ts │ │ │ │ ├── $AptosErrorCode.ts │ │ │ │ ├── $Block.ts │ │ │ │ ├── $BlockMetadataTransaction.ts │ │ │ │ ├── $DecodedTableData.ts │ │ │ │ ├── $DeleteModule.ts │ │ │ │ ├── $DeleteResource.ts │ │ │ │ ├── $DeleteTableItem.ts │ │ │ │ ├── $DeletedTableData.ts │ │ │ │ ├── $DirectWriteSet.ts │ │ │ │ ├── $Ed25519Signature.ts │ │ │ │ ├── $EncodeSubmissionRequest.ts │ │ │ │ ├── $EntryFunctionId.ts │ │ │ │ ├── $EntryFunctionPayload.ts │ │ │ │ ├── $Event.ts │ │ │ │ ├── $EventGuid.ts │ │ │ │ ├── $GasEstimation.ts │ │ │ │ ├── $GenesisPayload.ts │ │ │ │ ├── $GenesisPayload_WriteSetPayload.ts │ │ │ │ ├── $GenesisTransaction.ts │ │ │ │ ├── $HashValue.ts │ │ │ │ ├── $HealthCheckSuccess.ts │ │ │ │ ├── $HexEncodedBytes.ts │ │ │ │ ├── $IdentifierWrapper.ts │ │ │ │ ├── $IndexResponse.ts │ │ │ │ ├── $ModuleBundlePayload.ts │ │ │ │ ├── $MoveAbility.ts │ │ │ │ ├── $MoveFunction.ts │ │ │ │ ├── $MoveFunctionGenericTypeParam.ts │ │ │ │ ├── $MoveFunctionVisibility.ts │ │ │ │ ├── $MoveModule.ts │ │ │ │ ├── $MoveModuleBytecode.ts │ │ │ │ ├── $MoveModuleId.ts │ │ │ │ ├── $MoveResource.ts │ │ │ │ ├── $MoveScriptBytecode.ts │ │ │ │ ├── $MoveStruct.ts │ │ │ │ ├── $MoveStructField.ts │ │ │ │ ├── $MoveStructGenericTypeParam.ts │ │ │ │ ├── $MoveStructTag.ts │ │ │ │ ├── $MoveStructValue.ts │ │ │ │ ├── $MoveType.ts │ │ │ │ ├── $MoveValue.ts │ │ │ │ ├── $MultiAgentSignature.ts │ │ │ │ ├── $MultiEd25519Signature.ts │ │ │ │ ├── $PendingTransaction.ts │ │ │ │ ├── $RoleType.ts │ │ │ │ ├── $ScriptPayload.ts │ │ │ │ ├── $ScriptWriteSet.ts │ │ │ │ ├── $StateCheckpointTransaction.ts │ │ │ │ ├── $SubmitTransactionRequest.ts │ │ │ │ ├── $TableItemRequest.ts │ │ │ │ ├── $Transaction.ts │ │ │ │ ├── $TransactionPayload.ts │ │ │ │ ├── $TransactionPayload_EntryFunctionPayload.ts │ │ │ │ ├── $TransactionPayload_ModuleBundlePayload.ts │ │ │ │ ├── $TransactionPayload_ScriptPayload.ts │ │ │ │ ├── $TransactionSignature.ts │ │ │ │ ├── $TransactionSignature_Ed25519Signature.ts │ │ │ │ ├── $TransactionSignature_MultiAgentSignature.ts │ │ │ │ ├── $TransactionSignature_MultiEd25519Signature.ts │ │ │ │ ├── $Transaction_BlockMetadataTransaction.ts │ │ │ │ ├── $Transaction_GenesisTransaction.ts │ │ │ │ ├── $Transaction_PendingTransaction.ts │ │ │ │ ├── $Transaction_StateCheckpointTransaction.ts │ │ │ │ ├── $Transaction_UserTransaction.ts │ │ │ │ ├── $TransactionsBatchSingleSubmissionFailure.ts │ │ │ │ ├── $TransactionsBatchSubmissionResult.ts │ │ │ │ ├── $U128.ts │ │ │ │ ├── $U64.ts │ │ │ │ ├── $UserTransaction.ts │ │ │ │ ├── $VersionedEvent.ts │ │ │ │ ├── $WriteModule.ts │ │ │ │ ├── $WriteResource.ts │ │ │ │ ├── $WriteSet.ts │ │ │ │ ├── $WriteSetChange.ts │ │ │ │ ├── $WriteSetChange_DeleteModule.ts │ │ │ │ ├── $WriteSetChange_DeleteResource.ts │ │ │ │ ├── $WriteSetChange_DeleteTableItem.ts │ │ │ │ ├── $WriteSetChange_WriteModule.ts │ │ │ │ ├── $WriteSetChange_WriteResource.ts │ │ │ │ ├── $WriteSetChange_WriteTableItem.ts │ │ │ │ ├── $WriteSetPayload.ts │ │ │ │ ├── $WriteSet_DirectWriteSet.ts │ │ │ │ ├── $WriteSet_ScriptWriteSet.ts │ │ │ │ └── $WriteTableItem.ts │ │ │ └── services │ │ │ │ ├── AccountsService.ts │ │ │ │ ├── BlocksService.ts │ │ │ │ ├── EventsService.ts │ │ │ │ ├── GeneralService.ts │ │ │ │ ├── TablesService.ts │ │ │ │ └── TransactionsService.ts │ │ ├── hex_string.test.ts │ │ ├── hex_string.ts │ │ ├── index.ts │ │ ├── token_client.test.ts │ │ ├── token_client.ts │ │ ├── token_types.ts │ │ ├── transaction_builder │ │ │ ├── builder.ts │ │ │ ├── builder_utils.test.ts │ │ │ ├── builder_utils.ts │ │ │ ├── index.ts │ │ │ ├── transaction_builder.test.ts │ │ │ └── transaction_vector.test.ts │ │ └── utils │ │ │ ├── hd-key.ts │ │ │ ├── index.ts │ │ │ ├── memoize-decorator.ts │ │ │ ├── misc.test.ts │ │ │ ├── misc.ts │ │ │ └── test_helper.test.ts │ │ ├── tsconfig.json │ │ ├── tsup.config.js │ │ └── yarn.lock ├── tsconfig.json └── yarn.lock ├── manager-dapp ├── .gitignore ├── README.md ├── app │ ├── globals.css │ ├── layout.tsx │ └── page.tsx ├── components.json ├── components │ ├── header.tsx │ └── ui │ │ ├── button.tsx │ │ ├── input.tsx │ │ ├── select.tsx │ │ └── toast.tsx ├── eslint.config.mjs ├── hooks │ └── use-toast.ts ├── lib │ └── utils.ts ├── next.config.ts ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock ├── sbt-as-vc └── .gitkeep ├── sdk-deno ├── README.md ├── deno.json ├── deno.lock └── did_movement.tsx └── sdk-ex ├── .formatter.exs ├── .gitignore ├── README.md ├── lib ├── constants.ex ├── contract_interactor │ └── addr_aggregator.ex ├── did │ └── document.ex └── did_handler.ex ├── mix.exs ├── mix.lock └── test ├── did_handler_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "deno.enable": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/LICENSE -------------------------------------------------------------------------------- /MoveDID-Audit-Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/MoveDID-Audit-Report.pdf -------------------------------------------------------------------------------- /MoveDID-Deck-EN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/MoveDID-Deck-EN.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/README.md -------------------------------------------------------------------------------- /design/collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/design/collection.svg -------------------------------------------------------------------------------- /design/move-did-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/design/move-did-dark.png -------------------------------------------------------------------------------- /design/move-did.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/design/move-did.png -------------------------------------------------------------------------------- /did-aptos/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/Move.toml -------------------------------------------------------------------------------- /did-aptos/README.md: -------------------------------------------------------------------------------- 1 | # did-aptos 2 | -------------------------------------------------------------------------------- /did-aptos/sources/addr_aggregator.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_aggregator.move -------------------------------------------------------------------------------- /did-aptos/sources/addr_aggregator.spec.move.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_aggregator.spec.move.bak -------------------------------------------------------------------------------- /did-aptos/sources/addr_aptos.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_aptos.move -------------------------------------------------------------------------------- /did-aptos/sources/addr_aptos.spec.move.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_aptos.spec.move.bak -------------------------------------------------------------------------------- /did-aptos/sources/addr_bitcoin_verfificated_offline.move.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_bitcoin_verfificated_offline.move.bak -------------------------------------------------------------------------------- /did-aptos/sources/addr_eth.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_eth.move -------------------------------------------------------------------------------- /did-aptos/sources/addr_eth.spec.move.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_eth.spec.move.bak -------------------------------------------------------------------------------- /did-aptos/sources/addr_info.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_info.move -------------------------------------------------------------------------------- /did-aptos/sources/addr_info.spec.move.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/addr_info.spec.move.bak -------------------------------------------------------------------------------- /did-aptos/sources/eth_sig_verifier.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/eth_sig_verifier.move -------------------------------------------------------------------------------- /did-aptos/sources/eth_sig_verifier.spec.move.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/eth_sig_verifier.spec.move.bak -------------------------------------------------------------------------------- /did-aptos/sources/init.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/init.move -------------------------------------------------------------------------------- /did-aptos/sources/service_aggregator.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/service_aggregator.move -------------------------------------------------------------------------------- /did-aptos/sources/service_aggregator.spec.move.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/service_aggregator.spec.move.bak -------------------------------------------------------------------------------- /did-aptos/sources/utils.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/utils.move -------------------------------------------------------------------------------- /did-aptos/sources/utils.spec.move.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-aptos/sources/utils.spec.move.bak -------------------------------------------------------------------------------- /did-nft/collection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-nft/collection.svg -------------------------------------------------------------------------------- /did-nft/type_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-nft/type_0.png -------------------------------------------------------------------------------- /did-nft/type_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-nft/type_1.png -------------------------------------------------------------------------------- /did-nft/type_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-nft/type_2.png -------------------------------------------------------------------------------- /did-nft/type_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-nft/type_3.png -------------------------------------------------------------------------------- /did-rooch/did-rooch/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-rooch/did-rooch/Move.toml -------------------------------------------------------------------------------- /did-rooch/did-rooch/sources/addr_aggregator.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/did-rooch/did-rooch/sources/addr_aggregator.move -------------------------------------------------------------------------------- /docs/.gitattributes: -------------------------------------------------------------------------------- 1 | *.md -whitespace 2 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/.prettierignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/bodhi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/bodhi/index.md -------------------------------------------------------------------------------- /docs/docs/guides-for-moveflow.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/guides-for-moveflow.md.bak -------------------------------------------------------------------------------- /docs/docs/images/airdropper_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/images/airdropper_structure.png -------------------------------------------------------------------------------- /docs/docs/images/did_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/images/did_manager.png -------------------------------------------------------------------------------- /docs/docs/images/faas_structure.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/images/faas_structure.jpeg -------------------------------------------------------------------------------- /docs/docs/images/rmud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/images/rmud_logo.png -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/movedid/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/movedid/index.md -------------------------------------------------------------------------------- /docs/docs/movedid/movedid-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/movedid/movedid-contract.md -------------------------------------------------------------------------------- /docs/docs/movedid/movedid-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/movedid/movedid-specification.md -------------------------------------------------------------------------------- /docs/docs/movedid/movedid-vc-specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/movedid/movedid-vc-specification.md -------------------------------------------------------------------------------- /docs/docs/rmud-public-goods/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/rmud-public-goods/index.md -------------------------------------------------------------------------------- /docs/docs/rmud-public-goods/tai-shang-micro-faas-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/rmud-public-goods/tai-shang-micro-faas-system.md -------------------------------------------------------------------------------- /docs/docs/rmud-white-paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docs/rmud-white-paper.md -------------------------------------------------------------------------------- /docs/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/docusaurus.config.js -------------------------------------------------------------------------------- /docs/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/netlify.toml -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/sidebars.js -------------------------------------------------------------------------------- /docs/src/components/BlockQuote/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/BlockQuote/index.module.css -------------------------------------------------------------------------------- /docs/src/components/BlockQuote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/BlockQuote/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Cards/BaseContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Cards/BaseContainer/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Cards/BaseContainer/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Cards/BaseContainer/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/Cards/CardsWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Cards/CardsWrapper/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Cards/CardsWrapper/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Cards/CardsWrapper/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/Cards/SimpleTextCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Cards/SimpleTextCard/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Cards/SimpleTextCard/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Cards/SimpleTextCard/styles.module.css -------------------------------------------------------------------------------- /docs/src/components/Cards/WithBackgroundImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Cards/WithBackgroundImage/index.tsx -------------------------------------------------------------------------------- /docs/src/components/Cards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Cards/index.js -------------------------------------------------------------------------------- /docs/src/components/Link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/Link/index.js -------------------------------------------------------------------------------- /docs/src/components/PublicationArchiveList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/PublicationArchiveList/index.js -------------------------------------------------------------------------------- /docs/src/components/PublicationLink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/PublicationLink/index.js -------------------------------------------------------------------------------- /docs/src/components/variables.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/components/variables.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/remark/code-injector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/src/remark/code-injector.js -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/api/devnet-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/api/devnet-api.html -------------------------------------------------------------------------------- /docs/static/api/latest-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/api/latest-api.html -------------------------------------------------------------------------------- /docs/static/img/ab-icon@2x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/ab-icon@2x.svg -------------------------------------------------------------------------------- /docs/static/img/accounts-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/accounts-dark.svg -------------------------------------------------------------------------------- /docs/static/img/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/accounts.svg -------------------------------------------------------------------------------- /docs/static/img/admin-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/admin-dark.svg -------------------------------------------------------------------------------- /docs/static/img/admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/admin.svg -------------------------------------------------------------------------------- /docs/static/img/aptos-clients-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-clients-dark.svg -------------------------------------------------------------------------------- /docs/static/img/aptos-clients.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-clients.svg -------------------------------------------------------------------------------- /docs/static/img/aptos-coin-sourcing-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-coin-sourcing-dark.svg -------------------------------------------------------------------------------- /docs/static/img/aptos-coin-sourcing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-coin-sourcing.svg -------------------------------------------------------------------------------- /docs/static/img/aptos-header-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-header-logo-white.png -------------------------------------------------------------------------------- /docs/static/img/aptos-keys-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-keys-dark.svg -------------------------------------------------------------------------------- /docs/static/img/aptos-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-keys.svg -------------------------------------------------------------------------------- /docs/static/img/aptos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-logo.png -------------------------------------------------------------------------------- /docs/static/img/aptos-logomark-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-logomark-white.png -------------------------------------------------------------------------------- /docs/static/img/aptos-nodes-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-nodes-dark.svg -------------------------------------------------------------------------------- /docs/static/img/aptos-nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos-nodes.svg -------------------------------------------------------------------------------- /docs/static/img/aptos.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos.ico -------------------------------------------------------------------------------- /docs/static/img/aptos_logo_wordmark_transparent_blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos_logo_wordmark_transparent_blk.png -------------------------------------------------------------------------------- /docs/static/img/aptos_logo_wordmark_transparent_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos_logo_wordmark_transparent_white.png -------------------------------------------------------------------------------- /docs/static/img/aptos_meta_opengraph_051222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos_meta_opengraph_051222.jpg -------------------------------------------------------------------------------- /docs/static/img/aptos_word.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos_word.svg -------------------------------------------------------------------------------- /docs/static/img/aptos_word_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/aptos_word_dark.svg -------------------------------------------------------------------------------- /docs/static/img/backend-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/backend-dark.svg -------------------------------------------------------------------------------- /docs/static/img/backend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/backend.svg -------------------------------------------------------------------------------- /docs/static/img/bg-circle-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/bg-circle-half.svg -------------------------------------------------------------------------------- /docs/static/img/bg-circle-whole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/bg-circle-whole.svg -------------------------------------------------------------------------------- /docs/static/img/bobby-pin-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/bobby-pin-2.svg -------------------------------------------------------------------------------- /docs/static/img/bobby-pin-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/bobby-pin-dark.svg -------------------------------------------------------------------------------- /docs/static/img/bobby-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/bobby-pin.svg -------------------------------------------------------------------------------- /docs/static/img/borrowing-and-references-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/borrowing-and-references-dark.svg -------------------------------------------------------------------------------- /docs/static/img/borrowing-and-references.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/borrowing-and-references.svg -------------------------------------------------------------------------------- /docs/static/img/capability-passing-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/capability-passing-dark.svg -------------------------------------------------------------------------------- /docs/static/img/capability-passing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/capability-passing.svg -------------------------------------------------------------------------------- /docs/static/img/cli-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/cli-dark.svg -------------------------------------------------------------------------------- /docs/static/img/cli-reference-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/cli-reference-dark.svg -------------------------------------------------------------------------------- /docs/static/img/cli-reference.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/cli-reference.svg -------------------------------------------------------------------------------- /docs/static/img/cli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/cli.svg -------------------------------------------------------------------------------- /docs/static/img/cog-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/cog-dark.png -------------------------------------------------------------------------------- /docs/static/img/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/cog.png -------------------------------------------------------------------------------- /docs/static/img/compliance-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/compliance-dark.svg -------------------------------------------------------------------------------- /docs/static/img/compliance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/compliance.svg -------------------------------------------------------------------------------- /docs/static/img/concepts-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/concepts-dark.svg -------------------------------------------------------------------------------- /docs/static/img/concepts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/concepts.svg -------------------------------------------------------------------------------- /docs/static/img/configure-public-full-node-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/configure-public-full-node-dark.svg -------------------------------------------------------------------------------- /docs/static/img/configure-public-full-node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/configure-public-full-node.svg -------------------------------------------------------------------------------- /docs/static/img/contribute-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/contribute-dark.svg -------------------------------------------------------------------------------- /docs/static/img/contribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/contribute.svg -------------------------------------------------------------------------------- /docs/static/img/core-contributors-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/core-contributors-dark.svg -------------------------------------------------------------------------------- /docs/static/img/core-contributors-potential-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/core-contributors-potential-new.svg -------------------------------------------------------------------------------- /docs/static/img/core-contributors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/core-contributors.svg -------------------------------------------------------------------------------- /docs/static/img/core-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/core-dark.svg -------------------------------------------------------------------------------- /docs/static/img/core.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/core.svg -------------------------------------------------------------------------------- /docs/static/img/crowdboost-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/crowdboost-dark.svg -------------------------------------------------------------------------------- /docs/static/img/crowdboost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/crowdboost.svg -------------------------------------------------------------------------------- /docs/static/img/custody-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/custody-dark.svg -------------------------------------------------------------------------------- /docs/static/img/custody.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/custody.svg -------------------------------------------------------------------------------- /docs/static/img/debugging-move-in-aptos-network-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/debugging-move-in-aptos-network-dark.svg -------------------------------------------------------------------------------- /docs/static/img/debugging-move-in-aptos-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/debugging-move-in-aptos-network.svg -------------------------------------------------------------------------------- /docs/static/img/develop-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/develop-dark.svg -------------------------------------------------------------------------------- /docs/static/img/develop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/develop.svg -------------------------------------------------------------------------------- /docs/static/img/developers-illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/developers-illustration.png -------------------------------------------------------------------------------- /docs/static/img/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs.png -------------------------------------------------------------------------------- /docs/static/img/docs/0-explorer-select-network-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/0-explorer-select-network-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/0-explorer-select-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/0-explorer-select-network.png -------------------------------------------------------------------------------- /docs/static/img/docs/1-explorer-search-txn-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/1-explorer-search-txn-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/1-explorer-search-txn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/1-explorer-search-txn.png -------------------------------------------------------------------------------- /docs/static/img/docs/1-life-of-txn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/1-life-of-txn-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/1-life-of-txn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/1-life-of-txn.svg -------------------------------------------------------------------------------- /docs/static/img/docs/2-explorer-home-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/2-explorer-home-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/2-explorer-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/2-explorer-home.png -------------------------------------------------------------------------------- /docs/static/img/docs/2-life-of-txn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/2-life-of-txn-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/2-life-of-txn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/2-life-of-txn.svg -------------------------------------------------------------------------------- /docs/static/img/docs/3-explorer-transactions-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/3-explorer-transactions-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/3-explorer-transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/3-explorer-transactions.png -------------------------------------------------------------------------------- /docs/static/img/docs/3-life-of-txn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/3-life-of-txn-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/3-life-of-txn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/3-life-of-txn.svg -------------------------------------------------------------------------------- /docs/static/img/docs/4-explorer-txn-details-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/4-explorer-txn-details-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/4-explorer-txn-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/4-explorer-txn-details.png -------------------------------------------------------------------------------- /docs/static/img/docs/4-life-of-txn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/4-life-of-txn-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/4-life-of-txn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/4-life-of-txn.svg -------------------------------------------------------------------------------- /docs/static/img/docs/5-explorer-account-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/5-explorer-account-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/5-explorer-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/5-explorer-account.png -------------------------------------------------------------------------------- /docs/static/img/docs/5-life-of-txn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/5-life-of-txn-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/5-life-of-txn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/5-life-of-txn.svg -------------------------------------------------------------------------------- /docs/static/img/docs/6-explorer-token-acitivities-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/6-explorer-token-acitivities-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/6-explorer-token-acitivities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/6-explorer-token-acitivities.png -------------------------------------------------------------------------------- /docs/static/img/docs/6-life-of-txn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/6-life-of-txn-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/6-life-of-txn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/6-life-of-txn.svg -------------------------------------------------------------------------------- /docs/static/img/docs/7-explorer-latest-blocks-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/7-explorer-latest-blocks-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/7-explorer-latest-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/7-explorer-latest-blocks.png -------------------------------------------------------------------------------- /docs/static/img/docs/7-life-of-txn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/7-life-of-txn-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/7-life-of-txn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/7-life-of-txn.svg -------------------------------------------------------------------------------- /docs/static/img/docs/8-explorer-block-transactions-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/8-explorer-block-transactions-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/8-explorer-block-transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/8-explorer-block-transactions.png -------------------------------------------------------------------------------- /docs/static/img/docs/9-explorer-validators-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/9-explorer-validators-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/9-explorer-validators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/9-explorer-validators.png -------------------------------------------------------------------------------- /docs/static/img/docs/add-funds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/add-funds.svg -------------------------------------------------------------------------------- /docs/static/img/docs/admin-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/admin-dash.png -------------------------------------------------------------------------------- /docs/static/img/docs/aptos-blockchain-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/aptos-blockchain-pdf.png -------------------------------------------------------------------------------- /docs/static/img/docs/aptos-c-sourcing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/aptos-c-sourcing.svg -------------------------------------------------------------------------------- /docs/static/img/docs/aptos-indexing-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/aptos-indexing-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/aptos-indexing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/aptos-indexing.svg -------------------------------------------------------------------------------- /docs/static/img/docs/aptos-move-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/aptos-move-paper.png -------------------------------------------------------------------------------- /docs/static/img/docs/aptos-token-standard-flow-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/aptos-token-standard-flow-v1.png -------------------------------------------------------------------------------- /docs/static/img/docs/aptos-whitepaper-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/aptos-whitepaper-pdf.png -------------------------------------------------------------------------------- /docs/static/img/docs/aptos-whitepaper-pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/aptos-whitepaper-pdf@2x.png -------------------------------------------------------------------------------- /docs/static/img/docs/architecture-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/architecture-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/architecture.svg -------------------------------------------------------------------------------- /docs/static/img/docs/beaker-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/beaker-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/beaker.svg -------------------------------------------------------------------------------- /docs/static/img/docs/blueprint-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/blueprint-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/blueprint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/blueprint.svg -------------------------------------------------------------------------------- /docs/static/img/docs/building-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/building-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/building.svg -------------------------------------------------------------------------------- /docs/static/img/docs/check-transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/check-transaction.png -------------------------------------------------------------------------------- /docs/static/img/docs/client-service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/client-service.svg -------------------------------------------------------------------------------- /docs/static/img/docs/coins-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/coins-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/coins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/coins.svg -------------------------------------------------------------------------------- /docs/static/img/docs/connect-to-ait3-and-join-validator-set.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/connect-to-ait3-and-join-validator-set.svg -------------------------------------------------------------------------------- /docs/static/img/docs/consensus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/consensus.svg -------------------------------------------------------------------------------- /docs/static/img/docs/council-tsc-operations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/council-tsc-operations.svg -------------------------------------------------------------------------------- /docs/static/img/docs/creating-signed-transaction-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/creating-signed-transaction-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/creating-signed-transaction-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/creating-signed-transaction-light.svg -------------------------------------------------------------------------------- /docs/static/img/docs/crossed-tools-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/crossed-tools-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/crossed-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/crossed-tools.svg -------------------------------------------------------------------------------- /docs/static/img/docs/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/cube.svg -------------------------------------------------------------------------------- /docs/static/img/docs/custody-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/custody-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/custody.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/custody.svg -------------------------------------------------------------------------------- /docs/static/img/docs/cycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/cycle.svg -------------------------------------------------------------------------------- /docs/static/img/docs/dashboard-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/dashboard-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/dashboard.svg -------------------------------------------------------------------------------- /docs/static/img/docs/dice-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/dice-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/dice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/dice.svg -------------------------------------------------------------------------------- /docs/static/img/docs/direct-payment-usecase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/direct-payment-usecase.svg -------------------------------------------------------------------------------- /docs/static/img/docs/direct-payments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/direct-payments.svg -------------------------------------------------------------------------------- /docs/static/img/docs/events-fig1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/events-fig1.svg -------------------------------------------------------------------------------- /docs/static/img/docs/events-fig2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/events-fig2.svg -------------------------------------------------------------------------------- /docs/static/img/docs/execute-transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/execute-transactions.png -------------------------------------------------------------------------------- /docs/static/img/docs/execution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/execution.svg -------------------------------------------------------------------------------- /docs/static/img/docs/fist-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/fist-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/fist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/fist.svg -------------------------------------------------------------------------------- /docs/static/img/docs/flow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/flow-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/flow.svg -------------------------------------------------------------------------------- /docs/static/img/docs/initialize-staking-pool-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/initialize-staking-pool-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/initialize-staking-pool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/initialize-staking-pool.svg -------------------------------------------------------------------------------- /docs/static/img/docs/install-node-and-register.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/install-node-and-register.svg -------------------------------------------------------------------------------- /docs/static/img/docs/install-validator-and-register-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/install-validator-and-register-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/install-validator-and-register.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/install-validator-and-register.svg -------------------------------------------------------------------------------- /docs/static/img/docs/jellyfish-merkle-tree-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/jellyfish-merkle-tree-pdf.png -------------------------------------------------------------------------------- /docs/static/img/docs/key-yamls-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/key-yamls-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/key-yamls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/key-yamls.svg -------------------------------------------------------------------------------- /docs/static/img/docs/language-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/language-settings.svg -------------------------------------------------------------------------------- /docs/static/img/docs/liquidity-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/liquidity-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/liquidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/liquidity.svg -------------------------------------------------------------------------------- /docs/static/img/docs/local-mobile-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/local-mobile-wallet-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/local-mobile-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/local-mobile-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/docs/local-web-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/local-web-wallet-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/local-web-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/local-web-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/docs/localization-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/localization-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/localization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/localization.svg -------------------------------------------------------------------------------- /docs/static/img/docs/login-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/login-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/login.svg -------------------------------------------------------------------------------- /docs/static/img/docs/mempool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/mempool.svg -------------------------------------------------------------------------------- /docs/static/img/docs/merchant-buy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/merchant-buy.svg -------------------------------------------------------------------------------- /docs/static/img/docs/merchant-checkout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/merchant-checkout.svg -------------------------------------------------------------------------------- /docs/static/img/docs/merchant-payment-mgmt1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/merchant-payment-mgmt1.svg -------------------------------------------------------------------------------- /docs/static/img/docs/merchant-payment-mgmt2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/merchant-payment-mgmt2.svg -------------------------------------------------------------------------------- /docs/static/img/docs/merchant-solutions-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/merchant-solutions-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/merchant-solutions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/merchant-solutions.svg -------------------------------------------------------------------------------- /docs/static/img/docs/merkle-accumulators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/merkle-accumulators.svg -------------------------------------------------------------------------------- /docs/static/img/docs/mobile-w-receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/mobile-w-receive.png -------------------------------------------------------------------------------- /docs/static/img/docs/mobile-w-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/mobile-w-send.png -------------------------------------------------------------------------------- /docs/static/img/docs/modify-settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/modify-settings.svg -------------------------------------------------------------------------------- /docs/static/img/docs/move-language-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/move-language-pdf.png -------------------------------------------------------------------------------- /docs/static/img/docs/move-language-pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/move-language-pdf@2x.png -------------------------------------------------------------------------------- /docs/static/img/docs/operator-flow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/operator-flow-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/operator-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/operator-flow.svg -------------------------------------------------------------------------------- /docs/static/img/docs/overlapping-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/overlapping-circle.svg -------------------------------------------------------------------------------- /docs/static/img/docs/owner-staking-op-voter-actions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/owner-staking-op-voter-actions.svg -------------------------------------------------------------------------------- /docs/static/img/docs/payment-payouts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/payment-payouts.svg -------------------------------------------------------------------------------- /docs/static/img/docs/pubsub-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/pubsub-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/pubsub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/pubsub.svg -------------------------------------------------------------------------------- /docs/static/img/docs/reference-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/reference-wallet-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/reference-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/reference-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/docs/rest-service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/rest-service.svg -------------------------------------------------------------------------------- /docs/static/img/docs/rust-alt-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/rust-alt-dark.png -------------------------------------------------------------------------------- /docs/static/img/docs/rust-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/rust-alt.png -------------------------------------------------------------------------------- /docs/static/img/docs/sdk-cplusplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sdk-cplusplus.png -------------------------------------------------------------------------------- /docs/static/img/docs/sdk-csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sdk-csharp.png -------------------------------------------------------------------------------- /docs/static/img/docs/sdk-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sdk-go.png -------------------------------------------------------------------------------- /docs/static/img/docs/sdk-java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sdk-java.png -------------------------------------------------------------------------------- /docs/static/img/docs/sdk-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sdk-python.png -------------------------------------------------------------------------------- /docs/static/img/docs/sdk-rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sdk-rust.png -------------------------------------------------------------------------------- /docs/static/img/docs/sdk-typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sdk-typescript.png -------------------------------------------------------------------------------- /docs/static/img/docs/service-api-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/service-api-account.svg -------------------------------------------------------------------------------- /docs/static/img/docs/service-api-admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/service-api-admin.svg -------------------------------------------------------------------------------- /docs/static/img/docs/service-api-cico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/service-api-cico.svg -------------------------------------------------------------------------------- /docs/static/img/docs/service-api-user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/service-api-user.svg -------------------------------------------------------------------------------- /docs/static/img/docs/service-apis-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/service-apis-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/service-apis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/service-apis.svg -------------------------------------------------------------------------------- /docs/static/img/docs/sign-in-to-survey-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sign-in-to-survey-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/sign-in-to-survey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/sign-in-to-survey.svg -------------------------------------------------------------------------------- /docs/static/img/docs/stake-state-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/stake-state-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/stake-state.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/stake-state.svg -------------------------------------------------------------------------------- /docs/static/img/docs/staking-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/staking-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/staking-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/staking-light.svg -------------------------------------------------------------------------------- /docs/static/img/docs/state-machine-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/state-machine-pdf.png -------------------------------------------------------------------------------- /docs/static/img/docs/state-machine-pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/state-machine-pdf@2x.png -------------------------------------------------------------------------------- /docs/static/img/docs/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/storage.svg -------------------------------------------------------------------------------- /docs/static/img/docs/token-standard-dark-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/token-standard-dark-mode.svg -------------------------------------------------------------------------------- /docs/static/img/docs/token-standard-light-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/token-standard-light-mode.svg -------------------------------------------------------------------------------- /docs/static/img/docs/transactions-and-state-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/transactions-and-state-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/transactions-and-state.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/transactions-and-state.svg -------------------------------------------------------------------------------- /docs/static/img/docs/transactions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/transactions.svg -------------------------------------------------------------------------------- /docs/static/img/docs/ts-sdk-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/ts-sdk-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/ts-sdk-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/ts-sdk-light.svg -------------------------------------------------------------------------------- /docs/static/img/docs/userflows-demo-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/userflows-demo-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/docs/userflows-local-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/userflows-local-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/docs/using-gas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/using-gas.svg -------------------------------------------------------------------------------- /docs/static/img/docs/v-fn-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/v-fn-network.svg -------------------------------------------------------------------------------- /docs/static/img/docs/validator-deploy-flow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/validator-deploy-flow-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/validator-deploy-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/validator-deploy-flow.svg -------------------------------------------------------------------------------- /docs/static/img/docs/validator-state-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/validator-state-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/validator-state.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/validator-state.svg -------------------------------------------------------------------------------- /docs/static/img/docs/validator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/validator.svg -------------------------------------------------------------------------------- /docs/static/img/docs/virtual-machine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/virtual-machine.svg -------------------------------------------------------------------------------- /docs/static/img/docs/voter-flow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/voter-flow-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/voter-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/voter-flow.svg -------------------------------------------------------------------------------- /docs/static/img/docs/voting-resolution-flow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/voting-resolution-flow-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/voting-resolution-flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/voting-resolution-flow.svg -------------------------------------------------------------------------------- /docs/static/img/docs/wallet-actions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/wallet-actions.svg -------------------------------------------------------------------------------- /docs/static/img/docs/wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/wallet-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/wallet-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/wallet-home.svg -------------------------------------------------------------------------------- /docs/static/img/docs/wallet-storage-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/wallet-storage-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/wallet-storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/wallet-storage.svg -------------------------------------------------------------------------------- /docs/static/img/docs/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/wallet.svg -------------------------------------------------------------------------------- /docs/static/img/docs/wave-top-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/wave-top-dark.svg -------------------------------------------------------------------------------- /docs/static/img/docs/wave-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/docs/wave-top.svg -------------------------------------------------------------------------------- /docs/static/img/document-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/document-dark.svg -------------------------------------------------------------------------------- /docs/static/img/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/document.svg -------------------------------------------------------------------------------- /docs/static/img/encapsulating-data-behavior-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/encapsulating-data-behavior-dark.svg -------------------------------------------------------------------------------- /docs/static/img/encapsulating-data-behavior.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/encapsulating-data-behavior.svg -------------------------------------------------------------------------------- /docs/static/img/escrow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/escrow-dark.svg -------------------------------------------------------------------------------- /docs/static/img/escrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/escrow.svg -------------------------------------------------------------------------------- /docs/static/img/events-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/events-dark.svg -------------------------------------------------------------------------------- /docs/static/img/events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/events.svg -------------------------------------------------------------------------------- /docs/static/img/external-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/external-link.png -------------------------------------------------------------------------------- /docs/static/img/first-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/first-logo-dark.svg -------------------------------------------------------------------------------- /docs/static/img/first-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/first-logo.svg -------------------------------------------------------------------------------- /docs/static/img/form-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/form-icon.svg -------------------------------------------------------------------------------- /docs/static/img/frontend-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/frontend-dark.svg -------------------------------------------------------------------------------- /docs/static/img/frontend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/frontend.svg -------------------------------------------------------------------------------- /docs/static/img/gas-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/gas-dark.svg -------------------------------------------------------------------------------- /docs/static/img/gas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/gas.svg -------------------------------------------------------------------------------- /docs/static/img/github-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/github-dark.svg -------------------------------------------------------------------------------- /docs/static/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/github.svg -------------------------------------------------------------------------------- /docs/static/img/go-sdk-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/go-sdk-dark.svg -------------------------------------------------------------------------------- /docs/static/img/go-sdk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/go-sdk.svg -------------------------------------------------------------------------------- /docs/static/img/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/hero.jpg -------------------------------------------------------------------------------- /docs/static/img/home-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/home-dark.svg -------------------------------------------------------------------------------- /docs/static/img/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/home.svg -------------------------------------------------------------------------------- /docs/static/img/integrate-your-merchant-store-with-the-lpn-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/integrate-your-merchant-store-with-the-lpn-dark.svg -------------------------------------------------------------------------------- /docs/static/img/integrate-your-merchant-store-with-the-lpn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/integrate-your-merchant-store-with-the-lpn.svg -------------------------------------------------------------------------------- /docs/static/img/introduction-to-move-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/introduction-to-move-dark.svg -------------------------------------------------------------------------------- /docs/static/img/introduction-to-move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/introduction-to-move.svg -------------------------------------------------------------------------------- /docs/static/img/introduction-to-wallets-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/introduction-to-wallets-dark.svg -------------------------------------------------------------------------------- /docs/static/img/introduction-to-wallets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/introduction-to-wallets.svg -------------------------------------------------------------------------------- /docs/static/img/java-sdk-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/java-sdk-dark.svg -------------------------------------------------------------------------------- /docs/static/img/java-sdk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/java-sdk.svg -------------------------------------------------------------------------------- /docs/static/img/keywords-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/keywords-dark.svg -------------------------------------------------------------------------------- /docs/static/img/keywords.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/keywords.svg -------------------------------------------------------------------------------- /docs/static/img/libra-nodes-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/libra-nodes-dark.svg -------------------------------------------------------------------------------- /docs/static/img/libra-nodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/libra-nodes.svg -------------------------------------------------------------------------------- /docs/static/img/life-of-a-transaction-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/life-of-a-transaction-dark.svg -------------------------------------------------------------------------------- /docs/static/img/life-of-a-transaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/life-of-a-transaction.svg -------------------------------------------------------------------------------- /docs/static/img/liquidity-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/liquidity-dark.svg -------------------------------------------------------------------------------- /docs/static/img/liquidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/liquidity.svg -------------------------------------------------------------------------------- /docs/static/img/local-mobile-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/local-mobile-wallet-dark.svg -------------------------------------------------------------------------------- /docs/static/img/local-mobile-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/local-mobile-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/local-web-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/local-web-wallet-dark.svg -------------------------------------------------------------------------------- /docs/static/img/local-web-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/local-web-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/localization-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/localization-dark.svg -------------------------------------------------------------------------------- /docs/static/img/localization.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/localization.svg -------------------------------------------------------------------------------- /docs/static/img/login-and-authentication-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/login-and-authentication-dark.svg -------------------------------------------------------------------------------- /docs/static/img/login-and-authentication.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/login-and-authentication.svg -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/manage-aptos-keys-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/manage-aptos-keys-dark.svg -------------------------------------------------------------------------------- /docs/static/img/manage-aptos-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/manage-aptos-keys.svg -------------------------------------------------------------------------------- /docs/static/img/manage-keys-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/manage-keys-dark.svg -------------------------------------------------------------------------------- /docs/static/img/manage-keys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/manage-keys.svg -------------------------------------------------------------------------------- /docs/static/img/marketing-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/marketing-arrow.svg -------------------------------------------------------------------------------- /docs/static/img/marketing-module.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/marketing-module.jpg -------------------------------------------------------------------------------- /docs/static/img/merchant-introduction-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/merchant-introduction-dark.svg -------------------------------------------------------------------------------- /docs/static/img/merchant-introduction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/merchant-introduction.svg -------------------------------------------------------------------------------- /docs/static/img/merchant-solutions-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/merchant-solutions-dark.svg -------------------------------------------------------------------------------- /docs/static/img/merchant-solutions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/merchant-solutions.svg -------------------------------------------------------------------------------- /docs/static/img/merchant-store-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/merchant-store-dark.svg -------------------------------------------------------------------------------- /docs/static/img/merchant-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/merchant-store.svg -------------------------------------------------------------------------------- /docs/static/img/mobile-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/mobile-dark.svg -------------------------------------------------------------------------------- /docs/static/img/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/mobile.svg -------------------------------------------------------------------------------- /docs/static/img/modules-and-scripts-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/modules-and-scripts-dark.svg -------------------------------------------------------------------------------- /docs/static/img/modules-and-scripts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/modules-and-scripts.svg -------------------------------------------------------------------------------- /docs/static/img/move-and-copy-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/move-and-copy-dark.svg -------------------------------------------------------------------------------- /docs/static/img/move-and-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/move-and-copy.svg -------------------------------------------------------------------------------- /docs/static/img/move-did-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/move-did-dark.png -------------------------------------------------------------------------------- /docs/static/img/move-did.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/move-did.png -------------------------------------------------------------------------------- /docs/static/img/move-storage-and-execution-model-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/move-storage-and-execution-model-dark.svg -------------------------------------------------------------------------------- /docs/static/img/move-storage-and-execution-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/move-storage-and-execution-model.svg -------------------------------------------------------------------------------- /docs/static/img/move-tools-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/move-tools-dark.svg -------------------------------------------------------------------------------- /docs/static/img/move-tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/move-tools.svg -------------------------------------------------------------------------------- /docs/static/img/my-first-client-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/my-first-client-dark.svg -------------------------------------------------------------------------------- /docs/static/img/my-first-client.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/my-first-client.svg -------------------------------------------------------------------------------- /docs/static/img/my-first-transaction-dark-tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/my-first-transaction-dark-tutorials.svg -------------------------------------------------------------------------------- /docs/static/img/my-first-transaction-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/my-first-transaction-dark.svg -------------------------------------------------------------------------------- /docs/static/img/my-first-transaction-tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/my-first-transaction-tutorials.svg -------------------------------------------------------------------------------- /docs/static/img/my-first-transaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/my-first-transaction.svg -------------------------------------------------------------------------------- /docs/static/img/node-operators-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/node-operators-dark.svg -------------------------------------------------------------------------------- /docs/static/img/node-operators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/node-operators.svg -------------------------------------------------------------------------------- /docs/static/img/nyan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/nyan.jpeg -------------------------------------------------------------------------------- /docs/static/img/operators-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/operators-dark.svg -------------------------------------------------------------------------------- /docs/static/img/operators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/operators.svg -------------------------------------------------------------------------------- /docs/static/img/overlapping-circle-and-square-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/overlapping-circle-and-square-2.svg -------------------------------------------------------------------------------- /docs/static/img/overlapping-circle-and-square-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/overlapping-circle-and-square-dark.svg -------------------------------------------------------------------------------- /docs/static/img/overlapping-circle-and-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/overlapping-circle-and-square.svg -------------------------------------------------------------------------------- /docs/static/img/payment-management-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/payment-management-dark.svg -------------------------------------------------------------------------------- /docs/static/img/payment-management.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/payment-management.svg -------------------------------------------------------------------------------- /docs/static/img/placeholder-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/placeholder-dark.svg -------------------------------------------------------------------------------- /docs/static/img/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/placeholder.svg -------------------------------------------------------------------------------- /docs/static/img/protocol-overview-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/protocol-overview-dark.svg -------------------------------------------------------------------------------- /docs/static/img/protocol-overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/protocol-overview.svg -------------------------------------------------------------------------------- /docs/static/img/public-demo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/public-demo-dark.svg -------------------------------------------------------------------------------- /docs/static/img/public-demo-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/public-demo-wallet-dark.svg -------------------------------------------------------------------------------- /docs/static/img/public-demo-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/public-demo-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/public-demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/public-demo.svg -------------------------------------------------------------------------------- /docs/static/img/pubsub-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/pubsub-dark.svg -------------------------------------------------------------------------------- /docs/static/img/pubsub.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/pubsub.svg -------------------------------------------------------------------------------- /docs/static/img/python-sdk-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/python-sdk-dark.svg -------------------------------------------------------------------------------- /docs/static/img/python-sdk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/python-sdk.svg -------------------------------------------------------------------------------- /docs/static/img/query-the-blockchain-dark-tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/query-the-blockchain-dark-tutorials.svg -------------------------------------------------------------------------------- /docs/static/img/query-the-blockchain-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/query-the-blockchain-dark.svg -------------------------------------------------------------------------------- /docs/static/img/query-the-blockchain-tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/query-the-blockchain-tutorials.svg -------------------------------------------------------------------------------- /docs/static/img/query-the-blockchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/query-the-blockchain.svg -------------------------------------------------------------------------------- /docs/static/img/reference-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/reference-dark.svg -------------------------------------------------------------------------------- /docs/static/img/reference-documentation-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/reference-documentation-dark.svg -------------------------------------------------------------------------------- /docs/static/img/reference-documentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/reference-documentation.svg -------------------------------------------------------------------------------- /docs/static/img/reference-safety.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/reference-safety.svg -------------------------------------------------------------------------------- /docs/static/img/rest-service-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/rest-service-dark.svg -------------------------------------------------------------------------------- /docs/static/img/rest-service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/rest-service.svg -------------------------------------------------------------------------------- /docs/static/img/risk-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/risk-dark.svg -------------------------------------------------------------------------------- /docs/static/img/risk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/risk.svg -------------------------------------------------------------------------------- /docs/static/img/rmud_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/rmud_logo.png -------------------------------------------------------------------------------- /docs/static/img/roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/roadmap.png -------------------------------------------------------------------------------- /docs/static/img/role-based-access-control-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/role-based-access-control-dark.svg -------------------------------------------------------------------------------- /docs/static/img/role-based-access-control.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/role-based-access-control.svg -------------------------------------------------------------------------------- /docs/static/img/run-a-local-network-dark-tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/run-a-local-network-dark-tutorials.svg -------------------------------------------------------------------------------- /docs/static/img/run-a-local-network-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/run-a-local-network-dark.svg -------------------------------------------------------------------------------- /docs/static/img/run-a-local-network-tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/run-a-local-network-tutorials.svg -------------------------------------------------------------------------------- /docs/static/img/run-a-local-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/run-a-local-network.svg -------------------------------------------------------------------------------- /docs/static/img/run-local-network-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/run-local-network-dark.svg -------------------------------------------------------------------------------- /docs/static/img/run-local-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/run-local-network.svg -------------------------------------------------------------------------------- /docs/static/img/rust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/rust.png -------------------------------------------------------------------------------- /docs/static/img/sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/sdk.png -------------------------------------------------------------------------------- /docs/static/img/sdks-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/sdks-dark.svg -------------------------------------------------------------------------------- /docs/static/img/sdks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/sdks.svg -------------------------------------------------------------------------------- /docs/static/img/security-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/security-dark.svg -------------------------------------------------------------------------------- /docs/static/img/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/security.svg -------------------------------------------------------------------------------- /docs/static/img/securityemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/securityemail.png -------------------------------------------------------------------------------- /docs/static/img/service-apis-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/service-apis-dark.svg -------------------------------------------------------------------------------- /docs/static/img/service-apis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/service-apis.svg -------------------------------------------------------------------------------- /docs/static/img/set-up-for-development-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/set-up-for-development-dark.svg -------------------------------------------------------------------------------- /docs/static/img/set-up-for-development.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/set-up-for-development.svg -------------------------------------------------------------------------------- /docs/static/img/shared/arrow-left-dark-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/arrow-left-dark-hover.svg -------------------------------------------------------------------------------- /docs/static/img/shared/arrow-left-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/arrow-left-hover.svg -------------------------------------------------------------------------------- /docs/static/img/shared/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/arrow-left.svg -------------------------------------------------------------------------------- /docs/static/img/shared/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/arrow-right.svg -------------------------------------------------------------------------------- /docs/static/img/shared/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/chevron-down.svg -------------------------------------------------------------------------------- /docs/static/img/shared/chevron-pressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/chevron-pressed.svg -------------------------------------------------------------------------------- /docs/static/img/shared/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/close.svg -------------------------------------------------------------------------------- /docs/static/img/shared/copy-dark-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/copy-dark-hover.svg -------------------------------------------------------------------------------- /docs/static/img/shared/copy-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/copy-dark.svg -------------------------------------------------------------------------------- /docs/static/img/shared/copy-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/copy-hover.svg -------------------------------------------------------------------------------- /docs/static/img/shared/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/copy.svg -------------------------------------------------------------------------------- /docs/static/img/shared/edit-dark-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/edit-dark-hover.svg -------------------------------------------------------------------------------- /docs/static/img/shared/edit-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/edit-hover.svg -------------------------------------------------------------------------------- /docs/static/img/shared/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/edit.svg -------------------------------------------------------------------------------- /docs/static/img/shared/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/shared/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/logo.png -------------------------------------------------------------------------------- /docs/static/img/shared/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/logo.svg -------------------------------------------------------------------------------- /docs/static/img/shared/newsletter-dark-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/newsletter-dark-hover.svg -------------------------------------------------------------------------------- /docs/static/img/shared/newsletter-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/newsletter-dark.svg -------------------------------------------------------------------------------- /docs/static/img/shared/newsletter-hover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/newsletter-hover.svg -------------------------------------------------------------------------------- /docs/static/img/shared/newsletter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/newsletter.svg -------------------------------------------------------------------------------- /docs/static/img/shared/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/search.svg -------------------------------------------------------------------------------- /docs/static/img/shared/share-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/share-logo.jpg -------------------------------------------------------------------------------- /docs/static/img/shared/vertical-ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/vertical-ellipse.svg -------------------------------------------------------------------------------- /docs/static/img/shared/white-paper-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/white-paper-dark.svg -------------------------------------------------------------------------------- /docs/static/img/shared/white-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/shared/white-paper.svg -------------------------------------------------------------------------------- /docs/static/img/socials/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/socials/discord.svg -------------------------------------------------------------------------------- /docs/static/img/socials/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/socials/git.svg -------------------------------------------------------------------------------- /docs/static/img/socials/hero_v3-min.9c96f35d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/socials/hero_v3-min.9c96f35d.jpg -------------------------------------------------------------------------------- /docs/static/img/socials/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/socials/linkedin.svg -------------------------------------------------------------------------------- /docs/static/img/socials/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/socials/medium.svg -------------------------------------------------------------------------------- /docs/static/img/socials/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/socials/twitter.svg -------------------------------------------------------------------------------- /docs/static/img/storage-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/storage-dark.svg -------------------------------------------------------------------------------- /docs/static/img/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/storage.svg -------------------------------------------------------------------------------- /docs/static/img/structure-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/structure-dark.svg -------------------------------------------------------------------------------- /docs/static/img/structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/structure.svg -------------------------------------------------------------------------------- /docs/static/img/technical-papers-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/technical-papers-dark.svg -------------------------------------------------------------------------------- /docs/static/img/technical-papers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/technical-papers.svg -------------------------------------------------------------------------------- /docs/static/img/terminology-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/terminology-dark.svg -------------------------------------------------------------------------------- /docs/static/img/terminology.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/terminology.svg -------------------------------------------------------------------------------- /docs/static/img/test-the-aptos-reference-wallet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/test-the-aptos-reference-wallet-dark.svg -------------------------------------------------------------------------------- /docs/static/img/test-the-aptos-reference-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/test-the-aptos-reference-wallet.svg -------------------------------------------------------------------------------- /docs/static/img/test-the-merchant-store-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/test-the-merchant-store-dark.svg -------------------------------------------------------------------------------- /docs/static/img/test-the-merchant-store-web-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/test-the-merchant-store-web-dark.svg -------------------------------------------------------------------------------- /docs/static/img/test-the-merchant-store-web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/test-the-merchant-store-web.svg -------------------------------------------------------------------------------- /docs/static/img/test-the-merchant-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/test-the-merchant-store.svg -------------------------------------------------------------------------------- /docs/static/img/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/thumbs-down.svg -------------------------------------------------------------------------------- /docs/static/img/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/thumbs-up.svg -------------------------------------------------------------------------------- /docs/static/img/token_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/token_data.png -------------------------------------------------------------------------------- /docs/static/img/toy-coin-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/toy-coin-dark.svg -------------------------------------------------------------------------------- /docs/static/img/toy-coin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/toy-coin.svg -------------------------------------------------------------------------------- /docs/static/img/transaction-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/transaction-dark.svg -------------------------------------------------------------------------------- /docs/static/img/transaction-types-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/transaction-types-dark.svg -------------------------------------------------------------------------------- /docs/static/img/transaction-types.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/transaction-types.svg -------------------------------------------------------------------------------- /docs/static/img/transaction-workflows-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/transaction-workflows-dark.svg -------------------------------------------------------------------------------- /docs/static/img/transaction-workflows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/transaction-workflows.svg -------------------------------------------------------------------------------- /docs/static/img/transaction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/transaction.svg -------------------------------------------------------------------------------- /docs/static/img/try-the-public-demo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/try-the-public-demo-dark.svg -------------------------------------------------------------------------------- /docs/static/img/try-the-public-demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/try-the-public-demo.svg -------------------------------------------------------------------------------- /docs/static/img/tutorial-gcp-logging1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorial-gcp-logging1.png -------------------------------------------------------------------------------- /docs/static/img/tutorial-gcp-logging2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorial-gcp-logging2.png -------------------------------------------------------------------------------- /docs/static/img/tutorial-gcp-logging3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorial-gcp-logging3.png -------------------------------------------------------------------------------- /docs/static/img/tutorial-gcp-logging4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorial-gcp-logging4.png -------------------------------------------------------------------------------- /docs/static/img/tutorial-gcp-logging5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorial-gcp-logging5.png -------------------------------------------------------------------------------- /docs/static/img/tutorial-gcp-mon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorial-gcp-mon1.png -------------------------------------------------------------------------------- /docs/static/img/tutorial-gcp-mon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorial-gcp-mon2.png -------------------------------------------------------------------------------- /docs/static/img/tutorials-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorials-dark.svg -------------------------------------------------------------------------------- /docs/static/img/tutorials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/tutorials.svg -------------------------------------------------------------------------------- /docs/static/img/understanding-type-indexed-storage-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/understanding-type-indexed-storage-dark.svg -------------------------------------------------------------------------------- /docs/static/img/understanding-type-indexed-storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/understanding-type-indexed-storage.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /docs/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /docs/static/img/use-payment-management-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/use-payment-management-dark.svg -------------------------------------------------------------------------------- /docs/static/img/use-payment-management.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/use-payment-management.svg -------------------------------------------------------------------------------- /docs/static/img/use-the-admin-dashboard-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/use-the-admin-dashboard-dark.svg -------------------------------------------------------------------------------- /docs/static/img/use-the-admin-dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/use-the-admin-dashboard.svg -------------------------------------------------------------------------------- /docs/static/img/vasp-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/vasp-dark.svg -------------------------------------------------------------------------------- /docs/static/img/vasp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/vasp.svg -------------------------------------------------------------------------------- /docs/static/img/vertical-ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/vertical-ellipse.svg -------------------------------------------------------------------------------- /docs/static/img/vfn-network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/vfn-network.svg -------------------------------------------------------------------------------- /docs/static/img/wallet-administration-dashboard-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallet-administration-dashboard-dark.svg -------------------------------------------------------------------------------- /docs/static/img/wallet-administration-dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallet-administration-dashboard.svg -------------------------------------------------------------------------------- /docs/static/img/wallet-app-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallet-app-dark.svg -------------------------------------------------------------------------------- /docs/static/img/wallet-app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallet-app.svg -------------------------------------------------------------------------------- /docs/static/img/wallet-architecture-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallet-architecture-dark.svg -------------------------------------------------------------------------------- /docs/static/img/wallet-architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallet-architecture.svg -------------------------------------------------------------------------------- /docs/static/img/wallet-integration-guide-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallet-integration-guide-dark.svg -------------------------------------------------------------------------------- /docs/static/img/wallet-integration-guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallet-integration-guide.svg -------------------------------------------------------------------------------- /docs/static/img/wallets-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallets-dark.svg -------------------------------------------------------------------------------- /docs/static/img/wallets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/wallets.svg -------------------------------------------------------------------------------- /docs/static/img/web-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/web-dark.svg -------------------------------------------------------------------------------- /docs/static/img/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/web.svg -------------------------------------------------------------------------------- /docs/static/img/white-paper-excerpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/white-paper-excerpt.svg -------------------------------------------------------------------------------- /docs/static/img/white-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/img/white-paper.png -------------------------------------------------------------------------------- /docs/static/move-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/Cargo.toml -------------------------------------------------------------------------------- /docs/static/move-examples/data_structures/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/data_structures/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/data_structures/sources/big_vector.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/data_structures/sources/big_vector.move -------------------------------------------------------------------------------- /docs/static/move-examples/data_structures/sources/bucket_table.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/data_structures/sources/bucket_table.move -------------------------------------------------------------------------------- /docs/static/move-examples/governance/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/governance/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/governance/metadata-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/governance/metadata-example.json -------------------------------------------------------------------------------- /docs/static/move-examples/hello_blockchain/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/hello_blockchain/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/hello_prover/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/hello_prover/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/hello_prover/sources/prove.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/hello_prover/sources/prove.move -------------------------------------------------------------------------------- /docs/static/move-examples/loot_liked_nft/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/loot_liked_nft/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/loot_liked_nft/sources/svg_handler.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/loot_liked_nft/sources/svg_handler.move -------------------------------------------------------------------------------- /docs/static/move-examples/marketplace/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/marketplace/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/marketplace/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/marketplace/readme.md -------------------------------------------------------------------------------- /docs/static/move-examples/message_board/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/message_board/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/message_board/sources/offer.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/message_board/sources/offer.move -------------------------------------------------------------------------------- /docs/static/move-examples/mint_nft/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/mint_nft/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/mint_nft/sources/minting.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/mint_nft/sources/minting.move -------------------------------------------------------------------------------- /docs/static/move-examples/moon_coin/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/moon_coin/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/moon_coin/sources/MoonCoin.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/moon_coin/sources/MoonCoin.move -------------------------------------------------------------------------------- /docs/static/move-examples/resource_account/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/resource_account/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/resource_account/sources/simple_defi.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/resource_account/sources/simple_defi.move -------------------------------------------------------------------------------- /docs/static/move-examples/scripts/minter/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/scripts/minter/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/scripts/minter/sources/minter.move: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/scripts/minter/sources/minter.move -------------------------------------------------------------------------------- /docs/static/move-examples/scripts/two_by_two_transfer/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/scripts/two_by_two_transfer/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/shared_account/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/shared_account/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/split_transfer/Move.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/split_transfer/Move.toml -------------------------------------------------------------------------------- /docs/static/move-examples/src/lib.rs: -------------------------------------------------------------------------------- 1 | // Copyright (c) Aptos 2 | // SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /docs/static/move-examples/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/src/main.rs -------------------------------------------------------------------------------- /docs/static/move-examples/tests/move_prover_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/tests/move_prover_tests.rs -------------------------------------------------------------------------------- /docs/static/move-examples/tests/move_unit_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/move-examples/tests/move_unit_tests.rs -------------------------------------------------------------------------------- /docs/static/papers/2020-05-26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/2020-05-26.pdf -------------------------------------------------------------------------------- /docs/static/papers/Aptos-Whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/Aptos-Whitepaper.pdf -------------------------------------------------------------------------------- /docs/static/papers/jellyfish-merkle-tree/2021-01-14.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/jellyfish-merkle-tree/2021-01-14.pdf -------------------------------------------------------------------------------- /docs/static/papers/the-aptos-blockchain/2019-06-25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/the-aptos-blockchain/2019-06-25.pdf -------------------------------------------------------------------------------- /docs/static/papers/the-aptos-blockchain/2019-09-18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/the-aptos-blockchain/2019-09-18.pdf -------------------------------------------------------------------------------- /docs/static/papers/the-aptos-blockchain/2019-09-26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/the-aptos-blockchain/2019-09-26.pdf -------------------------------------------------------------------------------- /docs/static/papers/the-aptos-blockchain/2020-04-09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/the-aptos-blockchain/2020-04-09.pdf -------------------------------------------------------------------------------- /docs/static/papers/the-aptos-blockchain/2020-05-26.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/the-aptos-blockchain/2020-05-26.pdf -------------------------------------------------------------------------------- /docs/static/papers/whitepaper-korean.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/whitepaper-korean.pdf -------------------------------------------------------------------------------- /docs/static/papers/whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/papers/whitepaper.pdf -------------------------------------------------------------------------------- /docs/static/sdks/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/.gitignore -------------------------------------------------------------------------------- /docs/static/sdks/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/Makefile -------------------------------------------------------------------------------- /docs/static/sdks/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/README.md -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Aptos 2 | # SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/aptos_sdk/account.py -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/account_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/aptos_sdk/account_address.py -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/authenticator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/aptos_sdk/authenticator.py -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/bcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/aptos_sdk/bcs.py -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/aptos_sdk/client.py -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/ed25519.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/aptos_sdk/ed25519.py -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/aptos_sdk/transactions.py -------------------------------------------------------------------------------- /docs/static/sdks/python/aptos_sdk/type_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/aptos_sdk/type_tag.py -------------------------------------------------------------------------------- /docs/static/sdks/python/examples/.gitignore: -------------------------------------------------------------------------------- 1 | /aptos_sdk 2 | -------------------------------------------------------------------------------- /docs/static/sdks/python/examples/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/examples/common.py -------------------------------------------------------------------------------- /docs/static/sdks/python/examples/hello-blockchain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/examples/hello-blockchain.py -------------------------------------------------------------------------------- /docs/static/sdks/python/examples/simple-nft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/examples/simple-nft.py -------------------------------------------------------------------------------- /docs/static/sdks/python/examples/transfer-coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/examples/transfer-coin.py -------------------------------------------------------------------------------- /docs/static/sdks/python/examples/transfer-two-by-two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/examples/transfer-two-by-two.py -------------------------------------------------------------------------------- /docs/static/sdks/python/examples/two_by_two_transfer.mv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/examples/two_by_two_transfer.mv -------------------------------------------------------------------------------- /docs/static/sdks/python/examples/your-coin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/examples/your-coin.py -------------------------------------------------------------------------------- /docs/static/sdks/python/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/poetry.lock -------------------------------------------------------------------------------- /docs/static/sdks/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/pyproject.toml -------------------------------------------------------------------------------- /docs/static/sdks/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/python/setup.py -------------------------------------------------------------------------------- /docs/static/sdks/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/rust/Cargo.toml -------------------------------------------------------------------------------- /docs/static/sdks/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/rust/README.md -------------------------------------------------------------------------------- /docs/static/sdks/rust/examples/transfer-coin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/rust/examples/transfer-coin.rs -------------------------------------------------------------------------------- /docs/static/sdks/rust/publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/rust/publishing.md -------------------------------------------------------------------------------- /docs/static/sdks/rust/src/coin_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/rust/src/coin_client.rs -------------------------------------------------------------------------------- /docs/static/sdks/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/rust/src/lib.rs -------------------------------------------------------------------------------- /docs/static/sdks/rust/src/transaction_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/rust/src/transaction_builder.rs -------------------------------------------------------------------------------- /docs/static/sdks/rust/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/rust/src/types.rs -------------------------------------------------------------------------------- /docs/static/sdks/typescript/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/.eslintignore -------------------------------------------------------------------------------- /docs/static/sdks/typescript/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/.eslintrc.js -------------------------------------------------------------------------------- /docs/static/sdks/typescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/.gitignore -------------------------------------------------------------------------------- /docs/static/sdks/typescript/.npmignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | -------------------------------------------------------------------------------- /docs/static/sdks/typescript/.nvmrc: -------------------------------------------------------------------------------- 1 | v16.14.0n 2 | -------------------------------------------------------------------------------- /docs/static/sdks/typescript/.prettierignore: -------------------------------------------------------------------------------- 1 | src/generated/* 2 | -------------------------------------------------------------------------------- /docs/static/sdks/typescript/.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/.versionrc.json -------------------------------------------------------------------------------- /docs/static/sdks/typescript/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/CHANGELOG.md -------------------------------------------------------------------------------- /docs/static/sdks/typescript/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/static/sdks/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/README.md -------------------------------------------------------------------------------- /docs/static/sdks/typescript/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/check.sh -------------------------------------------------------------------------------- /docs/static/sdks/typescript/checked_publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/checked_publish.sh -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/README.md -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/javascript/index.js -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/javascript/package.json -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/javascript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/javascript/yarn.lock -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript-esm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript-esm/index.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript-esm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript-esm/package.json -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript-esm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript-esm/tsconfig.json -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript-esm/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript-esm/yarn.lock -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript/bcs_transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript/bcs_transaction.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript/common.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript/package.json -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript/simple_nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript/simple_nft.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript/transfer_coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript/transfer_coin.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript/tsconfig.json -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript/yarn.lock -------------------------------------------------------------------------------- /docs/static/sdks/typescript/examples/typescript/your_coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/examples/typescript/your_coin.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/jest.config.js -------------------------------------------------------------------------------- /docs/static/sdks/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/package.json -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/abis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/abis.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_account.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_account.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_account.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_client.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_client.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/abi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/abi.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/abi.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/account_address.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/account_address.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/account_address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/account_address.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/authentication_key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/authentication_key.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/authenticator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/authenticator.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/ed25519.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/ed25519.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/identifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/identifier.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/index.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/multi_ed25519.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/multi_ed25519.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/multi_ed25519.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/multi_ed25519.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/transaction.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/aptos_types/type_tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/aptos_types/type_tag.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/consts.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/deserializer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/deserializer.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/deserializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/deserializer.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/helper.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/helper.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/index.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/serializer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/serializer.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/serializer.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/bcs/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/bcs/types.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/coin_client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/coin_client.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/coin_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/coin_client.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/faucet_client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/faucet_client.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/faucet_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/faucet_client.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/AptosGeneratedClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/AptosGeneratedClient.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/core/ApiError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/core/ApiError.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/core/ApiRequestOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/core/ApiRequestOptions.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/core/ApiResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/core/ApiResult.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/core/AxiosHttpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/core/AxiosHttpRequest.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/core/BaseHttpRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/core/BaseHttpRequest.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/core/CancelablePromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/core/CancelablePromise.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/core/OpenAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/core/OpenAPI.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/core/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/core/request.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/index.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/AccountData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/AccountData.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/Address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/Address.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/AptosError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/AptosError.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/AptosErrorCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/AptosErrorCode.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/Block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/Block.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/DeleteModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/DeleteModule.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/DeleteResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/DeleteResource.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/DeleteTableItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/DeleteTableItem.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/DirectWriteSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/DirectWriteSet.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/EntryFunctionId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/EntryFunctionId.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/Event.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/EventGuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/EventGuid.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/GasEstimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/GasEstimation.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/GenesisPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/GenesisPayload.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/HashValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/HashValue.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/HexEncodedBytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/HexEncodedBytes.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/IndexResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/IndexResponse.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveAbility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveAbility.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveFunction.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveModule.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveModuleId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveModuleId.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveResource.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveStruct.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveStructField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveStructField.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveStructTag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveStructTag.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveStructValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveStructValue.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveType.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/MoveValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/MoveValue.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/RoleType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/RoleType.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/ScriptPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/ScriptPayload.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/ScriptWriteSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/ScriptWriteSet.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/Transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/Transaction.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/U128.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/U128.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/U64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/U64.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/UserTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/UserTransaction.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/VersionedEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/VersionedEvent.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/WriteModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/WriteModule.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/WriteResource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/WriteResource.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/WriteSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/WriteSet.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/WriteSetChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/WriteSetChange.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/WriteSetPayload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/WriteSetPayload.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/models/WriteTableItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/models/WriteTableItem.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$AccountData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$AccountData.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$Address.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$Address.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$AptosError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$AptosError.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$Block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$Block.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$DeleteModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$DeleteModule.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$Event.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$EventGuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$EventGuid.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$GasEstimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$GasEstimation.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$HashValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$HashValue.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$MoveAbility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$MoveAbility.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$MoveModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$MoveModule.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$MoveStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$MoveStruct.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$MoveType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$MoveType.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$MoveValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$MoveValue.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$RoleType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$RoleType.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$Transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$Transaction.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$U128.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$U128.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$U64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$U64.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$WriteModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$WriteModule.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/generated/schemas/$WriteSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/generated/schemas/$WriteSet.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/hex_string.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/hex_string.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/hex_string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/hex_string.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/index.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/token_client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/token_client.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/token_client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/token_client.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/token_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/token_types.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/transaction_builder/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/transaction_builder/builder.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/transaction_builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/transaction_builder/index.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/utils/hd-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/utils/hd-key.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/utils/index.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/utils/memoize-decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/utils/memoize-decorator.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/utils/misc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/utils/misc.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/utils/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/utils/misc.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/src/utils/test_helper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/src/utils/test_helper.test.ts -------------------------------------------------------------------------------- /docs/static/sdks/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/tsconfig.json -------------------------------------------------------------------------------- /docs/static/sdks/typescript/tsup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/tsup.config.js -------------------------------------------------------------------------------- /docs/static/sdks/typescript/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/static/sdks/typescript/yarn.lock -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /manager-dapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/.gitignore -------------------------------------------------------------------------------- /manager-dapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/README.md -------------------------------------------------------------------------------- /manager-dapp/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/app/globals.css -------------------------------------------------------------------------------- /manager-dapp/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/app/layout.tsx -------------------------------------------------------------------------------- /manager-dapp/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/app/page.tsx -------------------------------------------------------------------------------- /manager-dapp/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/components.json -------------------------------------------------------------------------------- /manager-dapp/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/components/header.tsx -------------------------------------------------------------------------------- /manager-dapp/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/components/ui/button.tsx -------------------------------------------------------------------------------- /manager-dapp/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/components/ui/input.tsx -------------------------------------------------------------------------------- /manager-dapp/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/components/ui/select.tsx -------------------------------------------------------------------------------- /manager-dapp/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/components/ui/toast.tsx -------------------------------------------------------------------------------- /manager-dapp/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/eslint.config.mjs -------------------------------------------------------------------------------- /manager-dapp/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/hooks/use-toast.ts -------------------------------------------------------------------------------- /manager-dapp/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/lib/utils.ts -------------------------------------------------------------------------------- /manager-dapp/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/next.config.ts -------------------------------------------------------------------------------- /manager-dapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/package-lock.json -------------------------------------------------------------------------------- /manager-dapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/package.json -------------------------------------------------------------------------------- /manager-dapp/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/pnpm-lock.yaml -------------------------------------------------------------------------------- /manager-dapp/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/postcss.config.mjs -------------------------------------------------------------------------------- /manager-dapp/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/public/file.svg -------------------------------------------------------------------------------- /manager-dapp/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/public/globe.svg -------------------------------------------------------------------------------- /manager-dapp/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/public/next.svg -------------------------------------------------------------------------------- /manager-dapp/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/public/vercel.svg -------------------------------------------------------------------------------- /manager-dapp/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/public/window.svg -------------------------------------------------------------------------------- /manager-dapp/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/tailwind.config.ts -------------------------------------------------------------------------------- /manager-dapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/tsconfig.json -------------------------------------------------------------------------------- /manager-dapp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/manager-dapp/yarn.lock -------------------------------------------------------------------------------- /sbt-as-vc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sdk-deno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-deno/README.md -------------------------------------------------------------------------------- /sdk-deno/deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-deno/deno.json -------------------------------------------------------------------------------- /sdk-deno/deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-deno/deno.lock -------------------------------------------------------------------------------- /sdk-deno/did_movement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-deno/did_movement.tsx -------------------------------------------------------------------------------- /sdk-ex/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/.formatter.exs -------------------------------------------------------------------------------- /sdk-ex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/.gitignore -------------------------------------------------------------------------------- /sdk-ex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/README.md -------------------------------------------------------------------------------- /sdk-ex/lib/constants.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/lib/constants.ex -------------------------------------------------------------------------------- /sdk-ex/lib/contract_interactor/addr_aggregator.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/lib/contract_interactor/addr_aggregator.ex -------------------------------------------------------------------------------- /sdk-ex/lib/did/document.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/lib/did/document.ex -------------------------------------------------------------------------------- /sdk-ex/lib/did_handler.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/lib/did_handler.ex -------------------------------------------------------------------------------- /sdk-ex/mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/mix.exs -------------------------------------------------------------------------------- /sdk-ex/mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/mix.lock -------------------------------------------------------------------------------- /sdk-ex/test/did_handler_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NonceGeek/MoveDID/HEAD/sdk-ex/test/did_handler_test.exs -------------------------------------------------------------------------------- /sdk-ex/test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------