├── .github ├── renovate.json └── workflows │ ├── ci.yml │ └── js-projects.yml ├── .gitignore ├── Readme.md ├── aqua-examples ├── aqua-ipfs-integration │ ├── .gitignore │ ├── .npmrc │ ├── .prettierrc.js │ ├── README.md │ ├── aqua │ │ ├── .gitignore │ │ ├── aqua │ │ │ ├── exports.aqua │ │ │ ├── process.aqua │ │ │ └── process_files.aqua │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ └── tsconfig.json │ ├── local-network │ │ └── docker-compose.yml │ ├── nodejs │ │ ├── .prettierrc.js │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── __test__ │ │ │ │ └── test.spec.ts │ │ │ ├── demo.ts │ │ │ ├── main.ts │ │ │ └── provider.ts │ │ └── tsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── service │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── scripts │ │ │ └── build.sh │ │ └── src │ │ │ └── main.rs │ └── web │ │ ├── .gitignore │ │ ├── README.md │ │ ├── images │ │ ├── ipfs_comp_web_1.png │ │ ├── ipfs_comp_web_2.png │ │ ├── ipfs_comp_web_3.png │ │ └── ipfs_comp_web_4.png │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ ├── marine-js.web.js │ │ └── robots.txt │ │ ├── src │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── Components │ │ │ ├── ConnectedInfo.tsx │ │ │ ├── ConnectionForm.tsx │ │ │ ├── IpfsDeploymentInfo.tsx │ │ │ ├── IpfsForm.tsx │ │ │ ├── SizeCalcForm.tsx │ │ │ ├── SizeCalcResult.tsx │ │ │ └── TextInput.tsx │ │ ├── __test__ │ │ │ └── test.spec.ts │ │ ├── appLogic.ts │ │ ├── appState.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ └── util.ts │ │ └── tsconfig.json ├── decentralized-blockchain-gateway │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── aqua │ │ ├── ipfs_test.aqua │ │ └── multi_provider_quorum.aqua │ ├── configs │ │ ├── Config.toml │ │ ├── deployment_cfg.json │ │ └── services │ │ │ ├── eth-rpc │ │ │ └── service.yaml │ │ │ ├── ipfs-package │ │ │ └── service.yaml │ │ │ ├── multi-provider-query │ │ │ └── service.yaml │ │ │ ├── simple-quorum │ │ │ └── service.yaml │ │ │ └── utilities │ │ │ └── service.yaml │ ├── fluence-lock.yaml │ ├── fluence.yaml │ ├── gateway │ │ ├── README.md │ │ ├── aqua-compiled │ │ │ ├── rpc.d.ts │ │ │ └── rpc.js │ │ ├── aqua │ │ │ └── rpc.aqua │ │ ├── config.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── arguments.js │ │ │ ├── config.js │ │ │ ├── index.js │ │ │ └── methods.js │ │ └── web3run.js │ ├── parameters │ │ ├── quorum_addrs.json │ │ ├── quorum_mixed_params.json │ │ ├── quorum_params.json │ │ ├── service_addrs.json │ │ └── utility_addrs.json │ ├── scripts │ │ ├── build.sh │ │ └── package_services.sh │ ├── service-packages │ │ ├── eth_rpc.tar.gz │ │ ├── ipfs_package.tar.gz │ │ ├── multi_provider_query_package.tar.gz │ │ ├── simple_quorum_package.tar.gz │ │ └── utilities_package.tar.gz │ └── wasm-modules │ │ ├── curl-adapter │ │ ├── Cargo.toml │ │ ├── module.yaml │ │ └── src │ │ │ └── main.rs │ │ ├── eth-rpc │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── aqua │ │ │ ├── common_calls.aqua │ │ │ └── web3_calls.aqua │ │ ├── module.yaml │ │ ├── rust-toolchain.toml │ │ ├── src │ │ │ ├── curl_transport.rs │ │ │ ├── eth_call.rs │ │ │ ├── main.rs │ │ │ ├── typed.rs │ │ │ └── values.rs │ │ ├── test.sh │ │ ├── tests_artifacts │ │ │ ├── Config.toml │ │ │ └── curl_adapter.wasm │ │ └── workshop │ │ │ └── README.md │ │ ├── ipfs-adapter │ │ ├── Cargo.toml │ │ ├── module.yaml │ │ └── src │ │ │ └── main.rs │ │ ├── ipfs-cli │ │ ├── Cargo.toml │ │ ├── module.yaml │ │ └── src │ │ │ └── main.rs │ │ ├── multi-provider-query │ │ ├── Cargo.toml │ │ ├── module.yaml │ │ └── src │ │ │ └── main.rs │ │ ├── simple-quorum │ │ ├── Cargo.toml │ │ ├── module.yaml │ │ └── src │ │ │ └── main.rs │ │ └── utilities │ │ ├── Cargo.toml │ │ ├── module.yaml │ │ └── src │ │ └── main.rs ├── drand │ ├── .gitignore │ ├── README.md │ ├── aqua │ │ ├── drand_examples.aqua │ │ └── drand_lib.aqua │ └── services │ │ ├── configs │ │ ├── Config.toml │ │ └── deployment_cfg.json │ │ ├── curl_adapter │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── drand │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ └── scripts │ │ └── build.sh ├── echo-greeter │ ├── Readme.md │ ├── aqua │ │ └── echo_greeter.aqua │ ├── client-peer │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── __test__ │ │ │ │ └── test.spec.ts │ │ │ ├── index.ts │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── configs │ │ ├── Config.toml │ │ ├── echo_greeter_deploy_cfg.json │ │ ├── echo_service_cfg.json │ │ ├── greeting_cfg.json │ │ └── utilities_cfg.json │ ├── echo-service │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── build.sh │ │ └── src │ │ │ └── main.rs │ ├── greeting │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── build.sh │ │ └── src │ │ │ └── main.rs │ ├── scripts │ │ └── build_all.sh │ ├── secure-greeter │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── air-scripts │ │ │ └── air_greet.clj │ │ ├── build.sh │ │ ├── configs │ │ │ └── secure_greeter_cfg.json │ │ └── src │ │ │ ├── auth.rs │ │ │ └── main.rs │ └── utilities │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── aqua-compiled │ │ ├── utilities.increment_u32.air │ │ ├── utilities.increment_u64.air │ │ ├── utilities.splitter.air │ │ ├── utilities.splitter_u32.air │ │ └── utilities.splitter_u64.air │ │ ├── aqua-scripts │ │ └── utilities.aqua │ │ ├── scripts │ │ └── build.sh │ │ └── src │ │ └── main.rs ├── near-integration │ ├── README.md │ ├── near-signing-node │ │ ├── .gitignore │ │ ├── aqua │ │ │ └── near_signing_node.aqua │ │ ├── fluence.yaml │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── interfaces.ts │ │ └── tsconfig.json │ └── services │ │ ├── .gitignore │ │ ├── fluence.yaml │ │ ├── near-adapter │ │ ├── Config.toml │ │ ├── modules │ │ │ ├── curl-adapter │ │ │ │ ├── .gitignore │ │ │ │ ├── Cargo.toml │ │ │ │ ├── Config.toml │ │ │ │ ├── README.md │ │ │ │ ├── module.yaml │ │ │ │ └── src │ │ │ │ │ └── main.rs │ │ │ └── near-rpc-services │ │ │ │ ├── .gitignore │ │ │ │ ├── Cargo.toml │ │ │ │ ├── Config.toml │ │ │ │ ├── README.md │ │ │ │ ├── module.yaml │ │ │ │ └── src │ │ │ │ ├── main.rs │ │ │ │ └── utils.rs │ │ └── service.yaml │ │ └── src │ │ └── aqua │ │ └── main.aqua ├── price-oracle │ ├── README.md │ ├── aqua │ │ └── get_crypto_prices.aqua │ ├── client-peer │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── __test__ │ │ │ │ └── test.spec.ts │ │ │ ├── index.ts │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── configs │ │ ├── Config.toml │ │ ├── curl_adapter_cfg.json │ │ ├── mean_service_cfg.json │ │ ├── price_getter_service_cfg.json │ │ └── price_oracle_deploy_cfg.json │ ├── curl_adapter │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── data │ │ └── deployed_services.json │ ├── images │ │ ├── browser_demo.png │ │ ├── figure_1.png │ │ └── figure_2.png │ ├── mean_service │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── price_getter_service │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── scripts │ │ └── build.sh │ └── web │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── .prettierrc.js │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── __test__ │ │ │ └── test.spec.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ └── react-app-env.d.ts │ │ └── tsconfig.json ├── ts-oracle │ ├── Cargo.toml │ ├── Readme.md │ ├── aqua │ │ ├── builtin.aqua │ │ └── ts_getter.aqua │ ├── configs │ │ ├── Config.toml │ │ ├── ts_oracle_cfg.json │ │ └── ts_oracle_deploy_cfg.json │ ├── scripts │ │ └── build.sh │ └── src │ │ ├── main.rs │ │ └── stats.rs └── vrfun │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── aqua │ └── vrf.aqua │ ├── artifacts │ └── vrfun.wasm │ ├── configs │ ├── Config.toml │ ├── deployed_services.json │ └── deployment_cfg.json │ ├── data │ ├── proof_data.json │ └── run_data.json │ ├── scripts │ └── build.sh │ └── src │ └── main.rs ├── archived ├── aqua-ceramic-integration │ ├── .gitignore │ ├── README.md │ ├── aqua │ │ └── ceramic_demo.aqua │ ├── assets │ │ ├── figure_1.jpg │ │ └── figure_1_code.md │ ├── ceramic │ │ ├── schema_id.txt │ │ └── snapshot_schema.json │ ├── configs │ │ ├── Config.toml │ │ ├── ceramic_adapter_cfg.json │ │ ├── ceramic_adapter_deploy_cfg.json │ │ └── curl_adapter_cfg.json │ ├── scripts │ │ └── build.sh │ └── services │ │ ├── ceramic-adapter-basic │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── ceramic_cli.rs │ │ │ └── main.rs │ │ ├── ceramic-adapter-custom │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── ceramic_cli.rs │ │ │ ├── ceramic_http.rs │ │ │ └── main.rs │ │ └── curl-adapter │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs ├── curl_template │ ├── .gitignore │ ├── README.md │ ├── backend │ │ ├── BackendConfig.json │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── deploy.sh │ ├── frontend │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── logo192.png │ │ │ ├── logo512.png │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── components │ │ │ │ ├── App.scss │ │ │ │ └── App.tsx │ │ │ ├── fluence.ts │ │ │ ├── index.scss │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ └── setupTests.ts │ │ └── tsconfig.json │ ├── repl_config.toml │ ├── request.air │ └── script.air ├── ether-price-getter │ ├── .gitignore │ ├── Config.toml │ ├── Readme.md │ ├── air-scripts │ │ └── get_eth_price.clj │ ├── build.sh │ ├── curl_adapter │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── curl_cfg.json │ ├── ether_price_getter │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── eth_price_getter.rs │ │ │ ├── fce_results.rs │ │ │ └── main.rs │ └── ether_price_getter_cfg.json ├── fluence-cuckoo │ ├── Readme.md │ └── cuckoo-filter │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── air-scripts │ │ ├── cuckoo_create_cf.clj │ │ └── cuckoo_service_info.clj │ │ ├── build.sh │ │ ├── cuckoo_cfg.json │ │ ├── src │ │ └── main.rs │ │ └── test.sh ├── multi-service │ ├── Block-Getter-Config.toml │ ├── Block-Getter-with-Converter-Config.toml │ ├── Config.toml │ ├── air-scripts │ │ ├── add_stored_service.clj │ │ ├── am_i_owner.clj │ │ ├── curl_req.clj │ │ ├── ethqlite_block_committer.clj │ │ ├── ethqlite_init.clj │ │ ├── ethqlite_owner.clj │ │ ├── ethqlite_reset.clj │ │ ├── ethqlite_roundtrip.clj │ │ ├── get_address.clj │ │ ├── get_block_simple.clj │ │ ├── get_latest_block.clj │ │ ├── get_latest_block_simple.clj │ │ ├── hex2int.clj │ │ ├── latest_reward_block.clj │ │ ├── list_stored_services.clj │ │ ├── multi_block_processor.clj │ │ ├── remove_stored_service.clj │ │ ├── sqlite_tester.clj │ │ └── test_air.clj │ ├── block_getter │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── eth_block_getters.rs │ │ │ └── main.rs │ ├── config │ │ ├── block_getter_cfg.json │ │ ├── curl_cfg.json │ │ ├── extract_miner_address_cfg.json │ │ ├── hex_converter_cfg.json │ │ └── my_keypair.json │ ├── curl_adapter │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── ethqlite │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── build.sh │ │ ├── ethqlite_cfg.json │ │ ├── sqlite3_cfg.json │ │ └── src │ │ │ ├── auth.rs │ │ │ ├── crud.rs │ │ │ └── main.rs │ ├── extract_miner_address │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── hex_converter │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── scripts │ │ ├── build.sh │ │ └── deploy.sh │ └── simple_range_func │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ └── src │ │ └── main.rs └── web3-examples │ ├── web-frontend │ ├── .gitignore │ ├── .prettierrc.js │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── src │ │ ├── components │ │ │ ├── App.scss │ │ │ └── App.tsx │ │ ├── fluence.ts │ │ ├── index.scss │ │ ├── index.tsx │ │ ├── react-app-env.d.ts │ │ └── setupTests.ts │ └── tsconfig.json │ └── web3-examples │ ├── .gitignore │ ├── Config.toml │ ├── Readme.md │ ├── build.sh │ ├── curl_adapter │ ├── .gitignore │ ├── Cargo.toml │ ├── Config.json │ └── src │ │ └── main.rs │ ├── docs │ └── Frontend.md │ └── facade │ ├── .gitignore │ ├── Cargo.toml │ └── src │ ├── data_processing.rs │ ├── data_processing_tests.rs │ ├── eth_calls.rs │ ├── eth_calls_tests.rs │ ├── eth_filter_test.rs │ ├── eth_filters.rs │ ├── eth_hashers.rs │ ├── eth_type_test.rs │ ├── eth_utils.rs │ ├── fce_results.rs │ ├── jsonrpc_helpers.rs │ └── main.rs ├── community └── README.md ├── js-client-examples ├── browser-example │ ├── .fluence │ │ └── schemas │ │ │ └── fluence.json │ ├── README.md │ ├── fluence.yaml │ └── src │ │ ├── aqua │ │ └── getting-started.aqua │ │ └── frontend │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ ├── marine-js.web.js │ │ └── robots.txt │ │ ├── src │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── __test__ │ │ │ └── test.spec.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ └── relays.json │ │ └── tsconfig.json ├── hello-world │ ├── .fluence │ │ └── schemas │ │ │ └── fluence.json │ ├── README.md │ ├── fluence.yaml │ └── src │ │ ├── aqua │ │ └── hello-world.aqua │ │ └── frontend │ │ ├── .gitignore │ │ ├── .prettierrc.cjs │ │ ├── jest.config.cjs │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── __test__ │ │ │ └── test.spec.ts │ │ ├── index.ts │ │ ├── main.ts │ │ └── relays.json │ │ └── tsconfig.json ├── marine-service │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── fluence.yaml │ └── src │ │ ├── aqua │ │ ├── greeting.aqua │ │ └── srv.aqua │ │ └── frontend │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── compiled-aqua │ │ │ ├── greeting.ts │ │ │ └── main.ts │ │ ├── index.ts │ │ └── relays.json │ │ ├── tsconfig.json │ │ ├── vite.config.ts │ │ └── wasm │ │ └── greeting.wasm └── node-example │ ├── .fluence │ └── schemas │ │ └── fluence.json │ ├── README.md │ ├── fluence.yaml │ └── src │ ├── aqua │ ├── calc.aqua │ └── demo-calculation.aqua │ └── frontend │ ├── .gitignore │ ├── .prettierrc.cjs │ ├── jest.config.cjs │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── __test__ │ │ └── test.spec.ts │ ├── index.ts │ ├── main.ts │ └── relays.json │ └── tsconfig.json ├── marine-examples ├── README.md ├── build_rs │ ├── Cargo.toml │ ├── Config.toml │ ├── build.rs │ ├── build.sh │ └── src │ │ └── main.rs ├── call_parameters │ ├── .fluence │ │ ├── aqua │ │ │ ├── services.aqua │ │ │ └── workers.aqua │ │ ├── project-secrets.yaml │ │ ├── schemas │ │ │ ├── fluence.yaml.json │ │ │ ├── module.yaml.json │ │ │ ├── project-secrets.yaml.json │ │ │ └── service.yaml.json │ │ ├── tmp │ │ │ └── Config.toml │ │ └── workers.yaml │ ├── .gitignore │ ├── Cargo.toml │ ├── fluence.yaml │ ├── service │ │ ├── modules │ │ │ └── call_parameters │ │ │ │ ├── Cargo.toml │ │ │ │ ├── module.yaml │ │ │ │ └── src │ │ │ │ └── main.rs │ │ └── service.yaml │ └── src │ │ └── aqua │ │ └── main.aqua ├── greeting │ ├── .gitignore │ ├── Cargo.toml │ ├── Config.toml │ ├── README.md │ ├── build.sh │ ├── configs │ │ ├── greeting_cfg.json │ │ └── greeting_deploy_cfg.json │ ├── module-exports │ │ └── greeting.tar.gz │ ├── package_modules.sh │ └── src │ │ └── main.rs ├── multiservice_marine_test │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── build.sh │ ├── consumer │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── build.sh │ │ └── src │ │ │ └── main.rs │ ├── producer │ │ ├── Cargo.toml │ │ ├── Config.toml │ │ ├── build.sh │ │ └── src │ │ │ └── main.rs │ └── src │ │ └── main.rs ├── records │ ├── .gitignore │ ├── Config.toml │ ├── build.sh │ ├── facade │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── module-exports │ │ └── records.tar.gz │ ├── package_modules.sh │ ├── pure │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ └── test-record │ │ ├── Cargo.toml │ │ └── src │ │ └── test_record.rs ├── sqlite │ ├── .fluence │ │ ├── aqua │ │ │ ├── services.aqua │ │ │ └── workers.aqua │ │ ├── modules │ │ │ └── sqlite3.tar.gz_d35d7a28b1a8a55e87df96578d70ad46 │ │ │ │ ├── module.yaml │ │ │ │ └── sqlite3.wasm │ │ ├── project-secrets.yaml │ │ ├── schemas │ │ │ ├── fluence.yaml.json │ │ │ ├── module.yaml.json │ │ │ ├── project-secrets.yaml.json │ │ │ └── service.yaml.json │ │ └── tmp │ │ │ └── Config.toml │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── cli_048_dependencies.txt │ ├── fluence.yaml │ └── service │ │ ├── modules │ │ └── sqlite_test │ │ │ ├── Cargo.toml │ │ │ ├── module.yaml │ │ │ └── src │ │ │ └── main.rs │ │ └── service.yaml └── url-downloader │ ├── .fluence │ ├── aqua │ │ ├── services.aqua │ │ └── workers.aqua │ ├── project-secrets.yaml │ ├── schemas │ │ ├── fluence-lock.yaml.json │ │ ├── fluence.yaml.json │ │ ├── module.yaml.json │ │ ├── project-secrets.yaml.json │ │ ├── service.yaml.json │ │ └── workers.yaml.json │ ├── tmp │ │ └── Config.toml │ └── workers.yaml │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── download_url.aqua │ ├── fluence.yaml │ ├── module-exports │ └── url_downloader.tar.gz │ ├── service │ ├── modules │ │ ├── curl_adapter │ │ │ ├── Cargo.toml │ │ │ ├── module.yaml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── local_storage │ │ │ ├── Cargo.toml │ │ │ ├── module.yaml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── url_downloader │ │ │ ├── Cargo.toml │ │ │ ├── module.yaml │ │ │ └── src │ │ │ └── main.rs │ └── service.yaml │ └── src │ ├── aqua │ └── main.aqua │ └── package.json └── quickstart ├── 1-browser-to-browser ├── .fluence │ └── schemas │ │ └── fluence.json ├── README.md ├── assets │ ├── Connection-confirmation-to-network.png │ ├── Peer-to-peer-communication-between-two-browser-client-peers.png │ ├── Relay-Selection.png │ └── getting-started.aqua.png ├── fluence.yaml └── src │ ├── aqua │ └── getting-started.aqua │ └── frontend │ ├── .gitignore │ ├── .prettierrc.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── marine-js.web.js │ └── robots.txt │ ├── src │ ├── App.scss │ ├── App.tsx │ ├── __test__ │ │ └── test.spec.ts │ ├── index.css │ ├── index.tsx │ ├── logo.svg │ ├── react-app-env.d.ts │ └── relays.json │ └── tsconfig.json ├── 2-browser-parallel-computation ├── .fluence │ ├── aqua │ │ ├── deals.aqua │ │ ├── hosts.aqua │ │ └── services.aqua │ ├── env.yaml │ ├── schemas │ │ ├── env.json │ │ ├── fluence.json │ │ ├── module.json │ │ ├── service.json │ │ └── workers.json │ └── workers.yaml ├── Cargo.toml ├── README.md ├── assets │ ├── Browser-Parallel-Computation.png │ └── Browser-To-Service-Implementation.png ├── fluence.yaml └── src │ ├── aqua │ └── getting-started.aqua │ ├── frontend │ ├── .gitignore │ ├── .prettierrc.js │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ ├── marine-js.web.js │ │ └── robots.txt │ ├── src │ │ ├── App.scss │ │ ├── App.tsx │ │ ├── __test__ │ │ │ └── test.spec.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── logo.svg │ │ ├── react-app-env.d.ts │ │ └── relays.json │ └── tsconfig.json │ └── services │ └── adder │ ├── modules │ └── adder │ │ ├── Cargo.toml │ │ ├── module.yaml │ │ └── src │ │ └── main.rs │ └── service.yaml └── Readme.md /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/js-projects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/.github/workflows/js-projects.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/Readme.md -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/.gitignore -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict = true -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/.prettierrc.js -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/README.md -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/aqua/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # fluence 3 | 4 | src 5 | !src/index.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/aqua/aqua/exports.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/aqua/aqua/exports.aqua -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/aqua/aqua/process.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/aqua/aqua/process.aqua -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/aqua/aqua/process_files.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/aqua/aqua/process_files.aqua -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/aqua/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/aqua/package.json -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/aqua/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/aqua/src/index.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/aqua/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/aqua/tsconfig.json -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/local-network/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/local-network/docker-compose.yml -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/nodejs/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/nodejs/.prettierrc.js -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/nodejs/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/nodejs/jest.config.js -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/nodejs/package.json -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/nodejs/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/nodejs/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/nodejs/src/demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/nodejs/src/demo.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/nodejs/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/nodejs/src/main.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/nodejs/src/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/nodejs/src/provider.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/nodejs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/nodejs/tsconfig.json -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/package-lock.json -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/package.json -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/service/.gitignore -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/service/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/service/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/service/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/service/Config.toml -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/service/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/service/scripts/build.sh -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/service/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/service/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/.gitignore -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/README.md -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/images/ipfs_comp_web_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/images/ipfs_comp_web_1.png -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/images/ipfs_comp_web_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/images/ipfs_comp_web_2.png -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/images/ipfs_comp_web_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/images/ipfs_comp_web_3.png -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/images/ipfs_comp_web_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/images/ipfs_comp_web_4.png -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/jest.config.js -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/package.json -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/public/favicon.ico -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/public/index.html -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/public/logo192.png -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/public/logo512.png -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/public/manifest.json -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/public/marine-js.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/public/marine-js.web.js -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/public/robots.txt -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/App.scss -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/App.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/Components/ConnectedInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/Components/ConnectedInfo.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/Components/ConnectionForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/Components/ConnectionForm.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/Components/IpfsDeploymentInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/Components/IpfsDeploymentInfo.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/Components/IpfsForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/Components/IpfsForm.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/Components/SizeCalcForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/Components/SizeCalcForm.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/Components/SizeCalcResult.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/Components/SizeCalcResult.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/Components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/Components/TextInput.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/appLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/appLogic.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/appState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/appState.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/index.css -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/index.tsx -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/logo.svg -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/src/util.ts -------------------------------------------------------------------------------- /aqua-examples/aqua-ipfs-integration/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/aqua-ipfs-integration/web/tsconfig.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/.gitignore -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/README.md -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/aqua/ipfs_test.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/aqua/ipfs_test.aqua -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/aqua/multi_provider_quorum.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/aqua/multi_provider_quorum.aqua -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/configs/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/configs/Config.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/configs/deployment_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/configs/deployment_cfg.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/configs/services/eth-rpc/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/configs/services/eth-rpc/service.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/configs/services/ipfs-package/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/configs/services/ipfs-package/service.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/configs/services/multi-provider-query/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/configs/services/multi-provider-query/service.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/configs/services/simple-quorum/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/configs/services/simple-quorum/service.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/configs/services/utilities/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/configs/services/utilities/service.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/fluence-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/fluence-lock.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/fluence.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/README.md -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/aqua-compiled/rpc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/aqua-compiled/rpc.d.ts -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/aqua-compiled/rpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/aqua-compiled/rpc.js -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/aqua/rpc.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/aqua/rpc.aqua -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/config.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/package-lock.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/package.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/src/arguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/src/arguments.js -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/src/config.js -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/src/index.js -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/src/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/src/methods.js -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/gateway/web3run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/gateway/web3run.js -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/parameters/quorum_addrs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/parameters/quorum_addrs.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/parameters/quorum_mixed_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/parameters/quorum_mixed_params.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/parameters/quorum_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/parameters/quorum_params.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/parameters/service_addrs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/parameters/service_addrs.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/parameters/utility_addrs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/parameters/utility_addrs.json -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/scripts/build.sh -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/scripts/package_services.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/scripts/package_services.sh -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/service-packages/eth_rpc.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/service-packages/eth_rpc.tar.gz -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/service-packages/ipfs_package.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/service-packages/ipfs_package.tar.gz -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/service-packages/multi_provider_query_package.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/service-packages/multi_provider_query_package.tar.gz -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/service-packages/simple_quorum_package.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/service-packages/simple_quorum_package.tar.gz -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/service-packages/utilities_package.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/service-packages/utilities_package.tar.gz -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/curl-adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/curl-adapter/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/curl-adapter/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/curl-adapter/module.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/curl-adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/curl-adapter/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/README.md -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/aqua/common_calls.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/aqua/common_calls.aqua -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/aqua/web3_calls.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/aqua/web3_calls.aqua -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/module.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/rust-toolchain.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/curl_transport.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/curl_transport.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/eth_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/eth_call.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/typed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/typed.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/values.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/src/values.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/test.sh -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/tests_artifacts/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/tests_artifacts/Config.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/tests_artifacts/curl_adapter.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/tests_artifacts/curl_adapter.wasm -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/workshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/eth-rpc/workshop/README.md -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-adapter/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-adapter/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-adapter/module.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-adapter/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-cli/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-cli/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-cli/module.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/ipfs-cli/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/multi-provider-query/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/multi-provider-query/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/multi-provider-query/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/multi-provider-query/module.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/multi-provider-query/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/multi-provider-query/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/simple-quorum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/simple-quorum/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/simple-quorum/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/simple-quorum/module.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/simple-quorum/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/simple-quorum/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/utilities/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/utilities/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/utilities/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/utilities/module.yaml -------------------------------------------------------------------------------- /aqua-examples/decentralized-blockchain-gateway/wasm-modules/utilities/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/decentralized-blockchain-gateway/wasm-modules/utilities/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/drand/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/.gitignore -------------------------------------------------------------------------------- /aqua-examples/drand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/README.md -------------------------------------------------------------------------------- /aqua-examples/drand/aqua/drand_examples.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/aqua/drand_examples.aqua -------------------------------------------------------------------------------- /aqua-examples/drand/aqua/drand_lib.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/aqua/drand_lib.aqua -------------------------------------------------------------------------------- /aqua-examples/drand/services/configs/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/services/configs/Config.toml -------------------------------------------------------------------------------- /aqua-examples/drand/services/configs/deployment_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/services/configs/deployment_cfg.json -------------------------------------------------------------------------------- /aqua-examples/drand/services/curl_adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/services/curl_adapter/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/drand/services/curl_adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/services/curl_adapter/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/drand/services/drand/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/services/drand/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/drand/services/drand/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/services/drand/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/drand/services/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/drand/services/scripts/build.sh -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/Readme.md -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/aqua/echo_greeter.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/aqua/echo_greeter.aqua -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | src/_aqua -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/client-peer/.prettierrc.js -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/client-peer/jest.config.js -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/client-peer/package-lock.json -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/client-peer/package.json -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/client-peer/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/client-peer/src/index.ts -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/client-peer/src/main.ts -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/client-peer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/client-peer/tsconfig.json -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/configs/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/configs/Config.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/configs/echo_greeter_deploy_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/configs/echo_greeter_deploy_cfg.json -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/configs/echo_service_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/configs/echo_service_cfg.json -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/configs/greeting_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/configs/greeting_cfg.json -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/configs/utilities_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/configs/utilities_cfg.json -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/echo-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/echo-service/.gitignore -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/echo-service/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/echo-service/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/echo-service/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/echo-service/Config.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/echo-service/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/echo-service/build.sh -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/echo-service/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/echo-service/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/greeting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/greeting/.gitignore -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/greeting/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/greeting/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/greeting/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/greeting/Config.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/greeting/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/greeting/build.sh -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/greeting/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/greeting/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/scripts/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/scripts/build_all.sh -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/secure-greeter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/secure-greeter/.gitignore -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/secure-greeter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/secure-greeter/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/secure-greeter/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/secure-greeter/Config.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/secure-greeter/air-scripts/air_greet.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/secure-greeter/air-scripts/air_greet.clj -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/secure-greeter/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/secure-greeter/build.sh -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/secure-greeter/configs/secure_greeter_cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "secure_greeter" 3 | } -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/secure-greeter/src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/secure-greeter/src/auth.rs -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/secure-greeter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/secure-greeter/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/.gitignore -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/Config.toml -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.increment_u32.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.increment_u32.air -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.increment_u64.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.increment_u64.air -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.splitter.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.splitter.air -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.splitter_u32.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.splitter_u32.air -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.splitter_u64.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/aqua-compiled/utilities.splitter_u64.air -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/aqua-scripts/utilities.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/aqua-scripts/utilities.aqua -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/scripts/build.sh -------------------------------------------------------------------------------- /aqua-examples/echo-greeter/utilities/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/echo-greeter/utilities/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/near-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/README.md -------------------------------------------------------------------------------- /aqua-examples/near-integration/near-signing-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/near-signing-node/.gitignore -------------------------------------------------------------------------------- /aqua-examples/near-integration/near-signing-node/aqua/near_signing_node.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/near-signing-node/aqua/near_signing_node.aqua -------------------------------------------------------------------------------- /aqua-examples/near-integration/near-signing-node/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/near-signing-node/fluence.yaml -------------------------------------------------------------------------------- /aqua-examples/near-integration/near-signing-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/near-signing-node/package.json -------------------------------------------------------------------------------- /aqua-examples/near-integration/near-signing-node/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/near-signing-node/src/index.ts -------------------------------------------------------------------------------- /aqua-examples/near-integration/near-signing-node/src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/near-signing-node/src/interfaces.ts -------------------------------------------------------------------------------- /aqua-examples/near-integration/near-signing-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/near-signing-node/tsconfig.json -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/.gitignore -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/fluence.yaml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/Config.toml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/.gitignore -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/Config.toml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/README.md -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/module.yaml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/curl-adapter/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/.gitignore -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/Config.toml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/README.md -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/module.yaml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/modules/near-rpc-services/src/utils.rs -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/near-adapter/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/near-adapter/service.yaml -------------------------------------------------------------------------------- /aqua-examples/near-integration/services/src/aqua/main.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/near-integration/services/src/aqua/main.aqua -------------------------------------------------------------------------------- /aqua-examples/price-oracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/README.md -------------------------------------------------------------------------------- /aqua-examples/price-oracle/aqua/get_crypto_prices.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/aqua/get_crypto_prices.aqua -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | 3 | # fluence 4 | 5 | src/_aqua/* -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/client-peer/.prettierrc.js -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/client-peer/jest.config.js -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/client-peer/package-lock.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/client-peer/package.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/client-peer/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/client-peer/src/index.ts -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/client-peer/src/main.ts -------------------------------------------------------------------------------- /aqua-examples/price-oracle/client-peer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/client-peer/tsconfig.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/configs/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/configs/Config.toml -------------------------------------------------------------------------------- /aqua-examples/price-oracle/configs/curl_adapter_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/configs/curl_adapter_cfg.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/configs/mean_service_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/configs/mean_service_cfg.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/configs/price_getter_service_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/configs/price_getter_service_cfg.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/configs/price_oracle_deploy_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/configs/price_oracle_deploy_cfg.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/curl_adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/curl_adapter/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/price-oracle/curl_adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/curl_adapter/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/price-oracle/data/deployed_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/data/deployed_services.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/images/browser_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/images/browser_demo.png -------------------------------------------------------------------------------- /aqua-examples/price-oracle/images/figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/images/figure_1.png -------------------------------------------------------------------------------- /aqua-examples/price-oracle/images/figure_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/images/figure_2.png -------------------------------------------------------------------------------- /aqua-examples/price-oracle/mean_service/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/mean_service/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/price-oracle/mean_service/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/mean_service/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/price-oracle/price_getter_service/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/price_getter_service/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/price-oracle/price_getter_service/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/price_getter_service/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/price-oracle/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/scripts/build.sh -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/.gitignore -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/.prettierrc.js -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/README.md -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/jest.config.js -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/package-lock.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/package.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/public/favicon.ico -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/public/index.html -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/public/logo192.png -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/public/logo512.png -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/public/manifest.json -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/public/robots.txt -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/src/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/src/.prettierrc.js -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/src/App.scss -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/src/App.tsx -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/src/index.css -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/src/index.tsx -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/src/logo.svg -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /aqua-examples/price-oracle/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/price-oracle/web/tsconfig.json -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/Readme.md -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/aqua/builtin.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/aqua/builtin.aqua -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/aqua/ts_getter.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/aqua/ts_getter.aqua -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/configs/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/configs/Config.toml -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/configs/ts_oracle_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/configs/ts_oracle_cfg.json -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/configs/ts_oracle_deploy_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/configs/ts_oracle_deploy_cfg.json -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/scripts/build.sh -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/src/main.rs -------------------------------------------------------------------------------- /aqua-examples/ts-oracle/src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/ts-oracle/src/stats.rs -------------------------------------------------------------------------------- /aqua-examples/vrfun/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/.gitignore -------------------------------------------------------------------------------- /aqua-examples/vrfun/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/Cargo.lock -------------------------------------------------------------------------------- /aqua-examples/vrfun/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/Cargo.toml -------------------------------------------------------------------------------- /aqua-examples/vrfun/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/LICENSE -------------------------------------------------------------------------------- /aqua-examples/vrfun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/README.md -------------------------------------------------------------------------------- /aqua-examples/vrfun/aqua/vrf.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/aqua/vrf.aqua -------------------------------------------------------------------------------- /aqua-examples/vrfun/artifacts/vrfun.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/artifacts/vrfun.wasm -------------------------------------------------------------------------------- /aqua-examples/vrfun/configs/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/configs/Config.toml -------------------------------------------------------------------------------- /aqua-examples/vrfun/configs/deployed_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/configs/deployed_services.json -------------------------------------------------------------------------------- /aqua-examples/vrfun/configs/deployment_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/configs/deployment_cfg.json -------------------------------------------------------------------------------- /aqua-examples/vrfun/data/proof_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/data/proof_data.json -------------------------------------------------------------------------------- /aqua-examples/vrfun/data/run_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/data/run_data.json -------------------------------------------------------------------------------- /aqua-examples/vrfun/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/scripts/build.sh -------------------------------------------------------------------------------- /aqua-examples/vrfun/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/aqua-examples/vrfun/src/main.rs -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/.gitignore -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/README.md -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/aqua/ceramic_demo.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/aqua/ceramic_demo.aqua -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/assets/figure_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/assets/figure_1.jpg -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/assets/figure_1_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/assets/figure_1_code.md -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/ceramic/schema_id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/ceramic/schema_id.txt -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/ceramic/snapshot_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/ceramic/snapshot_schema.json -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/configs/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/configs/Config.toml -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/configs/ceramic_adapter_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/configs/ceramic_adapter_cfg.json -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/configs/ceramic_adapter_deploy_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/configs/ceramic_adapter_deploy_cfg.json -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/configs/curl_adapter_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/configs/curl_adapter_cfg.json -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/scripts/build.sh -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-basic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-basic/.gitignore -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-basic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-basic/Cargo.toml -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-basic/src/ceramic_cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-basic/src/ceramic_cli.rs -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-basic/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-basic/src/main.rs -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-custom/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-custom/.gitignore -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-custom/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-custom/Cargo.toml -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-custom/src/ceramic_cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-custom/src/ceramic_cli.rs -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-custom/src/ceramic_http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-custom/src/ceramic_http.rs -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/ceramic-adapter-custom/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/ceramic-adapter-custom/src/main.rs -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/curl-adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/curl-adapter/Cargo.toml -------------------------------------------------------------------------------- /archived/aqua-ceramic-integration/services/curl-adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/aqua-ceramic-integration/services/curl-adapter/src/main.rs -------------------------------------------------------------------------------- /archived/curl_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/.gitignore -------------------------------------------------------------------------------- /archived/curl_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/README.md -------------------------------------------------------------------------------- /archived/curl_template/backend/BackendConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/backend/BackendConfig.json -------------------------------------------------------------------------------- /archived/curl_template/backend/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/backend/Cargo.toml -------------------------------------------------------------------------------- /archived/curl_template/backend/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/backend/src/main.rs -------------------------------------------------------------------------------- /archived/curl_template/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/deploy.sh -------------------------------------------------------------------------------- /archived/curl_template/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/.gitignore -------------------------------------------------------------------------------- /archived/curl_template/frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/.prettierrc.js -------------------------------------------------------------------------------- /archived/curl_template/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/README.md -------------------------------------------------------------------------------- /archived/curl_template/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/package-lock.json -------------------------------------------------------------------------------- /archived/curl_template/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/package.json -------------------------------------------------------------------------------- /archived/curl_template/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/public/favicon.ico -------------------------------------------------------------------------------- /archived/curl_template/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/public/index.html -------------------------------------------------------------------------------- /archived/curl_template/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/public/logo192.png -------------------------------------------------------------------------------- /archived/curl_template/frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/public/logo512.png -------------------------------------------------------------------------------- /archived/curl_template/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/public/manifest.json -------------------------------------------------------------------------------- /archived/curl_template/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/public/robots.txt -------------------------------------------------------------------------------- /archived/curl_template/frontend/src/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/src/components/App.scss -------------------------------------------------------------------------------- /archived/curl_template/frontend/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/src/components/App.tsx -------------------------------------------------------------------------------- /archived/curl_template/frontend/src/fluence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/src/fluence.ts -------------------------------------------------------------------------------- /archived/curl_template/frontend/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/src/index.scss -------------------------------------------------------------------------------- /archived/curl_template/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/src/index.tsx -------------------------------------------------------------------------------- /archived/curl_template/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /archived/curl_template/frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /archived/curl_template/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/frontend/tsconfig.json -------------------------------------------------------------------------------- /archived/curl_template/repl_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/repl_config.toml -------------------------------------------------------------------------------- /archived/curl_template/request.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/request.air -------------------------------------------------------------------------------- /archived/curl_template/script.air: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/curl_template/script.air -------------------------------------------------------------------------------- /archived/ether-price-getter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/.gitignore -------------------------------------------------------------------------------- /archived/ether-price-getter/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/Config.toml -------------------------------------------------------------------------------- /archived/ether-price-getter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/Readme.md -------------------------------------------------------------------------------- /archived/ether-price-getter/air-scripts/get_eth_price.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/air-scripts/get_eth_price.clj -------------------------------------------------------------------------------- /archived/ether-price-getter/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/build.sh -------------------------------------------------------------------------------- /archived/ether-price-getter/curl_adapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/curl_adapter/.gitignore -------------------------------------------------------------------------------- /archived/ether-price-getter/curl_adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/curl_adapter/Cargo.toml -------------------------------------------------------------------------------- /archived/ether-price-getter/curl_adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/curl_adapter/src/main.rs -------------------------------------------------------------------------------- /archived/ether-price-getter/curl_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/curl_cfg.json -------------------------------------------------------------------------------- /archived/ether-price-getter/ether_price_getter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/ether_price_getter/.gitignore -------------------------------------------------------------------------------- /archived/ether-price-getter/ether_price_getter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/ether_price_getter/Cargo.toml -------------------------------------------------------------------------------- /archived/ether-price-getter/ether_price_getter/src/eth_price_getter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/ether_price_getter/src/eth_price_getter.rs -------------------------------------------------------------------------------- /archived/ether-price-getter/ether_price_getter/src/fce_results.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/ether_price_getter/src/fce_results.rs -------------------------------------------------------------------------------- /archived/ether-price-getter/ether_price_getter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/ether-price-getter/ether_price_getter/src/main.rs -------------------------------------------------------------------------------- /archived/ether-price-getter/ether_price_getter_cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ether-Price-Getter" 3 | } -------------------------------------------------------------------------------- /archived/fluence-cuckoo/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/Readme.md -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/cuckoo-filter/.gitignore -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/cuckoo-filter/Cargo.toml -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/cuckoo-filter/Config.toml -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/air-scripts/cuckoo_create_cf.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/cuckoo-filter/air-scripts/cuckoo_create_cf.clj -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/air-scripts/cuckoo_service_info.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/cuckoo-filter/air-scripts/cuckoo_service_info.clj -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/cuckoo-filter/build.sh -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/cuckoo_cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cuckoo_filter" 3 | } -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/cuckoo-filter/src/main.rs -------------------------------------------------------------------------------- /archived/fluence-cuckoo/cuckoo-filter/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/fluence-cuckoo/cuckoo-filter/test.sh -------------------------------------------------------------------------------- /archived/multi-service/Block-Getter-Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/Block-Getter-Config.toml -------------------------------------------------------------------------------- /archived/multi-service/Block-Getter-with-Converter-Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/Block-Getter-with-Converter-Config.toml -------------------------------------------------------------------------------- /archived/multi-service/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/Config.toml -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/add_stored_service.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/add_stored_service.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/am_i_owner.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/am_i_owner.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/curl_req.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/curl_req.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/ethqlite_block_committer.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/ethqlite_block_committer.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/ethqlite_init.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/ethqlite_init.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/ethqlite_owner.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/ethqlite_owner.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/ethqlite_reset.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/ethqlite_reset.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/ethqlite_roundtrip.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/ethqlite_roundtrip.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/get_address.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/get_address.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/get_block_simple.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/get_block_simple.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/get_latest_block.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/get_latest_block.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/get_latest_block_simple.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/get_latest_block_simple.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/hex2int.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/hex2int.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/latest_reward_block.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/latest_reward_block.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/list_stored_services.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/list_stored_services.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/multi_block_processor.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/multi_block_processor.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/remove_stored_service.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/remove_stored_service.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/sqlite_tester.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/sqlite_tester.clj -------------------------------------------------------------------------------- /archived/multi-service/air-scripts/test_air.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/air-scripts/test_air.clj -------------------------------------------------------------------------------- /archived/multi-service/block_getter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/block_getter/.gitignore -------------------------------------------------------------------------------- /archived/multi-service/block_getter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/block_getter/Cargo.toml -------------------------------------------------------------------------------- /archived/multi-service/block_getter/src/eth_block_getters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/block_getter/src/eth_block_getters.rs -------------------------------------------------------------------------------- /archived/multi-service/block_getter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/block_getter/src/main.rs -------------------------------------------------------------------------------- /archived/multi-service/config/block_getter_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/config/block_getter_cfg.json -------------------------------------------------------------------------------- /archived/multi-service/config/curl_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/config/curl_cfg.json -------------------------------------------------------------------------------- /archived/multi-service/config/extract_miner_address_cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ExtractMinerAddress" 3 | } -------------------------------------------------------------------------------- /archived/multi-service/config/hex_converter_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/config/hex_converter_cfg.json -------------------------------------------------------------------------------- /archived/multi-service/config/my_keypair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/config/my_keypair.json -------------------------------------------------------------------------------- /archived/multi-service/curl_adapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/curl_adapter/.gitignore -------------------------------------------------------------------------------- /archived/multi-service/curl_adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/curl_adapter/Cargo.toml -------------------------------------------------------------------------------- /archived/multi-service/curl_adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/curl_adapter/src/main.rs -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/.gitignore -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/Cargo.toml -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/Config.toml -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/build.sh -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/ethqlite_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/ethqlite_cfg.json -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/sqlite3_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/sqlite3_cfg.json -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/src/auth.rs -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/src/crud.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/src/crud.rs -------------------------------------------------------------------------------- /archived/multi-service/ethqlite/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/ethqlite/src/main.rs -------------------------------------------------------------------------------- /archived/multi-service/extract_miner_address/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/extract_miner_address/Cargo.toml -------------------------------------------------------------------------------- /archived/multi-service/extract_miner_address/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/extract_miner_address/src/main.rs -------------------------------------------------------------------------------- /archived/multi-service/hex_converter/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /archived/multi-service/hex_converter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/hex_converter/Cargo.toml -------------------------------------------------------------------------------- /archived/multi-service/hex_converter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/hex_converter/src/main.rs -------------------------------------------------------------------------------- /archived/multi-service/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/scripts/build.sh -------------------------------------------------------------------------------- /archived/multi-service/scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/scripts/deploy.sh -------------------------------------------------------------------------------- /archived/multi-service/simple_range_func/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/simple_range_func/.gitignore -------------------------------------------------------------------------------- /archived/multi-service/simple_range_func/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/simple_range_func/Cargo.toml -------------------------------------------------------------------------------- /archived/multi-service/simple_range_func/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/multi-service/simple_range_func/src/main.rs -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/.gitignore -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/.prettierrc.js -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/README.md -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/package-lock.json -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/package.json -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/public/favicon.ico -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/public/index.html -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/public/logo192.png -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/public/logo512.png -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/public/manifest.json -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/public/robots.txt -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/src/components/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/src/components/App.scss -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/src/components/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/src/components/App.tsx -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/src/fluence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/src/fluence.ts -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/src/index.scss -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/src/index.tsx -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/src/setupTests.ts -------------------------------------------------------------------------------- /archived/web3-examples/web-frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web-frontend/tsconfig.json -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/.gitignore -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/Config.toml -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/Readme.md -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/build.sh -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/curl_adapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/curl_adapter/.gitignore -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/curl_adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/curl_adapter/Cargo.toml -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/curl_adapter/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/curl_adapter/Config.json -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/curl_adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/curl_adapter/src/main.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/docs/Frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/docs/Frontend.md -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/.gitignore -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/Cargo.toml -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/data_processing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/data_processing.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/data_processing_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/data_processing_tests.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/eth_calls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/eth_calls.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/eth_calls_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/eth_calls_tests.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/eth_filter_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/eth_filter_test.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/eth_filters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/eth_filters.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/eth_hashers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/eth_hashers.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/eth_type_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/eth_type_test.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/eth_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/eth_utils.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/fce_results.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/fce_results.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/jsonrpc_helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/jsonrpc_helpers.rs -------------------------------------------------------------------------------- /archived/web3-examples/web3-examples/facade/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/archived/web3-examples/web3-examples/facade/src/main.rs -------------------------------------------------------------------------------- /community/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/community/README.md -------------------------------------------------------------------------------- /js-client-examples/browser-example/.fluence/schemas/fluence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/.fluence/schemas/fluence.json -------------------------------------------------------------------------------- /js-client-examples/browser-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/README.md -------------------------------------------------------------------------------- /js-client-examples/browser-example/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/fluence.yaml -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/aqua/getting-started.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/aqua/getting-started.aqua -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/.gitignore -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/.prettierrc.js -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/jest.config.js -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/package-lock.json -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/package.json -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/public/favicon.ico -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/public/index.html -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/public/logo192.png -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/public/logo512.png -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/public/manifest.json -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/public/marine-js.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/public/marine-js.web.js -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/public/robots.txt -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/src/App.scss -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/src/App.tsx -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/src/index.css -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/src/index.tsx -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/src/logo.svg -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/src/relays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/src/relays.json -------------------------------------------------------------------------------- /js-client-examples/browser-example/src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/browser-example/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /js-client-examples/hello-world/.fluence/schemas/fluence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/.fluence/schemas/fluence.json -------------------------------------------------------------------------------- /js-client-examples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/README.md -------------------------------------------------------------------------------- /js-client-examples/hello-world/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/fluence.yaml -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/aqua/hello-world.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/aqua/hello-world.aqua -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/.gitignore -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/.prettierrc.cjs -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/jest.config.cjs -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/package-lock.json -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/package.json -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/src/index.ts -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/src/main.ts -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/src/relays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/src/relays.json -------------------------------------------------------------------------------- /js-client-examples/hello-world/src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/hello-world/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /js-client-examples/marine-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/.gitignore -------------------------------------------------------------------------------- /js-client-examples/marine-service/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/Cargo.toml -------------------------------------------------------------------------------- /js-client-examples/marine-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/README.md -------------------------------------------------------------------------------- /js-client-examples/marine-service/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/fluence.yaml -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/aqua/greeting.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/aqua/greeting.aqua -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/aqua/srv.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/aqua/srv.aqua -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/index.html -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/package-lock.json -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/package.json -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/src/compiled-aqua/greeting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/src/compiled-aqua/greeting.ts -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/src/compiled-aqua/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/src/compiled-aqua/main.ts -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/src/index.ts -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/src/relays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/src/relays.json -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/vite.config.ts -------------------------------------------------------------------------------- /js-client-examples/marine-service/src/frontend/wasm/greeting.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/marine-service/src/frontend/wasm/greeting.wasm -------------------------------------------------------------------------------- /js-client-examples/node-example/.fluence/schemas/fluence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/.fluence/schemas/fluence.json -------------------------------------------------------------------------------- /js-client-examples/node-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/README.md -------------------------------------------------------------------------------- /js-client-examples/node-example/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/fluence.yaml -------------------------------------------------------------------------------- /js-client-examples/node-example/src/aqua/calc.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/aqua/calc.aqua -------------------------------------------------------------------------------- /js-client-examples/node-example/src/aqua/demo-calculation.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/aqua/demo-calculation.aqua -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/.gitignore -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/.prettierrc.cjs -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/jest.config.cjs -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/package-lock.json -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/package.json -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/src/index.ts -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/src/main.ts -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/src/relays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/src/relays.json -------------------------------------------------------------------------------- /js-client-examples/node-example/src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/js-client-examples/node-example/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /marine-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/README.md -------------------------------------------------------------------------------- /marine-examples/build_rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/build_rs/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/build_rs/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/build_rs/Config.toml -------------------------------------------------------------------------------- /marine-examples/build_rs/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/build_rs/build.rs -------------------------------------------------------------------------------- /marine-examples/build_rs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/build_rs/build.sh -------------------------------------------------------------------------------- /marine-examples/build_rs/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/build_rs/src/main.rs -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/aqua/services.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/aqua/services.aqua -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/aqua/workers.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/aqua/workers.aqua -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/project-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/project-secrets.yaml -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/schemas/fluence.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/schemas/fluence.yaml.json -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/schemas/module.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/schemas/module.yaml.json -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/schemas/project-secrets.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/schemas/project-secrets.yaml.json -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/schemas/service.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/schemas/service.yaml.json -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/tmp/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/tmp/Config.toml -------------------------------------------------------------------------------- /marine-examples/call_parameters/.fluence/workers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.fluence/workers.yaml -------------------------------------------------------------------------------- /marine-examples/call_parameters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/.gitignore -------------------------------------------------------------------------------- /marine-examples/call_parameters/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["service/modules/call_parameters"] 3 | -------------------------------------------------------------------------------- /marine-examples/call_parameters/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/fluence.yaml -------------------------------------------------------------------------------- /marine-examples/call_parameters/service/modules/call_parameters/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/service/modules/call_parameters/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/call_parameters/service/modules/call_parameters/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/service/modules/call_parameters/module.yaml -------------------------------------------------------------------------------- /marine-examples/call_parameters/service/modules/call_parameters/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/service/modules/call_parameters/src/main.rs -------------------------------------------------------------------------------- /marine-examples/call_parameters/service/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/service/service.yaml -------------------------------------------------------------------------------- /marine-examples/call_parameters/src/aqua/main.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/call_parameters/src/aqua/main.aqua -------------------------------------------------------------------------------- /marine-examples/greeting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/.gitignore -------------------------------------------------------------------------------- /marine-examples/greeting/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/greeting/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/Config.toml -------------------------------------------------------------------------------- /marine-examples/greeting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/README.md -------------------------------------------------------------------------------- /marine-examples/greeting/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/build.sh -------------------------------------------------------------------------------- /marine-examples/greeting/configs/greeting_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/configs/greeting_cfg.json -------------------------------------------------------------------------------- /marine-examples/greeting/configs/greeting_deploy_cfg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/configs/greeting_deploy_cfg.json -------------------------------------------------------------------------------- /marine-examples/greeting/module-exports/greeting.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/module-exports/greeting.tar.gz -------------------------------------------------------------------------------- /marine-examples/greeting/package_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/package_modules.sh -------------------------------------------------------------------------------- /marine-examples/greeting/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/greeting/src/main.rs -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/.gitignore -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/README.md -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/build.sh -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/consumer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/consumer/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/consumer/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/consumer/Config.toml -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/consumer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/consumer/build.sh -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/consumer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/consumer/src/main.rs -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/producer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/producer/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/producer/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/producer/Config.toml -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/producer/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/producer/build.sh -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/producer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/producer/src/main.rs -------------------------------------------------------------------------------- /marine-examples/multiservice_marine_test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/multiservice_marine_test/src/main.rs -------------------------------------------------------------------------------- /marine-examples/records/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/.gitignore -------------------------------------------------------------------------------- /marine-examples/records/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/Config.toml -------------------------------------------------------------------------------- /marine-examples/records/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/build.sh -------------------------------------------------------------------------------- /marine-examples/records/facade/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/facade/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/records/facade/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/facade/src/main.rs -------------------------------------------------------------------------------- /marine-examples/records/module-exports/records.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/module-exports/records.tar.gz -------------------------------------------------------------------------------- /marine-examples/records/package_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/package_modules.sh -------------------------------------------------------------------------------- /marine-examples/records/pure/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/pure/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/records/pure/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/pure/src/main.rs -------------------------------------------------------------------------------- /marine-examples/records/test-record/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/test-record/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/records/test-record/src/test_record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/records/test-record/src/test_record.rs -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/aqua/services.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/aqua/services.aqua -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/aqua/workers.aqua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/modules/sqlite3.tar.gz_d35d7a28b1a8a55e87df96578d70ad46/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/modules/sqlite3.tar.gz_d35d7a28b1a8a55e87df96578d70ad46/module.yaml -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/modules/sqlite3.tar.gz_d35d7a28b1a8a55e87df96578d70ad46/sqlite3.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/modules/sqlite3.tar.gz_d35d7a28b1a8a55e87df96578d70ad46/sqlite3.wasm -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/project-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/project-secrets.yaml -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/schemas/fluence.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/schemas/fluence.yaml.json -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/schemas/module.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/schemas/module.yaml.json -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/schemas/project-secrets.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/schemas/project-secrets.yaml.json -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/schemas/service.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/schemas/service.yaml.json -------------------------------------------------------------------------------- /marine-examples/sqlite/.fluence/tmp/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.fluence/tmp/Config.toml -------------------------------------------------------------------------------- /marine-examples/sqlite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/.gitignore -------------------------------------------------------------------------------- /marine-examples/sqlite/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = [ "service/modules/sqlite_test" ] 3 | -------------------------------------------------------------------------------- /marine-examples/sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/README.md -------------------------------------------------------------------------------- /marine-examples/sqlite/cli_048_dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/cli_048_dependencies.txt -------------------------------------------------------------------------------- /marine-examples/sqlite/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/fluence.yaml -------------------------------------------------------------------------------- /marine-examples/sqlite/service/modules/sqlite_test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/service/modules/sqlite_test/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/sqlite/service/modules/sqlite_test/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/service/modules/sqlite_test/module.yaml -------------------------------------------------------------------------------- /marine-examples/sqlite/service/modules/sqlite_test/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/service/modules/sqlite_test/src/main.rs -------------------------------------------------------------------------------- /marine-examples/sqlite/service/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/sqlite/service/service.yaml -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/aqua/services.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/aqua/services.aqua -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/aqua/workers.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/aqua/workers.aqua -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/project-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/project-secrets.yaml -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/schemas/fluence-lock.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/schemas/fluence-lock.yaml.json -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/schemas/fluence.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/schemas/fluence.yaml.json -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/schemas/module.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/schemas/module.yaml.json -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/schemas/project-secrets.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/schemas/project-secrets.yaml.json -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/schemas/service.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/schemas/service.yaml.json -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/schemas/workers.yaml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/schemas/workers.yaml.json -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/tmp/Config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/tmp/Config.toml -------------------------------------------------------------------------------- /marine-examples/url-downloader/.fluence/workers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.fluence/workers.yaml -------------------------------------------------------------------------------- /marine-examples/url-downloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/.gitignore -------------------------------------------------------------------------------- /marine-examples/url-downloader/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/url-downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/README.md -------------------------------------------------------------------------------- /marine-examples/url-downloader/download_url.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/download_url.aqua -------------------------------------------------------------------------------- /marine-examples/url-downloader/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/fluence.yaml -------------------------------------------------------------------------------- /marine-examples/url-downloader/module-exports/url_downloader.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/module-exports/url_downloader.tar.gz -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/curl_adapter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/curl_adapter/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/curl_adapter/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/curl_adapter/module.yaml -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/curl_adapter/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/curl_adapter/src/main.rs -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/local_storage/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/local_storage/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/local_storage/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/local_storage/module.yaml -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/local_storage/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/local_storage/src/main.rs -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/url_downloader/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/url_downloader/Cargo.toml -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/url_downloader/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/url_downloader/module.yaml -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/modules/url_downloader/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/modules/url_downloader/src/main.rs -------------------------------------------------------------------------------- /marine-examples/url-downloader/service/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/service/service.yaml -------------------------------------------------------------------------------- /marine-examples/url-downloader/src/aqua/main.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/src/aqua/main.aqua -------------------------------------------------------------------------------- /marine-examples/url-downloader/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/marine-examples/url-downloader/src/package.json -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/.fluence/schemas/fluence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/.fluence/schemas/fluence.json -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/README.md -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/assets/Connection-confirmation-to-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/assets/Connection-confirmation-to-network.png -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/assets/Peer-to-peer-communication-between-two-browser-client-peers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/assets/Peer-to-peer-communication-between-two-browser-client-peers.png -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/assets/Relay-Selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/assets/Relay-Selection.png -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/assets/getting-started.aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/assets/getting-started.aqua.png -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/fluence.yaml -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/aqua/getting-started.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/aqua/getting-started.aqua -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/.gitignore -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/.prettierrc.js -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/jest.config.js -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/package-lock.json -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/package.json -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/public/favicon.ico -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/public/index.html -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/public/logo192.png -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/public/logo512.png -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/public/manifest.json -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/public/marine-js.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/public/marine-js.web.js -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/public/robots.txt -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/src/App.scss -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/src/App.tsx -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/src/index.css -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/src/index.tsx -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/src/logo.svg -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/src/relays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/src/relays.json -------------------------------------------------------------------------------- /quickstart/1-browser-to-browser/src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/1-browser-to-browser/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/aqua/deals.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/aqua/deals.aqua -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/aqua/hosts.aqua: -------------------------------------------------------------------------------- 1 | aqua Hosts declares * 2 | 3 | func get() -> ?u8: 4 | <- nil 5 | -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/aqua/services.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/aqua/services.aqua -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/env.yaml -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/schemas/env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/schemas/env.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/schemas/fluence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/schemas/fluence.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/schemas/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/schemas/module.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/schemas/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/schemas/service.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/schemas/workers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/schemas/workers.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/.fluence/workers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/.fluence/workers.yaml -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/Cargo.toml -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/README.md -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/assets/Browser-Parallel-Computation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/assets/Browser-Parallel-Computation.png -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/assets/Browser-To-Service-Implementation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/assets/Browser-To-Service-Implementation.png -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/fluence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/fluence.yaml -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/aqua/getting-started.aqua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/aqua/getting-started.aqua -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/.gitignore -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/.prettierrc.js -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/jest.config.js -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/package-lock.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/package.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/public/favicon.ico -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/public/index.html -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/public/logo192.png -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/public/logo512.png -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/public/manifest.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/public/marine-js.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/public/marine-js.web.js -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/public/robots.txt -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/src/App.scss -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/src/App.tsx -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/src/__test__/test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/src/__test__/test.spec.ts -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/src/index.css -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/src/index.tsx -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/src/logo.svg -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/src/relays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/src/relays.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/frontend/tsconfig.json -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/services/adder/modules/adder/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/services/adder/modules/adder/Cargo.toml -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/services/adder/modules/adder/module.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/services/adder/modules/adder/module.yaml -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/services/adder/modules/adder/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/services/adder/modules/adder/src/main.rs -------------------------------------------------------------------------------- /quickstart/2-browser-parallel-computation/src/services/adder/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/2-browser-parallel-computation/src/services/adder/service.yaml -------------------------------------------------------------------------------- /quickstart/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluencelabs/examples/HEAD/quickstart/Readme.md --------------------------------------------------------------------------------