├── .github ├── CODEOWNERS └── workflows │ └── codeowners.yml ├── .gitignore ├── .vscode ├── extensions.json ├── markdown.code-snippets └── settings.json ├── README.md ├── babel.config.js ├── blog ├── 2021-09-03-marine-rs-sdk-test-update.md ├── 2021-09-08-aqua-compiler-0.3.md └── authors.yml ├── docs.iml ├── docs ├── aqua-book │ ├── aqua-js-api.md │ ├── changelog.md │ ├── getting-started │ │ ├── getting-started.md │ │ ├── installation │ │ │ ├── Aqua-Extension-for-VSCode.png │ │ │ └── installation.md │ │ └── quick-start.md │ ├── introduction.md │ ├── language │ │ ├── abilities.md │ │ ├── closures.md │ │ ├── crdt-streams.md │ │ ├── expressions │ │ │ ├── expressions.md │ │ │ ├── functions.md │ │ │ ├── header.md │ │ │ ├── overridable-constants.md │ │ │ └── services.md │ │ ├── flow │ │ │ ├── conditional.md │ │ │ ├── flow.md │ │ │ ├── iterative.md │ │ │ ├── parallel.md │ │ │ └── sequential.md │ │ ├── header │ │ │ ├── control-scope-and-visibility.md │ │ │ └── header.md │ │ ├── language.md │ │ ├── services.md │ │ ├── topology.md │ │ ├── types.md │ │ └── values.md │ └── libraries │ │ ├── aqua-ipfs.md │ │ ├── aqua-lib.md │ │ ├── libraries.md │ │ └── registry.md ├── build │ ├── concepts │ │ ├── best_practices.md │ │ ├── fluence_functions_revisited.md │ │ ├── http_gateways.md │ │ ├── marketplace.md │ │ ├── scheduling_functions.md │ │ └── security.md │ ├── examples │ │ └── frpc.md │ ├── glossary.md │ ├── how-to │ │ ├── configure.md │ │ ├── deploy.md │ │ ├── develop.md │ │ ├── migrate.md │ │ ├── monitor.md │ │ ├── schedule_functions.md │ │ ├── securing_functions.md │ │ ├── setting_up.md │ │ ├── setup_payments.md │ │ └── test.md │ ├── introducing_fluence.md │ ├── overview │ │ ├── fluence_functions.md │ │ ├── getting_started.md │ │ └── roadmap.md │ ├── quickstarts │ │ ├── connecting_to_local_storage.md │ │ ├── connecting_to_the_world.md │ │ └── your_first_function.md │ ├── references.md │ ├── security.md │ ├── setting-up │ │ ├── installing_cli.md │ │ ├── setting_up.md │ │ └── working_with_local_networks.md │ └── tutorials │ │ ├── event_handling_in_js.md │ │ ├── testing_serverless.md │ │ └── workflow_fundamentals.md ├── learn │ ├── fluence-comparison.md │ ├── governance │ │ └── overview.md │ ├── how-it-works.md │ ├── overview.md │ ├── use-cases.md │ └── why-fluence.md └── marine-book │ ├── basic-concepts │ ├── an-example-of-Fluence-service.png │ └── basic-concepts.md │ ├── changelog.md │ ├── introduction.md │ ├── marine-runtime │ ├── api │ │ ├── api.md │ │ ├── core-api.md │ │ ├── marine-api.md │ │ └── marine-js-api.md │ ├── architecture │ │ ├── architecture │ │ │ ├── Marine-Layered-Architecture.png │ │ │ └── architecture.md │ │ ├── core │ │ │ ├── core.md │ │ │ ├── marine-performance.png │ │ │ ├── marine-using-interface-types-V1.png │ │ │ ├── multi-module-call-step-1.png │ │ │ ├── multi-module-call-step-2.png │ │ │ ├── multi-module-call-step-3.png │ │ │ ├── multi-module-call-step-4.png │ │ │ ├── multi-module-call-step-5.png │ │ │ ├── passing-scheme-between-three-modules.png │ │ │ └── scheme-with-Wasmer-instances.png │ │ ├── interface-types-instructions.md │ │ └── marine-js │ │ │ ├── marine-js.md │ │ │ ├── marine-web-scheme.png │ │ │ └── marine-web-value-passing.png │ ├── configuration-file.md │ ├── host-exports.md │ ├── i-value-and-i-type.md │ ├── marine-runtime.md │ ├── module-types │ │ ├── marine-as-ecosystem.png │ │ └── module-types.md │ └── mounted-binaries.md │ ├── marine-rust-sdk │ ├── developing │ │ ├── call-parameters.md │ │ ├── developing.md │ │ ├── environment-variables.md │ │ ├── export-functions.md │ │ ├── import-functions.md │ │ ├── logging.md │ │ ├── module-manifest.md │ │ ├── mounted-binaries.md │ │ └── structures.md │ ├── marine-rust-sdk.md │ ├── module-abi.md │ └── testing-and-debugging │ │ ├── internal-debugging-api.md │ │ ├── testing-a-module.md │ │ ├── testing-a-service.md │ │ ├── testing-and-debugging.md │ │ └── using-cargo-build-scripts.md │ ├── marine-tooling-reference │ ├── marine-cli.md │ ├── marine-repl.md │ └── marine-tooling-reference.md │ └── quick-start │ ├── develop-a-multi-modules-service.md │ ├── develop-a-single-module-service.md │ ├── quick-start.md │ └── setting-up-the-development-environment.md ├── docusaurus.config.ts ├── package.json ├── sidebars.js ├── src ├── css │ └── custom.scss ├── pages │ ├── index.module.scss │ └── index.tsx └── types.d.ts ├── static ├── .nojekyll ├── img │ ├── aurora-connect-faucet.png │ ├── aurora-explorer-inspect-transfers.png │ ├── aurora-faucet-connect-metamask.png │ ├── aurora-request-eth.png │ ├── aurora-request-success.png │ ├── aurora-testnet-success-metamask.png │ ├── favicon.ico │ ├── fluence-chain-diagram.png │ ├── fluence-faucet-add-tUSDC-metamask.png │ ├── fluence-faucet-add-tUSDC.png │ ├── fluence-faucet-confirm-fluence-transfer.png │ ├── fluence-faucet-confirm-tUSDC-added.png │ ├── fluence-faucet-login.png │ ├── fluence-faucet-request-tUSDC.png │ ├── fluence-faucet-sign-up.png │ ├── fluence-faucet-tUSDC-transfer-update.png │ ├── fluence-functions.png │ ├── logo.svg │ ├── marine.jpg │ ├── marketplace-capacity.png │ ├── marketplace-matching.png │ ├── marketplace-provider-resources.png │ ├── marketplace-providers.png │ ├── metamask-add-manually.png │ ├── metamask-add-network.png │ ├── metamask-aurora-chain-info.png │ ├── metamask-mumbai-chain-info.png │ ├── metamask-request-mumbai-tokens.png │ ├── metamask-updated-MATIC-balance.png │ ├── metamask-updated-aeth-balance.png │ ├── metamask_tx_prompt.png │ ├── mvm │ │ └── dar_faucet.png │ └── polygon-explorer-inspect-transfers.png └── mermaid.js ├── tsconfig.json └── vercel.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/codeowners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/.github/workflows/codeowners.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/markdown.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/.vscode/markdown.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog/2021-09-03-marine-rs-sdk-test-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/blog/2021-09-03-marine-rs-sdk-test-update.md -------------------------------------------------------------------------------- /blog/2021-09-08-aqua-compiler-0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/blog/2021-09-08-aqua-compiler-0.3.md -------------------------------------------------------------------------------- /blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/blog/authors.yml -------------------------------------------------------------------------------- /docs.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs.iml -------------------------------------------------------------------------------- /docs/aqua-book/aqua-js-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/aqua-js-api.md -------------------------------------------------------------------------------- /docs/aqua-book/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/changelog.md -------------------------------------------------------------------------------- /docs/aqua-book/getting-started/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/getting-started/getting-started.md -------------------------------------------------------------------------------- /docs/aqua-book/getting-started/installation/Aqua-Extension-for-VSCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/getting-started/installation/Aqua-Extension-for-VSCode.png -------------------------------------------------------------------------------- /docs/aqua-book/getting-started/installation/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/getting-started/installation/installation.md -------------------------------------------------------------------------------- /docs/aqua-book/getting-started/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/getting-started/quick-start.md -------------------------------------------------------------------------------- /docs/aqua-book/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/introduction.md -------------------------------------------------------------------------------- /docs/aqua-book/language/abilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/abilities.md -------------------------------------------------------------------------------- /docs/aqua-book/language/closures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/closures.md -------------------------------------------------------------------------------- /docs/aqua-book/language/crdt-streams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/crdt-streams.md -------------------------------------------------------------------------------- /docs/aqua-book/language/expressions/expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/expressions/expressions.md -------------------------------------------------------------------------------- /docs/aqua-book/language/expressions/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/expressions/functions.md -------------------------------------------------------------------------------- /docs/aqua-book/language/expressions/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/expressions/header.md -------------------------------------------------------------------------------- /docs/aqua-book/language/expressions/overridable-constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/expressions/overridable-constants.md -------------------------------------------------------------------------------- /docs/aqua-book/language/expressions/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/expressions/services.md -------------------------------------------------------------------------------- /docs/aqua-book/language/flow/conditional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/flow/conditional.md -------------------------------------------------------------------------------- /docs/aqua-book/language/flow/flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/flow/flow.md -------------------------------------------------------------------------------- /docs/aqua-book/language/flow/iterative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/flow/iterative.md -------------------------------------------------------------------------------- /docs/aqua-book/language/flow/parallel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/flow/parallel.md -------------------------------------------------------------------------------- /docs/aqua-book/language/flow/sequential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/flow/sequential.md -------------------------------------------------------------------------------- /docs/aqua-book/language/header/control-scope-and-visibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/header/control-scope-and-visibility.md -------------------------------------------------------------------------------- /docs/aqua-book/language/header/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/header/header.md -------------------------------------------------------------------------------- /docs/aqua-book/language/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/language.md -------------------------------------------------------------------------------- /docs/aqua-book/language/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/services.md -------------------------------------------------------------------------------- /docs/aqua-book/language/topology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/topology.md -------------------------------------------------------------------------------- /docs/aqua-book/language/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/types.md -------------------------------------------------------------------------------- /docs/aqua-book/language/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/language/values.md -------------------------------------------------------------------------------- /docs/aqua-book/libraries/aqua-ipfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/libraries/aqua-ipfs.md -------------------------------------------------------------------------------- /docs/aqua-book/libraries/aqua-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/libraries/aqua-lib.md -------------------------------------------------------------------------------- /docs/aqua-book/libraries/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/libraries/libraries.md -------------------------------------------------------------------------------- /docs/aqua-book/libraries/registry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/aqua-book/libraries/registry.md -------------------------------------------------------------------------------- /docs/build/concepts/best_practices.md: -------------------------------------------------------------------------------- 1 | # Best Practices -------------------------------------------------------------------------------- /docs/build/concepts/fluence_functions_revisited.md: -------------------------------------------------------------------------------- 1 | # Fluence Functions Revisited -------------------------------------------------------------------------------- /docs/build/concepts/http_gateways.md: -------------------------------------------------------------------------------- 1 | # Handling HTTP Events -------------------------------------------------------------------------------- /docs/build/concepts/marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/concepts/marketplace.md -------------------------------------------------------------------------------- /docs/build/concepts/scheduling_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/concepts/scheduling_functions.md -------------------------------------------------------------------------------- /docs/build/concepts/security.md: -------------------------------------------------------------------------------- 1 | # Security -------------------------------------------------------------------------------- /docs/build/examples/frpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/examples/frpc.md -------------------------------------------------------------------------------- /docs/build/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/glossary.md -------------------------------------------------------------------------------- /docs/build/how-to/configure.md: -------------------------------------------------------------------------------- 1 | # Configure FLuence CLI -------------------------------------------------------------------------------- /docs/build/how-to/deploy.md: -------------------------------------------------------------------------------- 1 | # Deploy Your Fluence Functions -------------------------------------------------------------------------------- /docs/build/how-to/develop.md: -------------------------------------------------------------------------------- 1 | # Develop Your Fluence Functions 2 | 3 | -------------------------------------------------------------------------------- /docs/build/how-to/migrate.md: -------------------------------------------------------------------------------- 1 | # How To Migrate Your Deployed Fluence Functions -------------------------------------------------------------------------------- /docs/build/how-to/monitor.md: -------------------------------------------------------------------------------- 1 | # How To Monitor Your Fluence Functions 2 | -------------------------------------------------------------------------------- /docs/build/how-to/schedule_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/how-to/schedule_functions.md -------------------------------------------------------------------------------- /docs/build/how-to/securing_functions.md: -------------------------------------------------------------------------------- 1 | # Secure your Fluence Functions -------------------------------------------------------------------------------- /docs/build/how-to/setting_up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/how-to/setting_up.md -------------------------------------------------------------------------------- /docs/build/how-to/setup_payments.md: -------------------------------------------------------------------------------- 1 | # Manage Payments And Billing -------------------------------------------------------------------------------- /docs/build/how-to/test.md: -------------------------------------------------------------------------------- 1 | # Test Your Fluence Functions -------------------------------------------------------------------------------- /docs/build/introducing_fluence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/introducing_fluence.md -------------------------------------------------------------------------------- /docs/build/overview/fluence_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/overview/fluence_functions.md -------------------------------------------------------------------------------- /docs/build/overview/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/overview/getting_started.md -------------------------------------------------------------------------------- /docs/build/overview/roadmap.md: -------------------------------------------------------------------------------- 1 | # Roadmap 2 | 3 | Coming soon. -------------------------------------------------------------------------------- /docs/build/quickstarts/connecting_to_local_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/quickstarts/connecting_to_local_storage.md -------------------------------------------------------------------------------- /docs/build/quickstarts/connecting_to_the_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/quickstarts/connecting_to_the_world.md -------------------------------------------------------------------------------- /docs/build/quickstarts/your_first_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/quickstarts/your_first_function.md -------------------------------------------------------------------------------- /docs/build/references.md: -------------------------------------------------------------------------------- 1 | # References -------------------------------------------------------------------------------- /docs/build/security.md: -------------------------------------------------------------------------------- 1 | # Security 2 | 3 | revised edition -------------------------------------------------------------------------------- /docs/build/setting-up/installing_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/setting-up/installing_cli.md -------------------------------------------------------------------------------- /docs/build/setting-up/setting_up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/setting-up/setting_up.md -------------------------------------------------------------------------------- /docs/build/setting-up/working_with_local_networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/setting-up/working_with_local_networks.md -------------------------------------------------------------------------------- /docs/build/tutorials/event_handling_in_js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/build/tutorials/event_handling_in_js.md -------------------------------------------------------------------------------- /docs/build/tutorials/testing_serverless.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build/tutorials/workflow_fundamentals.md: -------------------------------------------------------------------------------- 1 | # Aqua Worklfow Fundamentals -------------------------------------------------------------------------------- /docs/learn/fluence-comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/learn/fluence-comparison.md -------------------------------------------------------------------------------- /docs/learn/governance/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/learn/governance/overview.md -------------------------------------------------------------------------------- /docs/learn/how-it-works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/learn/how-it-works.md -------------------------------------------------------------------------------- /docs/learn/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/learn/overview.md -------------------------------------------------------------------------------- /docs/learn/use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/learn/use-cases.md -------------------------------------------------------------------------------- /docs/learn/why-fluence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/learn/why-fluence.md -------------------------------------------------------------------------------- /docs/marine-book/basic-concepts/an-example-of-Fluence-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/basic-concepts/an-example-of-Fluence-service.png -------------------------------------------------------------------------------- /docs/marine-book/basic-concepts/basic-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/basic-concepts/basic-concepts.md -------------------------------------------------------------------------------- /docs/marine-book/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/changelog.md -------------------------------------------------------------------------------- /docs/marine-book/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/introduction.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/api/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/api/api.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/api/core-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/api/core-api.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/api/marine-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/api/marine-api.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/api/marine-js-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/api/marine-js-api.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/architecture/Marine-Layered-Architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/architecture/Marine-Layered-Architecture.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/architecture/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/architecture/architecture.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/core.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/marine-performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/marine-performance.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/marine-using-interface-types-V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/marine-using-interface-types-V1.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-1.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-2.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-3.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-4.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/multi-module-call-step-5.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/passing-scheme-between-three-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/passing-scheme-between-three-modules.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/core/scheme-with-Wasmer-instances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/core/scheme-with-Wasmer-instances.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/interface-types-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/interface-types-instructions.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/marine-js/marine-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/marine-js/marine-js.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/marine-js/marine-web-scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/marine-js/marine-web-scheme.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/architecture/marine-js/marine-web-value-passing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/architecture/marine-js/marine-web-value-passing.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/configuration-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/configuration-file.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/host-exports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/host-exports.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/i-value-and-i-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/i-value-and-i-type.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/marine-runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/marine-runtime.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/module-types/marine-as-ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/module-types/marine-as-ecosystem.png -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/module-types/module-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/module-types/module-types.md -------------------------------------------------------------------------------- /docs/marine-book/marine-runtime/mounted-binaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-runtime/mounted-binaries.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/call-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/call-parameters.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/developing.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/environment-variables.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/export-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/export-functions.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/import-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/import-functions.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/logging.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/module-manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/module-manifest.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/mounted-binaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/mounted-binaries.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/developing/structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/developing/structures.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/marine-rust-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/marine-rust-sdk.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/module-abi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/module-abi.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/testing-and-debugging/internal-debugging-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/testing-and-debugging/internal-debugging-api.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/testing-and-debugging/testing-a-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/testing-and-debugging/testing-a-module.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/testing-and-debugging/testing-a-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/testing-and-debugging/testing-a-service.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/testing-and-debugging/testing-and-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/testing-and-debugging/testing-and-debugging.md -------------------------------------------------------------------------------- /docs/marine-book/marine-rust-sdk/testing-and-debugging/using-cargo-build-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-rust-sdk/testing-and-debugging/using-cargo-build-scripts.md -------------------------------------------------------------------------------- /docs/marine-book/marine-tooling-reference/marine-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-tooling-reference/marine-cli.md -------------------------------------------------------------------------------- /docs/marine-book/marine-tooling-reference/marine-repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-tooling-reference/marine-repl.md -------------------------------------------------------------------------------- /docs/marine-book/marine-tooling-reference/marine-tooling-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/marine-tooling-reference/marine-tooling-reference.md -------------------------------------------------------------------------------- /docs/marine-book/quick-start/develop-a-multi-modules-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/quick-start/develop-a-multi-modules-service.md -------------------------------------------------------------------------------- /docs/marine-book/quick-start/develop-a-single-module-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/quick-start/develop-a-single-module-service.md -------------------------------------------------------------------------------- /docs/marine-book/quick-start/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/quick-start/quick-start.md -------------------------------------------------------------------------------- /docs/marine-book/quick-start/setting-up-the-development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docs/marine-book/quick-start/setting-up-the-development-environment.md -------------------------------------------------------------------------------- /docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/docusaurus.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/package.json -------------------------------------------------------------------------------- /sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/sidebars.js -------------------------------------------------------------------------------- /src/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/src/css/custom.scss -------------------------------------------------------------------------------- /src/pages/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/src/pages/index.module.scss -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/aurora-connect-faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/aurora-connect-faucet.png -------------------------------------------------------------------------------- /static/img/aurora-explorer-inspect-transfers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/aurora-explorer-inspect-transfers.png -------------------------------------------------------------------------------- /static/img/aurora-faucet-connect-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/aurora-faucet-connect-metamask.png -------------------------------------------------------------------------------- /static/img/aurora-request-eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/aurora-request-eth.png -------------------------------------------------------------------------------- /static/img/aurora-request-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/aurora-request-success.png -------------------------------------------------------------------------------- /static/img/aurora-testnet-success-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/aurora-testnet-success-metamask.png -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/fluence-chain-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-chain-diagram.png -------------------------------------------------------------------------------- /static/img/fluence-faucet-add-tUSDC-metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-faucet-add-tUSDC-metamask.png -------------------------------------------------------------------------------- /static/img/fluence-faucet-add-tUSDC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-faucet-add-tUSDC.png -------------------------------------------------------------------------------- /static/img/fluence-faucet-confirm-fluence-transfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-faucet-confirm-fluence-transfer.png -------------------------------------------------------------------------------- /static/img/fluence-faucet-confirm-tUSDC-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-faucet-confirm-tUSDC-added.png -------------------------------------------------------------------------------- /static/img/fluence-faucet-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-faucet-login.png -------------------------------------------------------------------------------- /static/img/fluence-faucet-request-tUSDC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-faucet-request-tUSDC.png -------------------------------------------------------------------------------- /static/img/fluence-faucet-sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-faucet-sign-up.png -------------------------------------------------------------------------------- /static/img/fluence-faucet-tUSDC-transfer-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-faucet-tUSDC-transfer-update.png -------------------------------------------------------------------------------- /static/img/fluence-functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/fluence-functions.png -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/img/marine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/marine.jpg -------------------------------------------------------------------------------- /static/img/marketplace-capacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/marketplace-capacity.png -------------------------------------------------------------------------------- /static/img/marketplace-matching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/marketplace-matching.png -------------------------------------------------------------------------------- /static/img/marketplace-provider-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/marketplace-provider-resources.png -------------------------------------------------------------------------------- /static/img/marketplace-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/marketplace-providers.png -------------------------------------------------------------------------------- /static/img/metamask-add-manually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/metamask-add-manually.png -------------------------------------------------------------------------------- /static/img/metamask-add-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/metamask-add-network.png -------------------------------------------------------------------------------- /static/img/metamask-aurora-chain-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/metamask-aurora-chain-info.png -------------------------------------------------------------------------------- /static/img/metamask-mumbai-chain-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/metamask-mumbai-chain-info.png -------------------------------------------------------------------------------- /static/img/metamask-request-mumbai-tokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/metamask-request-mumbai-tokens.png -------------------------------------------------------------------------------- /static/img/metamask-updated-MATIC-balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/metamask-updated-MATIC-balance.png -------------------------------------------------------------------------------- /static/img/metamask-updated-aeth-balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/metamask-updated-aeth-balance.png -------------------------------------------------------------------------------- /static/img/metamask_tx_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/metamask_tx_prompt.png -------------------------------------------------------------------------------- /static/img/mvm/dar_faucet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/mvm/dar_faucet.png -------------------------------------------------------------------------------- /static/img/polygon-explorer-inspect-transfers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/img/polygon-explorer-inspect-transfers.png -------------------------------------------------------------------------------- /static/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/static/mermaid.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliezzahn/docs/HEAD/vercel.json --------------------------------------------------------------------------------