├── .dockerignore ├── .githooks ├── README.md └── pre-commit ├── .github ├── ISSUE_TEMPLATE │ ├── dependency-update.md │ ├── release.md │ └── task.md ├── actions │ └── disk-cleanup │ │ └── action.yaml ├── dependabot.yml ├── file-filter.yml ├── pull_request_template.md ├── runtime.json └── workflows │ ├── benchmark-runtime-weights.yml │ ├── build-docker-with-args.yml │ ├── build-wasm.yml │ ├── check-runtime-upgrade.yml │ ├── ci.yml │ ├── claude.yml │ ├── coverage.yml │ ├── create-release-draft.yml │ ├── create-release-issue.yml │ ├── delete-cache-after-pr-close.yml │ ├── issue-stale-bot.yml │ ├── release-bot.yml │ ├── try-runtime.yml │ └── verify-correctness-of-vc-content.yml ├── .gitignore ├── .gitmodules ├── .nvmrc ├── .taplo.toml ├── LICENSE ├── Makefile ├── README.md ├── local-setup ├── .env.dev ├── README.md ├── __init__.py ├── development-worker.json ├── launch.py ├── py │ ├── __init__.py │ ├── helpers.py │ └── worker.py ├── rococo_one_worker.json ├── start_parachain.sh ├── tmux_logger.sh ├── tmux_logger_three_nodes.sh └── worker-log-level-config.toml ├── parachain ├── Cargo.lock ├── Cargo.toml ├── LICENSE_HEADER ├── docker │ ├── Dockerfile │ ├── bridge.dockerfile │ ├── example.yml │ ├── package.json │ └── pnpm-lock.yaml ├── node │ ├── Cargo.toml │ ├── build.rs │ ├── res │ │ ├── README.md │ │ ├── chain_specs │ │ │ ├── heima-plain.json │ │ │ ├── heima.json │ │ │ ├── paseo-plain.json │ │ │ └── paseo.json │ │ └── genesis_info │ │ │ ├── heima.json │ │ │ └── paseo.json │ └── src │ │ ├── chain_specs │ │ ├── heima.rs │ │ ├── mod.rs │ │ └── paseo.rs │ │ ├── cli.rs │ │ ├── command.rs │ │ ├── fake_runtime_api.rs │ │ ├── main.rs │ │ ├── rpc.rs │ │ ├── service.rs │ │ └── standalone_block_import.rs ├── pallets │ ├── account-fix │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── bitacross │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── custodial_wallet.rs │ │ │ └── lib.rs │ ├── bridge │ │ ├── assets-handler │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ ├── mock.rs │ │ │ │ └── tests.rs │ │ ├── bridge-transfer │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── benchmarking.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── mock.rs │ │ │ │ ├── tests.rs │ │ │ │ └── weights.rs │ │ ├── chain-bridge │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── benchmarking.rs │ │ │ │ ├── hashing.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── mock.rs │ │ │ │ ├── tests.rs │ │ │ │ └── weights.rs │ │ └── common │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── evm-assertions │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ └── tests.rs │ ├── extrinsic-filter │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── benchmarking.rs │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ ├── tests.rs │ │ │ └── weights.rs │ ├── identity-management │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── benchmarking.rs │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ ├── tests.rs │ │ │ └── weights.rs │ ├── omni-account │ │ ├── Cargo.toml │ │ ├── runtime-api │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ └── tests.rs │ ├── omni-bridge │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ └── tests.rs │ ├── parachain-staking │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── auto_compound.rs │ │ │ ├── benchmarking.rs │ │ │ ├── delegation_requests.rs │ │ │ ├── inflation.rs │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ ├── mock_zero_delay.rs │ │ │ ├── set.rs │ │ │ ├── tests.rs │ │ │ ├── tests_zero_delay.rs │ │ │ ├── traits.rs │ │ │ ├── types.rs │ │ │ └── weights.rs │ ├── score-staking │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ ├── tests.rs │ │ │ └── types.rs │ ├── teebag │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ ├── benchmarking.rs │ │ │ ├── ias-data │ │ │ ├── enclave-signing-pubkey-TEST4.bin │ │ │ ├── enclave-signing-pubkey-TEST5.bin │ │ │ ├── enclave-signing-pubkey-TEST6.bin │ │ │ ├── enclave-signing-pubkey-TEST7.bin │ │ │ ├── enclave-signing-pubkey-TEST8-PRODUCTION.bin │ │ │ ├── enclave-signing-pubkey-TEST9.bin │ │ │ ├── ra_dcap_dump_quote.ra │ │ │ ├── ra_dump_cert_TEST4.der │ │ │ ├── ra_dump_cert_TEST5.der │ │ │ ├── ra_dump_cert_TEST6.der │ │ │ ├── ra_dump_cert_TEST7.der │ │ │ ├── ra_dump_cert_TEST8_PRODUCTION.der │ │ │ └── ra_dump_cert_TEST9_enclave_add.der │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ ├── test_util.rs │ │ │ ├── tests.rs │ │ │ └── weights.rs │ ├── upstream_commit │ ├── vc-management │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── benchmarking.rs │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ ├── schema.rs │ │ │ ├── tests.rs │ │ │ └── weights.rs │ └── xcm-asset-manager │ │ ├── Cargo.toml │ │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── precompiles │ ├── assets-erc20 │ │ ├── Cargo.toml │ │ ├── ERC20.sol │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ └── tests.rs │ ├── bridge-transfer │ │ ├── BridgeInterface.sol │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── omni-bridge │ │ ├── Cargo.toml │ │ ├── OmniBridgeInterface.sol │ │ └── src │ │ │ └── lib.rs │ ├── parachain-staking │ │ ├── Cargo.toml │ │ ├── StakingInterface.sol │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ └── tests.rs │ ├── score-staking │ │ ├── Cargo.toml │ │ ├── ScoreStakingInterface.sol │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ └── tests.rs │ └── vesting │ │ ├── Cargo.toml │ │ ├── VestingInterface.sol │ │ └── src │ │ └── lib.rs ├── primitives │ ├── Cargo.toml │ └── src │ │ ├── assertion │ │ ├── achainable.rs │ │ ├── bnb_domain.rs │ │ ├── contest.rs │ │ ├── dynamic.rs │ │ ├── evm_amount_holding.rs │ │ ├── generic_discord_role.rs │ │ ├── mod.rs │ │ ├── network.rs │ │ ├── oneblock.rs │ │ ├── platform_user.rs │ │ ├── soraquiz.rs │ │ ├── vip3.rs │ │ ├── web3_nft.rs │ │ └── web3_token.rs │ │ ├── error.rs │ │ ├── identity.rs │ │ ├── lib.rs │ │ ├── omni │ │ ├── account.rs │ │ ├── chain.rs │ │ ├── intent.rs │ │ ├── mod.rs │ │ └── token.rs │ │ ├── teebag │ │ ├── dcap_types.rs │ │ ├── mod.rs │ │ ├── quoting_enclave.rs │ │ ├── sgx_verify │ │ │ ├── AttestationReportSigningCACert.pem │ │ │ ├── collateral.rs │ │ │ ├── ephemeral_key.rs │ │ │ ├── fuzz-shim │ │ │ │ ├── Cargo.lock │ │ │ │ ├── Cargo.toml │ │ │ │ ├── fuzz │ │ │ │ │ ├── Cargo.toml │ │ │ │ │ └── fuzz_targets │ │ │ │ │ │ ├── decode_quote.rs │ │ │ │ │ │ ├── deserialize_json.rs │ │ │ │ │ │ ├── extract_tcb_info.rs │ │ │ │ │ │ └── signature_check.rs │ │ │ │ ├── rust-toolchain.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ ├── mod.rs │ │ │ ├── netscape_comment.rs │ │ │ ├── test │ │ │ │ ├── dcap │ │ │ │ │ ├── dcap_quote_cert.der │ │ │ │ │ ├── pck_crl.der │ │ │ │ │ ├── pck_crl_issuer_chain.pem │ │ │ │ │ ├── qe_identity.json │ │ │ │ │ ├── qe_identity_cert.pem │ │ │ │ │ ├── qe_identity_issuer_chain.pem │ │ │ │ │ ├── root_ca_crl.der │ │ │ │ │ ├── tcb_info.json │ │ │ │ │ └── tcb_info_issuer_chain.pem │ │ │ │ ├── enclave-signing-pubkey-TEST4.bin │ │ │ │ ├── enclave-signing-pubkey-TEST5.bin │ │ │ │ ├── enclave-signing-pubkey-TEST6.bin │ │ │ │ ├── enclave-signing-pubkey-TEST7.bin │ │ │ │ ├── enclave-signing-pubkey-TEST8-PRODUCTION.bin │ │ │ │ ├── ra_dump_cert_TEST4.der │ │ │ │ ├── ra_dump_cert_TEST5.der │ │ │ │ ├── ra_dump_cert_TEST6.der │ │ │ │ ├── ra_dump_cert_TEST7.der │ │ │ │ ├── ra_dump_cert_TEST8_PRODUCTION.der │ │ │ │ ├── test_ra_cert_MRSIGNER1_MRENCLAVE1.der │ │ │ │ ├── test_ra_cert_MRSIGNER2_MRENCLAVE2.der │ │ │ │ ├── test_ra_cert_MRSIGNER3_MRENCLAVE2.der │ │ │ │ ├── test_ra_signer_attn_MRSIGNER1_MRENCLAVE1.bin │ │ │ │ ├── test_ra_signer_attn_MRSIGNER2_MRENCLAVE2.bin │ │ │ │ ├── test_ra_signer_attn_MRSIGNER3_MRENCLAVE2.bin │ │ │ │ ├── test_ra_signer_pubkey_MRSIGNER1_MRENCLAVE1.bin │ │ │ │ ├── test_ra_signer_pubkey_MRSIGNER2_MRENCLAVE2.bin │ │ │ │ └── test_ra_signer_pubkey_MRSIGNER3_MRENCLAVE2.bin │ │ │ ├── tests.rs │ │ │ └── utils.rs │ │ ├── tcb.rs │ │ └── types.rs │ │ └── vc.rs ├── runtime │ ├── common │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── tests │ │ │ ├── base_call_filter.rs │ │ │ ├── mod.rs │ │ │ ├── setup │ │ │ ├── mod.rs │ │ │ ├── parachain.rs │ │ │ └── relay_chain.rs │ │ │ └── transaction_payment.rs │ ├── heima │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ ├── asset_config.rs │ │ │ ├── constants.rs │ │ │ ├── lib.rs │ │ │ ├── migration │ │ │ ├── P9100.rs │ │ │ ├── P9135.rs │ │ │ ├── P9175.rs │ │ │ ├── P9191 │ │ │ │ ├── migrate_balances_transaction_payment.rs │ │ │ │ ├── migrate_bounty.rs │ │ │ │ ├── migrate_bridge_related.rs │ │ │ │ ├── migrate_democracy.rs │ │ │ │ ├── migrate_identity.rs │ │ │ │ ├── migrate_multisig.rs │ │ │ │ ├── migrate_parachain_staking.rs │ │ │ │ ├── migrate_preimage.rs │ │ │ │ ├── migrate_proxy.rs │ │ │ │ ├── migrate_treasury.rs │ │ │ │ ├── migrate_vesting.rs │ │ │ │ └── mod.rs │ │ │ ├── P9192.rs │ │ │ ├── P9223.rs │ │ │ ├── migration.md │ │ │ ├── mod.rs │ │ │ └── p9251.rs │ │ │ ├── precompiles.rs │ │ │ ├── tests │ │ │ └── mod.rs │ │ │ ├── weights │ │ │ ├── cumulus_pallet_xcmp_queue.rs │ │ │ ├── frame_system.rs │ │ │ ├── mod.rs │ │ │ ├── pallet_asset_manager.rs │ │ │ ├── pallet_balances.rs │ │ │ ├── pallet_bridge_transfer.rs │ │ │ ├── pallet_chain_bridge.rs │ │ │ ├── pallet_collective.rs │ │ │ ├── pallet_democracy.rs │ │ │ ├── pallet_evm.rs │ │ │ ├── pallet_extrinsic_filter.rs │ │ │ ├── pallet_identity.rs │ │ │ ├── pallet_identity_management.rs │ │ │ ├── pallet_membership.rs │ │ │ ├── pallet_multisig.rs │ │ │ ├── pallet_parachain_staking.rs │ │ │ ├── pallet_preimage.rs │ │ │ ├── pallet_proxy.rs │ │ │ ├── pallet_scheduler.rs │ │ │ ├── pallet_session.rs │ │ │ ├── pallet_teebag.rs │ │ │ ├── pallet_timestamp.rs │ │ │ ├── pallet_treasury.rs │ │ │ ├── pallet_utility.rs │ │ │ └── pallet_vc_management.rs │ │ │ └── xcm_config.rs │ └── paseo │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ ├── asset_config.rs │ │ ├── constants.rs │ │ ├── governance_v2 │ │ ├── mod.rs │ │ ├── origins.rs │ │ └── tracks.rs │ │ ├── lib.rs │ │ ├── migration │ │ ├── P9223.rs │ │ ├── migration.md │ │ ├── mod.rs │ │ └── p9251.rs │ │ ├── precompiles.rs │ │ ├── tests │ │ └── mod.rs │ │ ├── weights │ │ ├── cumulus_pallet_xcmp_queue.rs │ │ ├── frame_system.rs │ │ ├── mod.rs │ │ ├── pallet_asset_manager.rs │ │ ├── pallet_balances.rs │ │ ├── pallet_bridge_transfer.rs │ │ ├── pallet_chain_bridge.rs │ │ ├── pallet_collective.rs │ │ ├── pallet_conviction_voting.rs │ │ ├── pallet_democracy.rs │ │ ├── pallet_evm.rs │ │ ├── pallet_extrinsic_filter.rs │ │ ├── pallet_identity.rs │ │ ├── pallet_identity_management.rs │ │ ├── pallet_membership.rs │ │ ├── pallet_multisig.rs │ │ ├── pallet_parachain_staking.rs │ │ ├── pallet_preimage.rs │ │ ├── pallet_proxy.rs │ │ ├── pallet_referenda.rs │ │ ├── pallet_scheduler.rs │ │ ├── pallet_session.rs │ │ ├── pallet_teebag.rs │ │ ├── pallet_timestamp.rs │ │ ├── pallet_treasury.rs │ │ ├── pallet_utility.rs │ │ ├── pallet_vc_management.rs │ │ └── pallet_whitelist.rs │ │ └── xcm_config.rs ├── rust-toolchain.toml ├── rustfmt.toml ├── scripts │ ├── benchmark-weight-local.sh │ ├── benchmark-weight-remote.sh │ ├── build-docker.sh │ ├── chopsticks │ │ ├── heima.yml │ │ └── paseo.yml │ ├── clean-network.sh │ ├── generate-prod-chain-spec.sh │ ├── generate-release-notes.sh │ ├── generate-upstream-patch.sh │ ├── geth │ │ ├── genesis.json │ │ ├── keystore │ │ │ ├── alice.json │ │ │ ├── bob.json │ │ │ ├── charlie.json │ │ │ ├── dave.json │ │ │ └── eve.json │ │ ├── password.txt │ │ └── run_geth.sh │ ├── launch-network.sh │ ├── launch-standalone.sh │ ├── pre-commit.sh │ ├── run-ts-test.sh │ ├── runtime-upgrade.sh │ └── ts-utils │ │ ├── .gitignore │ │ ├── .prettierrc │ │ ├── batch-transfer.ts │ │ ├── initApis.ts │ │ ├── move-vcregistry-snapshot.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── setup-enclave.ts │ │ ├── transfer-to-whitelist.ts │ │ ├── transfer.ts │ │ └── tsconfig.json ├── templates │ └── benchmark │ │ ├── README.md │ │ └── pallet-weight-template.hbs ├── ts-tests │ ├── .env.example │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── common │ │ ├── abi │ │ │ └── precompile │ │ │ │ ├── Bridge.json │ │ │ │ ├── OmniBridge.json │ │ │ │ ├── README.md │ │ │ │ ├── Staking.json │ │ │ │ └── Vesting.json │ │ ├── setup │ │ │ ├── register-parathread.ts │ │ │ ├── setup-enclave.ts │ │ │ ├── teebag-set-dev-mode.ts │ │ │ ├── upgrade-parathread.ts │ │ │ └── wait-finalized-block.ts │ │ └── utils │ │ │ ├── compile.ts │ │ │ ├── config.ts │ │ │ ├── function.ts │ │ │ ├── index.ts │ │ │ └── integration-setup.ts │ ├── config.ci.json │ ├── config.prod.json │ ├── global.d.ts │ ├── integration-tests │ │ ├── base-filter.test.ts │ │ ├── chopsticks-runtime-upgrade-issue.md │ │ ├── evm-contract.test.ts │ │ ├── precompile-contract.test.ts │ │ └── runtime-upgrade.test.ts │ ├── package.json │ ├── pnpm-lock.yaml │ ├── tsconfig.json │ └── vitest.config.ts ├── utils │ ├── Cargo.toml │ ├── proc-macros │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── reuse.rs │ └── src │ │ ├── hex.rs │ │ ├── lib.rs │ │ └── macros.rs └── zombienet │ └── config.toml └── tee-worker ├── client-api ├── .gitignore ├── CHANGELOG.md ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src │ ├── identity │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── definitions.ts │ │ │ ├── identity │ │ │ │ └── definitions.ts │ │ │ ├── omniAccount │ │ │ │ └── definitions.ts │ │ │ ├── sidechain │ │ │ │ └── definitions.ts │ │ │ ├── trusted_operations │ │ │ │ └── definitions.ts │ │ │ └── vc │ │ │ │ └── definitions.ts │ │ └── tsconfig.json │ ├── omni │ │ ├── index.ts │ │ ├── interfaces │ │ │ ├── definitions.ts │ │ │ ├── identity │ │ │ │ └── definitions.ts │ │ │ ├── omniAccount │ │ │ │ └── definitions.ts │ │ │ ├── omniExecutor │ │ │ │ └── definitions.ts │ │ │ ├── sidechain │ │ │ │ └── definitions.ts │ │ │ ├── trusted_operations │ │ │ │ └── definitions.ts │ │ │ └── vc │ │ │ │ └── definitions.ts │ │ └── tsconfig.json │ └── sidechain │ │ ├── index.ts │ │ ├── interfaces │ │ ├── definitions.ts │ │ └── dummynocustom │ │ │ └── definitions.ts │ │ └── tsconfig.json ├── tsconfig.base.json └── tsup.config.ts ├── identity ├── .dockerignore ├── .editorconfig ├── .gitattributes.orig ├── .githooks │ └── pre-commit ├── .github │ └── workflows │ │ ├── build_and_test.yml │ │ ├── publish-docker-sidechain.yml │ │ └── publish-docker-teeracle.yml ├── .gitignore ├── .taplo.toml ├── Cargo.lock ├── Cargo.toml ├── DESIGN.md ├── Dockerfile ├── Jenkinsfile ├── LICENSE ├── Makefile ├── README.md ├── UpdateRustSGXSDK.mk ├── app-libs │ ├── parentchain-interface │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── event_subscriber.rs │ │ │ ├── integritee │ │ │ ├── event_filter.rs │ │ │ ├── event_handler.rs │ │ │ └── mod.rs │ │ │ ├── lib.rs │ │ │ ├── target_a │ │ │ ├── event_filter.rs │ │ │ ├── event_handler.rs │ │ │ └── mod.rs │ │ │ └── target_b │ │ │ ├── event_filter.rs │ │ │ ├── event_handler.rs │ │ │ └── mod.rs │ ├── sgx-runtime │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── evm.rs │ │ │ ├── lib.rs │ │ │ └── migration.rs │ └── stf │ │ ├── Cargo.toml │ │ └── src │ │ ├── evm_helpers.rs │ │ ├── getter.rs │ │ ├── hash.rs │ │ ├── helpers.rs │ │ ├── lib.rs │ │ ├── stf_sgx.rs │ │ ├── stf_sgx_primitives.rs │ │ ├── stf_sgx_tests.rs │ │ ├── test_genesis.rs │ │ ├── trusted_call.rs │ │ ├── trusted_call_litentry.rs │ │ └── trusted_call_result.rs ├── bin │ └── .gitkeep ├── build.Dockerfile ├── cli │ ├── Cargo.toml │ ├── README.md │ ├── benchmark.sh │ ├── lit_parentchain_nonce.sh │ ├── lit_test_dr_vc.sh │ ├── lit_test_failed_parentchain_extrinsic.sh │ ├── lit_ts_api_package_build.sh │ ├── lit_ts_integration_test.sh │ ├── lit_ts_worker_test.sh │ ├── src │ │ ├── attesteer │ │ │ ├── commands │ │ │ │ ├── mod.rs │ │ │ │ └── send_dcap_quote.rs │ │ │ └── mod.rs │ │ ├── base_cli │ │ │ ├── commands │ │ │ │ ├── balance.rs │ │ │ │ ├── faucet.rs │ │ │ │ ├── listen.rs │ │ │ │ ├── litentry │ │ │ │ │ ├── activate_identity.rs │ │ │ │ │ ├── deactivate_identity.rs │ │ │ │ │ ├── id_graph_hash.rs │ │ │ │ │ ├── link_identity.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── shield_text.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── register_tcb_info.rs │ │ │ │ ├── system_version.rs │ │ │ │ └── transfer.rs │ │ │ └── mod.rs │ │ ├── benchmark │ │ │ ├── mod.rs │ │ │ ├── request_vc.rs │ │ │ └── stf.rs │ │ ├── command_utils.rs │ │ ├── commands.rs │ │ ├── evm │ │ │ ├── commands │ │ │ │ ├── evm_call.rs │ │ │ │ ├── evm_command_utils.rs │ │ │ │ ├── evm_create.rs │ │ │ │ ├── evm_read.rs │ │ │ │ └── mod.rs │ │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── trusted_base_cli │ │ │ ├── commands │ │ │ │ ├── balance.rs │ │ │ │ ├── get_shard.rs │ │ │ │ ├── litentry │ │ │ │ │ ├── clean_id_graphs.rs │ │ │ │ │ ├── get_storage.rs │ │ │ │ │ ├── id_graph.rs │ │ │ │ │ ├── link_identity.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── remove_identity.rs │ │ │ │ │ ├── request_vc.rs │ │ │ │ │ ├── request_vc_subcommands.rs │ │ │ │ │ └── send_erroneous_parentchain_call.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── nonce.rs │ │ │ │ ├── set_balance.rs │ │ │ │ └── transfer.rs │ │ │ └── mod.rs │ │ ├── trusted_cli.rs │ │ ├── trusted_command_utils.rs │ │ └── trusted_operation.rs │ ├── test_auto_shielding_with_transfer_bob.sh │ ├── test_shield_on_target_nodes_with_transfer_to_alice.sh │ └── tests │ │ └── basic_tests.rs ├── client-sdk │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitignore │ ├── .npmrc │ ├── .prettierignore │ ├── .prettierrc │ ├── .verdaccio │ │ └── config.yml │ ├── README.md │ ├── jest.config.ts │ ├── jest.preset.js │ ├── nx.json │ ├── package.json │ ├── packages │ │ ├── chaindata │ │ │ ├── .eslintrc.json │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── chaindata.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ └── client-sdk │ │ │ ├── .eslintrc.json │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── docs │ │ │ ├── .nojekyll │ │ │ ├── README.md │ │ │ ├── classes │ │ │ │ └── Enclave.md │ │ │ └── modules │ │ │ │ └── request.md │ │ │ ├── jest.config.ts │ │ │ ├── package.json │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── __test__ │ │ │ │ ├── id-graph-decoder.test.ts │ │ │ │ └── payload-signing.test.ts │ │ │ │ ├── config.ts │ │ │ │ ├── enclave.ts │ │ │ │ ├── requests │ │ │ │ ├── add-account.request.ts │ │ │ │ ├── call-ethereum.request.ts │ │ │ │ ├── create-account-store.request.ts │ │ │ │ ├── get-enclave-nonce.ts │ │ │ │ ├── get-id-graph-hash.ts │ │ │ │ ├── get-id-graph.request.ts │ │ │ │ ├── get-last-registered-enclave.ts │ │ │ │ ├── index.ts │ │ │ │ ├── link-identity-callback.request.ts │ │ │ │ ├── link-identity.request.ts │ │ │ │ ├── publicize-account.request.ts │ │ │ │ ├── remark.request.ts │ │ │ │ ├── remove-accounts.request.ts │ │ │ │ ├── request-batch-vc.request.ts │ │ │ │ ├── request-verification-code.request.ts │ │ │ │ ├── request_auth_token.request.ts │ │ │ │ ├── set-identity-networks.request.ts │ │ │ │ ├── transfer-ethereum.request.ts │ │ │ │ ├── transfer-native.request.ts │ │ │ │ └── transfer-solana.request.ts │ │ │ │ ├── type-creators │ │ │ │ ├── id-graph.ts │ │ │ │ ├── key-aes-output.ts │ │ │ │ ├── litentry-identity.test.ts │ │ │ │ ├── litentry-identity.ts │ │ │ │ ├── litentry-multi-signature.test.ts │ │ │ │ ├── litentry-multi-signature.ts │ │ │ │ ├── nonce.test.ts │ │ │ │ ├── nonce.ts │ │ │ │ ├── request.ts │ │ │ │ ├── tc-authentication.test.ts │ │ │ │ ├── tc-authentication.ts │ │ │ │ ├── trusted-call.test.ts │ │ │ │ ├── trusted-call.ts │ │ │ │ ├── validation-data.test.ts │ │ │ │ └── validation-data.ts │ │ │ │ ├── util │ │ │ │ ├── calculate-id-graph-hash.test.ts │ │ │ │ ├── calculate-id-graph-hash.ts │ │ │ │ ├── codec-to-string.ts │ │ │ │ ├── create-payload-to-sign.test.ts │ │ │ │ ├── create-payload-to-sign.ts │ │ │ │ ├── decode-signature.ts │ │ │ │ ├── get-signature-crypto-type.ts │ │ │ │ ├── safely-decode-option.test.ts │ │ │ │ ├── safely-decode-option.ts │ │ │ │ ├── shielding-key.ts │ │ │ │ ├── types.ts │ │ │ │ ├── u8aToBase64Url.ts │ │ │ │ └── verify-signature.ts │ │ │ │ └── vc-validator │ │ │ │ ├── __tests__ │ │ │ │ └── validate-enclave-registry.test.ts │ │ │ │ ├── runtime-enclave-registry.ts │ │ │ │ ├── validator.spec.ts │ │ │ │ ├── validator.ts │ │ │ │ └── validator.types.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.spec.json │ │ │ └── typedoc.json │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ ├── project.json │ ├── tools │ │ └── scripts │ │ │ └── publish.mjs │ └── tsconfig.base.json ├── core-primitives │ ├── attestation-handler │ │ ├── AttestationReportSigningCACert.pem │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── attestation_handler.rs │ │ │ ├── cert.rs │ │ │ ├── collateral.rs │ │ │ ├── error.rs │ │ │ └── lib.rs │ ├── binary-merkle-tree │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── component-container │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── atomic_container.rs │ │ │ ├── component_container.rs │ │ │ ├── error.rs │ │ │ └── lib.rs │ ├── enclave-api │ │ ├── Cargo.toml │ │ ├── build.rs │ │ ├── ffi │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── src │ │ │ ├── enclave_base.rs │ │ │ ├── enclave_test.rs │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ ├── remote_attestation.rs │ │ │ ├── sidechain.rs │ │ │ └── utils.rs │ ├── enclave-metrics │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── extrinsics-factory │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ └── mock.rs │ ├── hashing │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── std_hash.rs │ ├── import-queue │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── import_queue.rs │ │ │ └── lib.rs │ ├── networking-utils │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── ports.rs │ ├── node-api │ │ ├── Cargo.toml │ │ ├── api-client-extensions │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── account.rs │ │ │ │ ├── chain.rs │ │ │ │ ├── lib.rs │ │ │ │ └── pallet_teebag.rs │ │ ├── api-client-types │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── factory │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── metadata-provider │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── error.rs │ │ │ │ └── lib.rs │ │ ├── metadata │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── error.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── metadata_mocks.rs │ │ │ │ ├── pallet_balances.rs │ │ │ │ ├── pallet_evm_assertion.rs │ │ │ │ ├── pallet_imp.rs │ │ │ │ ├── pallet_omni_account.rs │ │ │ │ ├── pallet_proxy.rs │ │ │ │ ├── pallet_sidechain.rs │ │ │ │ ├── pallet_system.rs │ │ │ │ ├── pallet_teebag.rs │ │ │ │ ├── pallet_timestamp.rs │ │ │ │ ├── pallet_utility.rs │ │ │ │ ├── pallet_vcmp.rs │ │ │ │ └── runtime_call.rs │ │ └── src │ │ │ └── lib.rs │ ├── nonce-cache │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ └── nonce_cache.rs │ ├── ocall-api │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── primitives-cache │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ └── primitives_cache.rs │ ├── rpc │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── settings │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── worker_mode.rs │ ├── sgx-runtime-primitives │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── constants.rs │ │ │ ├── lib.rs │ │ │ └── types.rs │ ├── sgx │ │ ├── crypto │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── aes.rs │ │ │ │ ├── aes256.rs │ │ │ │ ├── ecdsa.rs │ │ │ │ ├── ed25519.rs │ │ │ │ ├── ed25519_derivation.rs │ │ │ │ ├── error.rs │ │ │ │ ├── key_repository.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── mocks.rs │ │ │ │ ├── rsa3072.rs │ │ │ │ ├── schnorr.rs │ │ │ │ └── traits.rs │ │ ├── io │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── temp-dir │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── lib.rs │ │ │ └── test.rs │ ├── stf-executor │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── enclave_signer.rs │ │ │ ├── error.rs │ │ │ ├── executor.rs │ │ │ ├── executor_tests.rs │ │ │ ├── getter_executor.rs │ │ │ ├── lib.rs │ │ │ ├── mocks.rs │ │ │ ├── state_getter.rs │ │ │ └── traits.rs │ ├── stf-interface │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mocks.rs │ │ │ ├── parentchain_pallet.rs │ │ │ ├── runtime_upgrade.rs │ │ │ ├── sudo_pallet.rs │ │ │ └── system_pallet.rs │ ├── stf-primitives │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ ├── traits.rs │ │ │ └── types.rs │ ├── stf-state-handler │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── file_io.rs │ │ │ ├── handle_state.rs │ │ │ ├── in_memory_state_file_io.rs │ │ │ ├── lib.rs │ │ │ ├── query_shard_state.rs │ │ │ ├── state_handler.rs │ │ │ ├── state_initializer.rs │ │ │ ├── state_snapshot_primitives.rs │ │ │ ├── state_snapshot_repository.rs │ │ │ ├── state_snapshot_repository_loader.rs │ │ │ └── test │ │ │ ├── mocks │ │ │ ├── initialize_state_mock.rs │ │ │ ├── mod.rs │ │ │ ├── state_key_repository_mock.rs │ │ │ └── versioned_state_access_mock.rs │ │ │ ├── mod.rs │ │ │ └── sgx_tests.rs │ ├── stf-state-observer │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ ├── state_observer.rs │ │ │ └── traits.rs │ ├── storage │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── keys.rs │ │ │ ├── lib.rs │ │ │ ├── proof.rs │ │ │ └── verify_storage_proof.rs │ ├── substrate-sgx │ │ ├── environmental │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── externalities │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── bypass.rs │ │ │ │ ├── codec_impl.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── scope_limited.rs │ │ │ │ └── vectorize.rs │ │ └── sp-io │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── test │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ └── mock │ │ │ ├── handle_state_mock.rs │ │ │ ├── metrics_ocall_mock.rs │ │ │ ├── mod.rs │ │ │ ├── onchain_mock.rs │ │ │ ├── shielding_crypto_mock.rs │ │ │ ├── sidechain_ocall_api_mock.rs │ │ │ └── stf_mock.rs │ ├── time-utils │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── top-pool-author │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── api.rs │ │ │ ├── author.rs │ │ │ ├── author_tests.rs │ │ │ ├── client_error.rs │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ ├── mocks.rs │ │ │ ├── test_fixtures.rs │ │ │ ├── test_utils.rs │ │ │ ├── top_filter.rs │ │ │ └── traits.rs │ ├── top-pool │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── base_pool.rs │ │ │ ├── basic_pool.rs │ │ │ ├── error.rs │ │ │ ├── future.rs │ │ │ ├── lib.rs │ │ │ ├── listener.rs │ │ │ ├── mocks │ │ │ ├── mod.rs │ │ │ ├── rpc_responder_mock.rs │ │ │ └── trusted_operation_pool_mock.rs │ │ │ ├── pool.rs │ │ │ ├── primitives.rs │ │ │ ├── ready.rs │ │ │ ├── rotator.rs │ │ │ ├── tracked_map.rs │ │ │ ├── validated_pool.rs │ │ │ └── watcher.rs │ ├── types │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── parentchain │ │ │ ├── events.rs │ │ │ └── mod.rs │ │ │ ├── sidechain.rs │ │ │ └── storage.rs │ └── utils │ │ ├── Cargo.toml │ │ └── src │ │ ├── buffer.rs │ │ ├── error.rs │ │ ├── hex.rs │ │ ├── hex_display.rs │ │ ├── lib.rs │ │ └── stringify.rs ├── core │ ├── direct-rpc-client │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── direct-rpc-server │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── builders │ │ │ ├── mod.rs │ │ │ ├── rpc_response_builder.rs │ │ │ └── rpc_return_value_builder.rs │ │ │ ├── lib.rs │ │ │ ├── mocks │ │ │ ├── determine_watch_mock.rs │ │ │ ├── mod.rs │ │ │ ├── response_channel_mock.rs │ │ │ └── send_rpc_response_mock.rs │ │ │ ├── response_channel.rs │ │ │ ├── rpc_connection_registry.rs │ │ │ ├── rpc_responder.rs │ │ │ ├── rpc_watch_extractor.rs │ │ │ └── rpc_ws_handler.rs │ ├── offchain-worker-executor │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── executor.rs │ │ │ └── lib.rs │ ├── parentchain │ │ ├── block-import-dispatcher │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── error.rs │ │ │ │ ├── immediate_dispatcher.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── trigger_parentchain_block_import_mock.rs │ │ │ │ └── triggered_dispatcher.rs │ │ ├── block-importer │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── block_importer.rs │ │ │ │ ├── block_importer_mock.rs │ │ │ │ ├── error.rs │ │ │ │ └── lib.rs │ │ ├── indirect-calls-executor │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── error.rs │ │ │ │ ├── event_filter.rs │ │ │ │ ├── executor.rs │ │ │ │ ├── filter_metadata.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── mock.rs │ │ │ │ └── traits.rs │ │ ├── light-client │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── concurrent_access.rs │ │ │ │ ├── error.rs │ │ │ │ ├── finality.rs │ │ │ │ ├── io.rs │ │ │ │ ├── justification.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── light_validation.rs │ │ │ │ ├── light_validation_state.rs │ │ │ │ ├── mocks │ │ │ │ ├── mod.rs │ │ │ │ ├── validator_access_mock.rs │ │ │ │ ├── validator_mock.rs │ │ │ │ └── validator_mock_seal.rs │ │ │ │ └── state.rs │ │ ├── parentchain-crate │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── test │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── parentchain_block_builder.rs │ │ │ └── parentchain_header_builder.rs │ ├── peer-top-broadcaster │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── rest-client │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── fixtures │ │ │ ├── amazon_root_ca_1_v3.pem │ │ │ ├── baltimore_cyber_trust_root_v3.pem │ │ │ └── lets_encrypt_root_cert.pem │ │ │ ├── http_client.rs │ │ │ ├── lib.rs │ │ │ ├── mocks │ │ │ ├── http_client_mock.rs │ │ │ └── mod.rs │ │ │ └── rest_client.rs │ ├── rpc-client │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── direct_client.rs │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ └── ws_client.rs │ ├── rpc-server │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── system-version │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── src │ │ │ └── lib.rs │ └── tls-websocket-server │ │ ├── Cargo.toml │ │ └── src │ │ ├── certificate_generation.rs │ │ ├── config_provider.rs │ │ ├── connection.rs │ │ ├── connection_id_generator.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── stream_state.rs │ │ ├── test │ │ ├── fixtures │ │ │ ├── mod.rs │ │ │ ├── no_cert_verifier.rs │ │ │ ├── test_cert.rs │ │ │ ├── test_private_key.rs │ │ │ ├── test_server.rs │ │ │ └── test_server_config_provider.rs │ │ ├── mocks │ │ │ ├── mod.rs │ │ │ ├── web_socket_connection_mock.rs │ │ │ └── web_socket_handler_mock.rs │ │ └── mod.rs │ │ ├── tls_common.rs │ │ └── ws_server.rs ├── docker │ ├── README.md │ ├── docker-compose.yml │ ├── entrypoint.sh │ ├── fork.Dockerfile │ ├── lit-di-identity-multiworker-test.yml │ ├── lit-di-identity-test.yml │ ├── lit-dr-vc-multiworker-test.yml │ ├── lit-dr-vc-test.yml │ ├── lit-native-request-vc-multiworker-test.yml │ ├── lit-native-request-vc-test.yml │ ├── lit-omni-account-multiworker-test.yml │ ├── lit-omni-account-test.yml │ ├── lit-parentchain-nonce.yml │ ├── lit-resume-worker.yml │ ├── lit-test-failed-parentchain-extrinsic.yml │ ├── lit-test-stress-script.yml │ ├── lit-ts-api-package-build.yml │ ├── lit-vc-correctness-test.yml │ ├── multiworker-docker-compose.yml │ ├── ping.Dockerfile │ └── sidechain-benchmark.yml ├── docs │ ├── README.md │ └── diagramms │ │ └── block_import_sequence.svg ├── enclave-runtime │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Enclave.config.production.xml │ ├── Enclave.config.xml │ ├── Enclave.edl │ ├── Enclave.lds │ ├── Enclave_private.pem │ ├── Makefile │ ├── README.md │ ├── rust-toolchain.toml │ ├── rustfmt.toml │ ├── src │ │ ├── attestation.rs │ │ ├── empty_impls.rs │ │ ├── error.rs │ │ ├── initialization │ │ │ ├── global_components.rs │ │ │ ├── mod.rs │ │ │ └── parentchain │ │ │ │ ├── common.rs │ │ │ │ ├── integritee_parachain.rs │ │ │ │ ├── integritee_solochain.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── target_a_parachain.rs │ │ │ │ ├── target_a_solochain.rs │ │ │ │ ├── target_b_parachain.rs │ │ │ │ └── target_b_solochain.rs │ │ ├── ipfs.rs │ │ ├── lib.rs │ │ ├── ocall │ │ │ ├── attestation_ocall.rs │ │ │ ├── ffi.rs │ │ │ ├── ipfs_ocall.rs │ │ │ ├── metrics_ocall.rs │ │ │ ├── mod.rs │ │ │ ├── on_chain_ocall.rs │ │ │ └── sidechain_ocall.rs │ │ ├── rpc │ │ │ ├── common_api.rs │ │ │ ├── mod.rs │ │ │ └── rpc_response_channel.rs │ │ ├── shard_creation_info.rs │ │ ├── stf_task_handler.rs │ │ ├── sync.rs │ │ ├── test │ │ │ ├── Counter.sol │ │ │ ├── cert_tests.rs │ │ │ ├── direct_rpc_tests.rs │ │ │ ├── enclave_signer_tests.rs │ │ │ ├── evm_pallet_tests.rs │ │ │ ├── fixtures │ │ │ │ ├── components.rs │ │ │ │ ├── initialize_test_state.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── ra_dump_cert_TEST4.der │ │ │ │ ├── test_ra_signer_attn_MRSIGNER1_MRENCLAVE1.bin │ │ │ │ └── test_setup.rs │ │ │ ├── ipfs_tests.rs │ │ │ ├── mocks │ │ │ │ ├── attestation_ocall_mock.rs │ │ │ │ ├── enclave_rpc_ocall_mock.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── peer_updater_mock.rs │ │ │ │ ├── propose_to_import_call_mock.rs │ │ │ │ ├── rpc_responder_mock.rs │ │ │ │ └── types.rs │ │ │ ├── mod.rs │ │ │ ├── sidechain_aura_tests.rs │ │ │ ├── sidechain_event_tests.rs │ │ │ ├── state_getter_tests.rs │ │ │ ├── tests_main.rs │ │ │ └── top_pool_tests.rs │ │ ├── tls_ra │ │ │ ├── README.md │ │ │ ├── authentication.rs │ │ │ ├── mocks.rs │ │ │ ├── mod.rs │ │ │ ├── seal_handler.rs │ │ │ ├── tests.rs │ │ │ ├── tls_ra_client.rs │ │ │ └── tls_ra_server.rs │ │ ├── top_pool_execution.rs │ │ ├── utils.rs │ │ └── vc_issuance_task.rs │ └── x86_64-unknown-linux-sgx.json ├── entrypoint.sh ├── extract_identity ├── lib │ └── readme.txt ├── license_header_scs.txt ├── litentry │ ├── core │ │ ├── assertion-build-v2 │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ ├── linked_identities │ │ │ │ └── mod.rs │ │ │ │ ├── nft_holder │ │ │ │ └── mod.rs │ │ │ │ ├── platform_user │ │ │ │ └── mod.rs │ │ │ │ └── token_holding_amount │ │ │ │ └── mod.rs │ │ ├── assertion-build │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── a1.rs │ │ │ │ ├── a13.rs │ │ │ │ ├── a14.rs │ │ │ │ ├── a2.rs │ │ │ │ ├── a20.rs │ │ │ │ ├── a3.rs │ │ │ │ ├── a6.rs │ │ │ │ ├── a8.rs │ │ │ │ ├── achainable │ │ │ │ ├── amount.rs │ │ │ │ ├── amount_holding.rs │ │ │ │ ├── amount_token.rs │ │ │ │ ├── amounts.rs │ │ │ │ ├── basic.rs │ │ │ │ ├── between_percents.rs │ │ │ │ ├── class_of_year.rs │ │ │ │ ├── date.rs │ │ │ │ ├── date_interval.rs │ │ │ │ ├── date_percent.rs │ │ │ │ ├── mirror.rs │ │ │ │ ├── mod.rs │ │ │ │ └── token.rs │ │ │ │ ├── brc20 │ │ │ │ ├── amount_holder.rs │ │ │ │ └── mod.rs │ │ │ │ ├── dynamic │ │ │ │ ├── mod.rs │ │ │ │ └── repository.rs │ │ │ │ ├── generic_discord_role.rs │ │ │ │ ├── holding_time.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── lit_staking.rs │ │ │ │ ├── nodereal │ │ │ │ ├── amount_holding │ │ │ │ │ ├── evm_amount_holding.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── bnb_domain │ │ │ │ │ ├── bnb_digit_domain_club_amount.rs │ │ │ │ │ ├── bnb_domain_holding_amount.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── crypto_summary │ │ │ │ │ └── mod.rs │ │ │ │ ├── mod.rs │ │ │ │ └── nft_holder │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── weirdo_ghost_gang_holder.rs │ │ │ │ ├── oneblock │ │ │ │ ├── course.rs │ │ │ │ └── mod.rs │ │ │ │ └── vip3 │ │ │ │ ├── card.rs │ │ │ │ └── mod.rs │ │ ├── authentication │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── jwt.rs │ │ │ │ └── lib.rs │ │ ├── common │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── abort_strategy.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── platform_user │ │ │ │ └── mod.rs │ │ │ │ ├── web3_nft │ │ │ │ └── mod.rs │ │ │ │ └── web3_token │ │ │ │ ├── mod.rs │ │ │ │ ├── token_amount_range.rs │ │ │ │ └── token_decimals_filter.rs │ │ ├── credentials-v2 │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ ├── linked_identities │ │ │ │ └── mod.rs │ │ │ │ ├── nft_holder │ │ │ │ └── mod.rs │ │ │ │ ├── platform_user │ │ │ │ └── mod.rs │ │ │ │ └── token_holding_amount │ │ │ │ └── mod.rs │ │ ├── credentials │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── achainable │ │ │ │ ├── amount_holding_time.rs │ │ │ │ ├── bab_holder.rs │ │ │ │ ├── lit_holding_amount.rs │ │ │ │ ├── mod.rs │ │ │ │ └── uniswap_user.rs │ │ │ │ ├── assertion_logic.rs │ │ │ │ ├── brc20 │ │ │ │ ├── amount_holder.rs │ │ │ │ └── mod.rs │ │ │ │ ├── credential_schema.rs │ │ │ │ ├── error.rs │ │ │ │ ├── generic_discord_role │ │ │ │ └── mod.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── litentry_profile │ │ │ │ ├── holding_amount.rs │ │ │ │ ├── lit_staking.rs │ │ │ │ ├── mirror.rs │ │ │ │ ├── mod.rs │ │ │ │ └── token_balance.rs │ │ │ │ ├── nodereal │ │ │ │ ├── amount_holding │ │ │ │ │ ├── evm_amount_holding.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── bnb_domain │ │ │ │ │ ├── bnb_digit_domain_club_amount.rs │ │ │ │ │ ├── bnb_domain_holding_amount.rs │ │ │ │ │ └── mod.rs │ │ │ │ ├── crypto_summary │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── summary.rs │ │ │ │ ├── mod.rs │ │ │ │ └── nft_holder │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── weirdo_ghost_gang_holder.rs │ │ │ │ ├── oneblock │ │ │ │ └── mod.rs │ │ │ │ ├── schema.rs │ │ │ │ ├── templates │ │ │ │ ├── credential.json │ │ │ │ └── credential_schema.json │ │ │ │ └── vip3.rs │ │ ├── data-providers │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── achainable.rs │ │ │ │ ├── achainable_names.rs │ │ │ │ ├── blockchain_info.rs │ │ │ │ ├── daren_market.rs │ │ │ │ ├── discord_litentry.rs │ │ │ │ ├── discord_official.rs │ │ │ │ ├── geniidata.rs │ │ │ │ ├── google.rs │ │ │ │ ├── karat_dao.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── magic_craft.rs │ │ │ │ ├── moralis.rs │ │ │ │ ├── nodereal.rs │ │ │ │ ├── nodereal_jsonrpc.rs │ │ │ │ ├── twitter_official.rs │ │ │ │ └── vip3.rs │ │ ├── dynamic-assertion │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── evm-dynamic-assertions │ │ │ ├── .gitignore │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ ├── mock.rs │ │ │ │ ├── precompiles │ │ │ │ ├── hex_to_number.rs │ │ │ │ ├── http_get.rs │ │ │ │ ├── http_post.rs │ │ │ │ ├── identity_to_string.rs │ │ │ │ ├── json_utils.rs │ │ │ │ ├── logging.rs │ │ │ │ ├── macros.rs │ │ │ │ ├── mocks.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── parse_decimal.rs │ │ │ │ ├── parse_int.rs │ │ │ │ └── to_hex.rs │ │ │ │ ├── repository.rs │ │ │ │ └── sealing.rs │ │ ├── identity-verification │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── error.rs │ │ │ │ ├── helpers.rs │ │ │ │ ├── lib.rs │ │ │ │ └── web2 │ │ │ │ ├── discord.rs │ │ │ │ ├── email │ │ │ │ ├── mailer │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── sendgrid_mailer.rs │ │ │ │ │ └── template.rs │ │ │ │ ├── mod.rs │ │ │ │ └── verification_code_store.rs │ │ │ │ ├── google │ │ │ │ ├── mod.rs │ │ │ │ └── oauth2_state_store.rs │ │ │ │ ├── mod.rs │ │ │ │ └── twitter │ │ │ │ ├── mod.rs │ │ │ │ └── oauth_store.rs │ │ ├── mock-server │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── achainable.rs │ │ │ │ ├── blockchain_info.rs │ │ │ │ ├── daren_market.rs │ │ │ │ ├── discord_litentry.rs │ │ │ │ ├── discord_official.rs │ │ │ │ ├── geniidata.rs │ │ │ │ ├── karat_dao.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── litentry_archive.rs │ │ │ │ ├── magic_craft.rs │ │ │ │ ├── moralis.rs │ │ │ │ ├── nodereal.rs │ │ │ │ ├── nodereal_jsonrpc.rs │ │ │ │ ├── oneblock.rs │ │ │ │ ├── twitter_official.rs │ │ │ │ └── vip3.rs │ │ ├── native-task │ │ │ ├── receiver │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ ├── authentication_utils.rs │ │ │ │ │ ├── lib.rs │ │ │ │ │ ├── trusted_call_authenticated.rs │ │ │ │ │ ├── trusted_call_handlers │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── request_vc_handler.rs │ │ │ │ │ └── types.rs │ │ │ └── sender │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── omni-account │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── in_memory_store.rs │ │ │ │ ├── lib.rs │ │ │ │ └── repository.rs │ │ ├── parachain-extrinsic-task │ │ │ ├── receiver │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ └── sender │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ └── lib.rs │ │ ├── service │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── lib.rs │ │ │ │ ├── platform_user │ │ │ │ ├── daren_market_user.rs │ │ │ │ ├── karat_dao_user.rs │ │ │ │ ├── magic_craft_staking_user.rs │ │ │ │ └── mod.rs │ │ │ │ ├── web3_nft │ │ │ │ ├── mod.rs │ │ │ │ └── nft_holder │ │ │ │ │ ├── common.rs │ │ │ │ │ └── mod.rs │ │ │ │ └── web3_token │ │ │ │ ├── mod.rs │ │ │ │ └── token_balance │ │ │ │ ├── bnb_balance.rs │ │ │ │ ├── btc_balance.rs │ │ │ │ ├── common.rs │ │ │ │ ├── eth_balance.rs │ │ │ │ ├── lit_balance.rs │ │ │ │ ├── mod.rs │ │ │ │ └── sol_balance.rs │ │ ├── stf-task │ │ │ ├── receiver │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ │ ├── handler │ │ │ │ │ ├── assertion.rs │ │ │ │ │ ├── identity_verification.rs │ │ │ │ │ └── mod.rs │ │ │ │ │ ├── lib.rs │ │ │ │ │ ├── mock.rs │ │ │ │ │ └── test.rs │ │ │ └── sender │ │ │ │ ├── Cargo.toml │ │ │ │ └── src │ │ │ │ ├── error.rs │ │ │ │ └── lib.rs │ │ ├── teebag-storage │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ └── vc-task │ │ │ ├── receiver │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── lib.rs │ │ │ └── sender │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── lib.rs │ ├── pallets │ │ ├── identity-management │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── identity_context.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── migrations.rs │ │ │ │ ├── mock.rs │ │ │ │ └── tests.rs │ │ └── parentchain │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mock.rs │ │ │ ├── tests.rs │ │ │ └── weights.rs │ └── primitives │ │ ├── Cargo.toml │ │ └── src │ │ ├── aes_request.rs │ │ ├── bitcoin_address.rs │ │ ├── bitcoin_signature.rs │ │ ├── ethereum_signature.rs │ │ ├── lib.rs │ │ ├── plain_request.rs │ │ ├── stf_request.rs │ │ └── validation_data.rs ├── rust-sgx-sdk │ ├── Readme.md │ ├── buildenv.mk │ ├── common │ │ └── inc │ │ │ ├── assert.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── errno.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── iso646.h │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── mbusafecrt.h │ │ │ ├── netdb.h │ │ │ ├── poll.h │ │ │ ├── pthread.h │ │ │ ├── pwd.h │ │ │ ├── sched.h │ │ │ ├── setjmp.h │ │ │ ├── signal.h │ │ │ ├── stdalign.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── sys │ │ │ ├── _types.h │ │ │ ├── cdefs.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── fpu.h │ │ │ ├── ieee.h │ │ │ ├── limits.h │ │ │ ├── sockaddr.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── stdint.h │ │ │ ├── struct_timespec.h │ │ │ ├── types.h │ │ │ └── uio.h │ │ │ ├── time.h │ │ │ ├── unistd.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ ├── edl │ │ ├── inc │ │ │ ├── dirent.h │ │ │ └── stat.h │ │ ├── intel │ │ │ ├── sgx_dcap_tvl.edl │ │ │ ├── sgx_pthread.edl │ │ │ ├── sgx_tkey_exchange.edl │ │ │ ├── sgx_tprotected_fs.edl │ │ │ ├── sgx_tstdc.edl │ │ │ ├── sgx_tswitchless.edl │ │ │ └── sgx_ttls.edl │ │ ├── sgx_asyncio.edl │ │ ├── sgx_backtrace.edl │ │ ├── sgx_env.edl │ │ ├── sgx_fd.edl │ │ ├── sgx_file.edl │ │ ├── sgx_fs.edl │ │ ├── sgx_mem.edl │ │ ├── sgx_net.edl │ │ ├── sgx_net_switchless.edl │ │ ├── sgx_pipe.edl │ │ ├── sgx_process.edl │ │ ├── sgx_signal.edl │ │ ├── sgx_socket.edl │ │ ├── sgx_stdio.edl │ │ ├── sgx_sys.edl │ │ ├── sgx_thread.edl │ │ ├── sgx_time.edl │ │ └── sgx_tstd.edl │ └── version ├── rust-toolchain.toml ├── rustfmt.toml ├── samples │ └── teeracle │ │ ├── README.md │ │ ├── install-teeracle.sh │ │ └── kubernetes │ │ ├── Chart.yaml │ │ ├── templates │ │ └── teeracle.yaml │ │ └── values.yaml ├── scripts │ ├── benchmark_local-setup.sh │ ├── changelog │ │ ├── .gitignore │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── README.md │ │ ├── bin │ │ │ └── changelog │ │ ├── digests │ │ │ ├── .gitignore │ │ │ └── .gitkeep │ │ ├── lib │ │ │ └── changelog.rb │ │ └── templates │ │ │ ├── _free_notes.md.tera │ │ │ ├── challenge_level.md.tera │ │ │ ├── change.md.tera │ │ │ ├── changes.md.tera │ │ │ ├── changes_applibs.md.tera │ │ │ ├── changes_client.md.tera │ │ │ ├── changes_core.md.tera │ │ │ ├── changes_evm.md.tera │ │ │ ├── changes_misc.md.tera │ │ │ ├── changes_offchain.md.tera │ │ │ ├── changes_sidechain.md.tera │ │ │ ├── changes_teeracle.md.tera │ │ │ ├── debug.md.tera │ │ │ ├── global_challenge_level.md.tera │ │ │ ├── global_priority.md.tera │ │ │ ├── high_priority.md.tera │ │ │ ├── pre_release.md.tera │ │ │ └── template.md.tera │ ├── init_env.sh │ ├── litentry │ │ ├── identity_test.sh │ │ ├── release │ │ │ ├── ReadMe.md │ │ │ ├── build.sh │ │ │ └── template │ │ │ │ ├── para-alice.service │ │ │ │ ├── relay-alice.service │ │ │ │ ├── relay-bob.service │ │ │ │ └── worker.service │ │ └── ubuntu_setup.sh │ ├── m8.sh │ ├── polkadot_update.sh │ ├── sidechain.sh │ ├── teeracle.sh │ └── test_transfer │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ └── transfer.js ├── service │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ ├── account_funding.rs │ │ ├── cli.yml │ │ ├── config.rs │ │ ├── enclave │ │ ├── api.rs │ │ ├── mod.rs │ │ └── tls_ra.rs │ │ ├── error.rs │ │ ├── globals │ │ ├── mod.rs │ │ └── tokio_handle.rs │ │ ├── initialized_service.rs │ │ ├── main.rs │ │ ├── main_impl.rs │ │ ├── ocall_bridge │ │ ├── bridge_api.rs │ │ ├── component_factory.rs │ │ ├── ffi │ │ │ ├── fetch_sidechain_blocks_from_peer.rs │ │ │ ├── get_peers.rs │ │ │ ├── get_quote.rs │ │ │ ├── get_qve_report_on_quote.rs │ │ │ ├── get_update_info.rs │ │ │ ├── init_quote.rs │ │ │ ├── ipfs.rs │ │ │ ├── mod.rs │ │ │ ├── propose_sidechain_blocks.rs │ │ │ ├── send_to_parentchain.rs │ │ │ ├── store_sidechain_blocks.rs │ │ │ ├── update_metric.rs │ │ │ └── worker_request.rs │ │ ├── ipfs_ocall.rs │ │ ├── metrics_ocall.rs │ │ ├── mod.rs │ │ ├── remote_attestation_ocall.rs │ │ ├── sidechain_ocall.rs │ │ ├── test │ │ │ ├── mocks │ │ │ │ ├── mod.rs │ │ │ │ └── sidechain_bridge_mock.rs │ │ │ └── mod.rs │ │ └── worker_on_chain_ocall.rs │ │ ├── parentchain_handler.rs │ │ ├── prometheus_metrics.rs │ │ ├── setup.rs │ │ ├── sidechain_setup.rs │ │ ├── sync_block_broadcaster.rs │ │ ├── sync_state.rs │ │ ├── tests │ │ ├── commons.rs │ │ ├── mock.rs │ │ ├── mocks │ │ │ ├── broadcast_blocks_mock.rs │ │ │ ├── enclave_api_mock.rs │ │ │ ├── initialization_handler_mock.rs │ │ │ ├── mod.rs │ │ │ ├── parentchain_api_mock.rs │ │ │ └── update_worker_peers_mock.rs │ │ ├── mod.rs │ │ └── parentchain_handler_test.rs │ │ ├── utils.rs │ │ ├── wasm.rs │ │ ├── worker.rs │ │ └── worker_peers_updater.rs ├── sidechain │ ├── block-composer │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── block_composer.rs │ │ │ ├── error.rs │ │ │ └── lib.rs │ ├── block-verification │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ └── slot.rs │ ├── consensus │ │ ├── aura │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── block_importer.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── proposer_factory.rs │ │ │ │ ├── slot_proposer.rs │ │ │ │ ├── test │ │ │ │ ├── block_importer_tests.rs │ │ │ │ ├── fixtures │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── types.rs │ │ │ │ ├── mocks │ │ │ │ │ ├── environment_mock.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── peer_updater_mock.rs │ │ │ │ │ └── proposer_mock.rs │ │ │ │ └── mod.rs │ │ │ │ └── verifier.rs │ │ ├── common │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ ├── block_import.rs │ │ │ │ ├── block_import_confirmation_handler.rs │ │ │ │ ├── block_import_queue_worker.rs │ │ │ │ ├── block_production_suspension.rs │ │ │ │ ├── error.rs │ │ │ │ ├── header_db.rs │ │ │ │ ├── is_descendant_of_builder.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── peer_block_sync.rs │ │ │ │ └── test │ │ │ │ ├── mocks │ │ │ │ ├── block_import_queue_worker_mock.rs │ │ │ │ ├── block_importer_mock.rs │ │ │ │ ├── confirm_block_import_mock.rs │ │ │ │ ├── mod.rs │ │ │ │ └── verifier_mock.rs │ │ │ │ └── mod.rs │ │ └── slots │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── mocks.rs │ │ │ ├── per_shard_slot_worker_tests.rs │ │ │ ├── slot_stream.rs │ │ │ └── slots.rs │ ├── fork-tree │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── peer-fetch │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── block_fetch_client.rs │ │ │ ├── block_fetch_server.rs │ │ │ ├── error.rs │ │ │ ├── lib.rs │ │ │ ├── mocks │ │ │ ├── fetch_blocks_from_peer_mock.rs │ │ │ ├── mod.rs │ │ │ └── untrusted_peer_fetch_mock.rs │ │ │ └── untrusted_peer_fetch.rs │ ├── primitives │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── traits │ │ │ └── mod.rs │ │ │ └── types │ │ │ ├── block.rs │ │ │ ├── block_data.rs │ │ │ ├── header.rs │ │ │ └── mod.rs │ ├── rpc-handler │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── constants.rs │ │ │ ├── direct_top_pool_api.rs │ │ │ ├── import_block_api.rs │ │ │ └── lib.rs │ ├── sidechain-crate │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── state │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── error.rs │ │ │ ├── impls.rs │ │ │ └── lib.rs │ ├── storage │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── db.rs │ │ │ ├── error.rs │ │ │ ├── fetch_blocks_mock.rs │ │ │ ├── interface.rs │ │ │ ├── lib.rs │ │ │ ├── storage.rs │ │ │ ├── storage_tests_get_blocks_after.rs │ │ │ ├── storage_tests_get_blocks_in_range.rs │ │ │ └── test_utils.rs │ ├── test │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── sidechain_block_builder.rs │ │ │ ├── sidechain_block_data_builder.rs │ │ │ └── sidechain_header_builder.rs │ └── validateer-fetch │ │ ├── Cargo.toml │ │ └── src │ │ ├── error.rs │ │ ├── lib.rs │ │ └── validateer.rs ├── ts-tests │ ├── .editorconfig │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── integration-tests │ │ ├── .env.local.example │ │ ├── .env.staging │ │ ├── common │ │ │ ├── call.ts │ │ │ ├── common-types.ts │ │ │ ├── config.js │ │ │ ├── credential-json │ │ │ │ ├── achainable.json │ │ │ │ ├── blockchaininfo.json │ │ │ │ ├── discord.json │ │ │ │ ├── geniidata.json │ │ │ │ ├── index.ts │ │ │ │ ├── litentry.json │ │ │ │ ├── moralis.json │ │ │ │ ├── nodereal.json │ │ │ │ ├── oneblock.json │ │ │ │ ├── twitter.json │ │ │ │ └── vip3.json │ │ │ ├── di-utils.ts │ │ │ ├── helpers.ts │ │ │ ├── transactions.ts │ │ │ └── utils │ │ │ │ ├── assertion.ts │ │ │ │ ├── common.ts │ │ │ │ ├── context.ts │ │ │ │ ├── crypto.ts │ │ │ │ ├── identity-helper.ts │ │ │ │ ├── index.ts │ │ │ │ ├── integration-setup.ts │ │ │ │ ├── native-request-helpers.ts │ │ │ │ ├── storage.ts │ │ │ │ ├── type-creators.ts │ │ │ │ └── vc-helper.ts │ │ ├── di_identity.test.ts │ │ ├── dr_vc.test.ts │ │ ├── eslint.config.js │ │ ├── native_request_vc.test.ts │ │ ├── omni_account.test.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── vc.issuer.attest.example.ts │ │ └── vc_correctness.test.ts │ ├── package.json │ ├── pnpm-lock.yaml │ ├── pnpm-workspace.yaml │ ├── post-checks │ │ ├── .gitignore │ │ ├── README.md │ │ ├── config.ts │ │ ├── package.json │ │ ├── tests │ │ │ └── post-check.test.ts │ │ └── tsconfig.json │ ├── stress-runner │ └── worker │ │ ├── .env.local.example │ │ ├── .env.staging │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── resuming_worker.test.ts │ │ └── tsconfig.json └── upstream_commit └── omni-executor ├── .env.example ├── .env.test ├── .gitignore ├── .taplo.toml ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── Dockerfile.local ├── LOCAL_DEV.md ├── Makefile ├── README.md ├── bin ├── Cargo.lock ├── Cargo.toml └── src │ ├── cli.rs │ └── main.rs ├── cli ├── Cargo.toml ├── README.md └── src │ └── main.rs ├── client-sdk ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .verdaccio │ └── config.yml ├── README.md ├── jest.config.ts ├── jest.preset.js ├── nx.json ├── package.json ├── packages │ ├── chaindata │ │ ├── .eslintrc.json │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── package.json │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── chaindata.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsup.config.ts │ └── client-sdk │ │ ├── .eslintrc.json │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── docs │ │ ├── @heima-network │ │ │ └── namespaces │ │ │ │ └── request │ │ │ │ ├── README.md │ │ │ │ └── functions │ │ │ │ ├── addAccount.md │ │ │ │ ├── callEthereum.md │ │ │ │ ├── getAccountNonce.md │ │ │ │ ├── getOAuth2GoogleAuthorizationUrl.md │ │ │ │ ├── getOmniAccountNonceWithIdentity.md │ │ │ │ ├── publicizeAccount.md │ │ │ │ ├── removeAccounts.md │ │ │ │ ├── requestAuthToken.md │ │ │ │ ├── requestEmailVerificationCode.md │ │ │ │ ├── setPermissions.md │ │ │ │ ├── systemRemark.md │ │ │ │ ├── transferEthereum.md │ │ │ │ ├── transferNative.md │ │ │ │ └── transferSolana.md │ │ ├── README.md │ │ ├── classes │ │ │ └── Enclave.md │ │ ├── enumerations │ │ │ ├── ConnectionState.md │ │ │ └── OmniRpcMethod.md │ │ ├── functions │ │ │ ├── createAesOutputType.md │ │ │ ├── createIdentityType.md │ │ │ ├── createNativeTaskType.md │ │ │ ├── createOmniAuth.md │ │ │ ├── createPayloadToSign.md │ │ │ ├── createRawTaskType.md │ │ │ ├── createValidationDataType.md │ │ │ ├── createVerificationMessage.md │ │ │ ├── decodeSignature.md │ │ │ ├── decrypt.md │ │ │ ├── decryptWithAes.md │ │ │ ├── encrypt.md │ │ │ ├── exportKey.md │ │ │ ├── generate.md │ │ │ ├── generateNonce12.md │ │ │ ├── getAndWaitForAccountStoreCreation.md │ │ │ ├── getSignatureCryptoType.md │ │ │ ├── importKey.md │ │ │ ├── isWeb3.md │ │ │ ├── toHash.md │ │ │ ├── toPublicKey.md │ │ │ ├── u8aToBase64Url.md │ │ │ └── verifySignature.md │ │ ├── type-aliases │ │ │ ├── DiscordOAuth2Proof.md │ │ │ ├── DiscordProof.md │ │ │ ├── EmailProof.md │ │ │ ├── JsonRpcRequest.md │ │ │ ├── JsonRpcResponse.md │ │ │ ├── Maybe.md │ │ │ ├── OmniAuthData.md │ │ │ ├── SubstrateOrEvmOrBtcAddress.md │ │ │ ├── TwitterOAuth2Proof.md │ │ │ ├── TwitterProof.md │ │ │ └── Web3Proof.md │ │ └── variables │ │ │ └── enclave.md │ │ ├── jest.config.ts │ │ ├── package.json │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── __test__ │ │ │ └── enclave.test.ts │ │ │ ├── config.ts │ │ │ ├── enclave.ts │ │ │ ├── requests │ │ │ ├── __test__ │ │ │ │ ├── account-store.request.test.ts │ │ │ │ ├── get-nonce.request.test.ts │ │ │ │ ├── get-oauth2-google-authorization-url.request.test.ts │ │ │ │ └── request-email-verification-code.request.test.ts │ │ │ ├── add-account.request.ts │ │ │ ├── aes-task.request.ts │ │ │ ├── create-account-store.request.ts │ │ │ ├── get-nonce.request.ts │ │ │ ├── get-oauth2-google-authorization-url.request.ts │ │ │ ├── index.ts │ │ │ ├── intents │ │ │ │ ├── __test__ │ │ │ │ │ ├── call-ethereum.request.test.ts │ │ │ │ │ ├── system-remark.request.test.ts │ │ │ │ │ ├── transfer-ethereum.request.test.ts │ │ │ │ │ ├── transfer-native.request.test.ts │ │ │ │ │ └── transfer-solana.request.test.ts │ │ │ │ ├── call-ethereum.request.ts │ │ │ │ ├── index.ts │ │ │ │ ├── intent.request.ts │ │ │ │ ├── system-remark.request.ts │ │ │ │ ├── transfer-ethereum.request.ts │ │ │ │ ├── transfer-native.request.ts │ │ │ │ └── transfer-solana.request.ts │ │ │ ├── publicize-account.request.ts │ │ │ ├── remove-accounts.request.ts │ │ │ ├── request-auth-token.request.ts │ │ │ ├── request-email-verification-code.request.ts │ │ │ └── set-permissions.request.ts │ │ │ ├── test-utils │ │ │ └── helpers.ts │ │ │ ├── type-creators │ │ │ ├── __test__ │ │ │ │ ├── heima-multi-signature.test.ts │ │ │ │ ├── identity.test.ts │ │ │ │ ├── native-task.test.ts │ │ │ │ └── validation-data.test.ts │ │ │ ├── aes-output.ts │ │ │ ├── heima-multi-signature.ts │ │ │ ├── identity.ts │ │ │ ├── native-task.ts │ │ │ ├── oauth2.ts │ │ │ ├── omni-auth.ts │ │ │ ├── raw-task.ts │ │ │ └── validation-data.ts │ │ │ └── utils │ │ │ ├── aes-key.ts │ │ │ ├── create-payload-to-sign.ts │ │ │ ├── create-verification-message.ts │ │ │ ├── decode-signature.ts │ │ │ ├── get-signature-crypto-type.ts │ │ │ ├── identity.ts │ │ │ ├── index.ts │ │ │ ├── rpc-method.ts │ │ │ ├── shielding-key.ts │ │ │ ├── types.ts │ │ │ ├── u8aToBase64Url.ts │ │ │ └── verify-signature.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.spec.json │ │ ├── tsup.config.ts │ │ └── typedoc.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── project.json ├── tools │ └── scripts │ │ └── publish.mjs ├── tsconfig.base.json └── workspace.json ├── clients ├── aa │ ├── Cargo.toml │ └── src │ │ ├── bytecode │ │ └── EntryPointSimulations_deployed_bytecode.hex │ │ ├── entry_point_client.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── omni_account_client.rs │ │ ├── types.rs │ │ └── utils.rs ├── accounting │ ├── Cargo.toml │ ├── abi │ │ └── AccountingContract.json │ └── src │ │ ├── lib.rs │ │ └── solana.rs ├── binance │ ├── Cargo.toml │ └── src │ │ ├── convert_api │ │ ├── mod.rs │ │ └── types.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── spot_trading_api │ │ ├── mod.rs │ │ └── types.rs │ │ ├── traits.rs │ │ ├── types.rs │ │ └── wallet_api │ │ ├── mod.rs │ │ └── types.rs ├── ethereum │ ├── Cargo.toml │ ├── artifacts │ │ └── IERC20.sol │ └── src │ │ ├── client.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ └── signer.rs ├── hyperliquid │ ├── Cargo.toml │ └── src │ │ ├── corewriter.rs │ │ ├── hypercore_api.rs │ │ ├── lib.rs │ │ ├── testdata │ │ ├── perp-meta-assets.json │ │ └── spot-meta-assets.json │ │ └── utils.rs ├── pumpx │ ├── Cargo.toml │ └── src │ │ ├── auth_key_store.rs │ │ ├── constants.rs │ │ ├── lib.rs │ │ ├── pumpx_api │ │ ├── methods │ │ │ ├── add_wallet.rs │ │ │ ├── common.rs │ │ │ ├── create_cross_order.rs │ │ │ ├── create_limit_order.rs │ │ │ ├── create_market_order_tx.rs │ │ │ ├── create_market_order_unsigned_tx.rs │ │ │ ├── create_transfer_tx.rs │ │ │ ├── create_transfer_unsigned_tx.rs │ │ │ ├── cross_fail.rs │ │ │ ├── get_account_user_id.rs │ │ │ ├── get_gas_info.rs │ │ │ ├── get_user_trade_info.rs │ │ │ ├── mod.rs │ │ │ ├── post_heima_login.rs │ │ │ ├── send_order_tx.rs │ │ │ ├── send_transfer_tx.rs │ │ │ ├── user_connect.rs │ │ │ └── verify_google_code.rs │ │ └── mod.rs │ │ └── signer_client.rs ├── signer │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── mocks.rs ├── solana │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── signer.rs └── wildmeta │ ├── Cargo.toml │ └── src │ ├── lib.rs │ └── methods │ ├── common.rs │ ├── mod.rs │ └── verify_hyperliquid_link.rs ├── contracts ├── aa │ ├── .gitignore │ ├── ABI-SYNC.md │ ├── DEPLOYMENT.md │ ├── Dockerfile.deploy │ ├── ERC20PaymasterV1-README.md │ ├── README.md │ ├── aa-demo-app │ │ ├── .gitignore │ │ ├── README.md │ │ ├── next.config.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.mjs │ │ ├── public │ │ │ ├── file.svg │ │ │ ├── globe.svg │ │ │ ├── next.svg │ │ │ ├── vercel.svg │ │ │ └── window.svg │ │ ├── src │ │ │ ├── app │ │ │ │ ├── favicon.ico │ │ │ │ ├── globals.css │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── providers.tsx │ │ │ ├── components │ │ │ │ ├── AccountsDashboard.tsx │ │ │ │ ├── AuthorizeTEEWorker.tsx │ │ │ │ ├── AuthorizedSigners.tsx │ │ │ │ ├── ClientOnly.tsx │ │ │ │ ├── CreateOmniAccount.tsx │ │ │ │ ├── ERC20FundingGuide.tsx │ │ │ │ ├── FundingGuide.tsx │ │ │ │ ├── TEETokenTransfer.tsx │ │ │ │ └── WalletConnect.tsx │ │ │ ├── contexts │ │ │ │ └── AuthContext.tsx │ │ │ ├── contracts │ │ │ │ └── abis │ │ │ │ │ ├── ERC20PaymasterV1.json │ │ │ │ │ ├── EntryPoint.json │ │ │ │ │ ├── IEntryPoint.json │ │ │ │ │ ├── OmniAccount.json │ │ │ │ │ ├── OmniAccountFactory.json │ │ │ │ │ ├── SimplePaymaster.json │ │ │ │ │ ├── StandardERC20.json │ │ │ │ │ └── TestToken.json │ │ │ └── lib │ │ │ │ ├── aa-utils.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── debug-utils.ts │ │ │ │ ├── erc20-paymaster-utils.ts │ │ │ │ ├── solana.tsx │ │ │ │ ├── tee-worker-client.ts │ │ │ │ └── wagmi.ts │ │ └── tsconfig.json │ ├── deploy-docker.sh │ ├── deploy-local.sh │ ├── deploy-remote.sh │ ├── deployments │ │ ├── prod-v1 │ │ │ ├── arbitrum-sepolia.json │ │ │ ├── arbitrum.json │ │ │ ├── base.json │ │ │ ├── bsc.json │ │ │ ├── ethereum-sepolia.json │ │ │ ├── ethereum.json │ │ │ ├── hyperevm-testnet.json │ │ │ └── hyperevm.json │ │ ├── staging-v0 │ │ │ ├── arbitrum-sepolia.json │ │ │ ├── arbitrum.json │ │ │ ├── hyperevm-testnet.json │ │ │ └── hyperevm.json │ │ └── staging-v1 │ │ │ ├── arbitrum-sepolia.json │ │ │ ├── arbitrum.json │ │ │ ├── base.json │ │ │ ├── bsc.json │ │ │ ├── ethereum-sepolia.json │ │ │ ├── ethereum.json │ │ │ ├── hyperevm-testnet.json │ │ │ └── hyperevm.json │ ├── extract-abis.js │ ├── foundry.toml │ ├── lib │ │ └── .gitkeep │ ├── package.json │ ├── remappings.txt │ ├── script │ │ ├── Counter.s.sol │ │ ├── Deploy.s.sol │ │ ├── DeployLocal.s.sol │ │ ├── DeployLocalWithPaymaster.s.sol │ │ └── DeploymentHelper.sol │ ├── src │ │ ├── Counter.sol │ │ ├── TestToken.sol │ │ ├── accounts │ │ │ ├── OmniAccountFactoryV1.sol │ │ │ ├── OmniAccountV1.sol │ │ │ └── callback │ │ │ │ └── TokenCallbackHandler.sol │ │ ├── core │ │ │ ├── BaseAccount.sol │ │ │ ├── BasePaymaster.sol │ │ │ ├── DemoPaymaster.sol │ │ │ ├── ERC20PaymasterV1.sol │ │ │ ├── Eip7702Support.sol │ │ │ ├── EntryPointSimulations.sol │ │ │ ├── EntryPointV1.sol │ │ │ ├── Helpers.sol │ │ │ ├── NonceManager.sol │ │ │ ├── SenderCreator.sol │ │ │ ├── SimplePaymaster.sol │ │ │ ├── StakeManager.sol │ │ │ └── UserOperationLib.sol │ │ ├── interfaces │ │ │ ├── IAccount.sol │ │ │ ├── IAccountExecute.sol │ │ │ ├── IAggregator.sol │ │ │ ├── IEntryPoint.sol │ │ │ ├── IEntryPointSimulations.sol │ │ │ ├── INonceManager.sol │ │ │ ├── IPaymaster.sol │ │ │ ├── ISenderCreator.sol │ │ │ ├── IStakeManager.sol │ │ │ ├── OwnerType.sol │ │ │ ├── PackedUserOperation.sol │ │ │ ├── Passkey.sol │ │ │ └── UserOpSigner.sol │ │ └── utils │ │ │ └── Exec.sol │ ├── sync-abis-from-deployment.sh │ ├── test │ │ ├── DeploymentHelper.t.sol │ │ ├── ERC20PaymasterV1.t.sol │ │ ├── EntryPoint.t.sol │ │ ├── OmniAccount.t.sol │ │ ├── OmniAccountAsEntryPoint.t.sol │ │ ├── OmniAccountAsOwner.t.sol │ │ ├── OmniAccountAsPasskey.t.sol │ │ ├── OmniAccountAsRoot.t.sol │ │ ├── OmniAccountAsRootNonEvm.t.sol │ │ ├── OmniAccountFactory.t.sol │ │ ├── OmniAccountNonEvmOwnerWithPasskeySigner.t.sol │ │ ├── OmniAccountTestUtils.sol │ │ ├── OmniAccountUpgradability.t.sol │ │ ├── SimplePaymaster.t.sol │ │ ├── StakeManager.t.sol │ │ └── TestUtils.sol │ └── update-demo-addresses.sh └── accounting │ ├── bsc │ ├── .gitignore │ ├── foundry.toml │ ├── remappings.txt │ ├── script │ │ ├── AccountingContract.s.sol │ │ └── deploy_contract.sh │ ├── src │ │ └── AccountingContract.sol │ └── test │ │ └── AccountingContract.t.sol │ └── solana │ ├── .gitignore │ ├── Anchor.toml │ ├── Cargo.lock │ ├── Cargo.toml │ ├── accounting_contract-keypair.json │ ├── migrations │ └── deploy.ts │ ├── package.json │ ├── programs │ └── accounting-contract │ │ ├── Cargo.toml │ │ ├── Xargo.toml │ │ └── src │ │ └── lib.rs │ ├── rust-toolchain.toml │ ├── test-account.json │ ├── tests │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── main.rs │ │ └── test_initialize.rs │ ├── tsconfig.json │ └── yarn.lock ├── core ├── Cargo.toml ├── README.md └── src │ ├── aes256_key_store.rs │ ├── auth │ ├── auth_token.rs │ ├── constants.rs │ ├── mod.rs │ └── web3.rs │ ├── config.rs │ ├── ecdsa_key_store.rs │ ├── ed25519_key_store.rs │ ├── event_handler.rs │ ├── fetcher.rs │ ├── intent │ ├── asset_lock │ │ ├── account_wide.rs │ │ ├── always_unlocked.rs │ │ ├── mod.rs │ │ └── precise.rs │ ├── executor.rs │ └── mod.rs │ ├── key_store.rs │ ├── lib.rs │ ├── listener.rs │ ├── native_task.rs │ ├── oauth │ ├── client.rs │ ├── mod.rs │ └── provider_config.rs │ ├── shielding_key_store.rs │ ├── sync_checkpoint_repository.rs │ ├── types.rs │ ├── verify │ ├── helpers.rs │ ├── mod.rs │ ├── web2 │ │ ├── apple │ │ │ └── mod.rs │ │ ├── email │ │ │ ├── mailer │ │ │ │ ├── mod.rs │ │ │ │ └── template.rs │ │ │ └── mod.rs │ │ ├── google │ │ │ └── mod.rs │ │ ├── mod.rs │ │ └── oauth2_common.rs │ └── web3.rs │ └── wallet_metrics.rs ├── crypto ├── Cargo.toml └── src │ ├── aes256.rs │ ├── jwt.rs │ ├── lib.rs │ ├── passkey.rs │ ├── secp256k1.rs │ ├── shielding_key.rs │ └── traits.rs ├── docker ├── docker-compose.test.yml ├── docker-compose.yml ├── entrypoint.sh ├── jsonrpc-mock-tests.yml ├── omni-account-test.yml ├── omni-client-sdk-test.yml └── submit-user-op-tests.yml ├── enclave_key.pem ├── intent └── executors │ ├── cross-chain │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── omni │ │ ├── cross_chain.rs │ │ ├── cross_chain_swap_tests.rs │ │ ├── mod.rs │ │ ├── single_chain.rs │ │ └── single_chain_swap_tests.rs │ │ ├── pumpx │ │ ├── cross_chain.rs │ │ ├── cross_chain_swap_tests.rs │ │ ├── mod.rs │ │ ├── single_chain.rs │ │ └── single_chain_swap_tests.rs │ │ ├── types.rs │ │ └── utils.rs │ ├── ethereum │ ├── Cargo.toml │ ├── artifacts │ │ └── SimpleDelegateContract.sol │ └── src │ │ ├── delegate_call.rs │ │ ├── lib.rs │ │ ├── signer.rs │ │ └── tx.rs │ └── solana │ ├── Cargo.toml │ ├── dev-key.json │ └── src │ └── lib.rs ├── local └── keystore │ ├── README.md │ ├── accounting_ecdsa_signer_key.bin │ └── substrate_key.bin ├── mock-server ├── Cargo.toml └── src │ ├── binance.rs │ ├── dex.rs │ ├── evm.rs │ ├── lib.rs │ ├── pumpx.rs │ ├── sendgrid.rs │ ├── solana.rs │ └── wildmeta.rs ├── omni-executor.manifest.template ├── primitives ├── Cargo.toml └── src │ ├── auth.rs │ ├── lib.rs │ ├── signature │ ├── bitcoin.rs │ ├── evm.rs │ ├── heima_multi_signature.rs │ └── mod.rs │ ├── utils │ ├── hex.rs │ └── mod.rs │ └── validation_data.rs ├── rpc-server ├── Cargo.toml └── src │ ├── auth_token_key_store.rs │ ├── config │ ├── chains.rs │ └── mod.rs │ ├── detailed_error.rs │ ├── error_code.rs │ ├── lib.rs │ ├── mailer_factory.rs │ ├── methods │ ├── mod.rs │ └── omni │ │ ├── add_wallet.rs │ │ ├── attach_passkey.rs │ │ ├── close_position_test.rs │ │ ├── estimate_user_op_gas.rs │ │ ├── export_bundler_private_key.rs │ │ ├── export_wallet.rs │ │ ├── get_health.rs │ │ ├── get_hyperliquid_signature_data.rs │ │ ├── get_next_intent_id.rs │ │ ├── get_oauth2_authorization_data.rs │ │ ├── get_shielding_key.rs │ │ ├── get_smart_wallet_root_signer.rs │ │ ├── get_web3_sign_in_message.rs │ │ ├── list_passkey.rs │ │ ├── login_with_oauth2.rs │ │ ├── mod.rs │ │ ├── notify_limit_order_result.rs │ │ ├── open_position_test.rs │ │ ├── payback_loan_test.rs │ │ ├── query_loan_test.rs │ │ ├── remove_passkey.rs │ │ ├── rename_passkey_alias.rs │ │ ├── request_email_verification_code.rs │ │ ├── request_jwt.rs │ │ ├── request_loan_test.rs │ │ ├── request_passkey_challenge.rs │ │ ├── sign_limit_order.rs │ │ ├── submit_swap_order.rs │ │ ├── submit_user_op_test.rs │ │ ├── submit_user_op_with_auth.rs │ │ ├── test_protected_method.rs │ │ ├── transfer_widthdraw.rs │ │ ├── user_login.rs │ │ └── verify_email_verification_code_test.rs │ ├── middlewares │ ├── http_middleware.rs │ ├── mod.rs │ └── rpc_middleware.rs │ ├── oauth2_factory.rs │ ├── server.rs │ ├── utils │ ├── auth.rs │ ├── gas_estimation.rs │ ├── mod.rs │ ├── omni.rs │ ├── paymaster.rs │ ├── pumpx.rs │ ├── types.rs │ ├── user_op.rs │ └── validation.rs │ └── verify_auth.rs ├── rust-toolchain.toml ├── rustfmt.toml ├── sendgrid_webhook_listener.py ├── storage ├── Cargo.toml ├── src │ ├── asset_lock.rs │ ├── heima_jwt.rs │ ├── intent_id.rs │ ├── lib.rs │ ├── loan_record.rs │ ├── oauth2_state_verifier.rs │ ├── passkey.rs │ ├── passkey_challenge.rs │ ├── pumpx_account_profile.rs │ ├── verification_code.rs │ └── wildmeta_timestamp.rs └── tests │ └── passkey_integration.rs └── ts-tests ├── .prettierrc ├── README.md ├── cli ├── ts_client_sdk_test.sh ├── ts_integration_test.sh ├── ts_jsonrpc_mock_test.sh └── ts_submit_user_op_test.sh ├── integration-tests ├── eslint.config.js ├── omni_account.test.ts ├── package.json ├── tsconfig.json └── utils │ ├── context.ts │ ├── crypto.ts │ ├── helpers.ts │ ├── identity.ts │ ├── omni_account.ts │ ├── requests.ts │ ├── signer.ts │ ├── type_creators.ts │ └── wallet.ts ├── jsonrpc-mock-tests ├── README.md ├── config.ts ├── eslint.config.js ├── hyperliquid_signature_data.test.ts ├── jsonrpc_mock_test.test.ts ├── package.json ├── submitUserOp.test.ts ├── tsconfig.json └── utils │ ├── aa-utils.ts │ ├── client.ts │ ├── constants.ts │ ├── index.ts │ ├── methods.ts │ ├── omni-api.ts │ ├── request-types.ts │ ├── response-types.ts │ └── utils.ts ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml └── stress-tests ├── .env.example ├── .gitignore ├── README.md ├── eslint.config.js ├── package.json ├── src ├── analysis │ └── advanced-performance-analyzer.ts ├── dashboard │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages │ │ ├── api │ │ │ └── sessions │ │ │ │ ├── [id].ts │ │ │ │ └── index.ts │ │ └── index.tsx │ └── tsconfig.json ├── storage │ └── advanced-data-storage.ts ├── stress-test.ts ├── types │ └── index.ts └── utils │ ├── advanced-logger.ts │ ├── json-rpc-client.ts │ └── web3-login-client.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.dockerignore -------------------------------------------------------------------------------- /.githooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.githooks/README.md -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/dependency-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/ISSUE_TEMPLATE/dependency-update.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/ISSUE_TEMPLATE/release.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/ISSUE_TEMPLATE/task.md -------------------------------------------------------------------------------- /.github/actions/disk-cleanup/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/actions/disk-cleanup/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/file-filter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/file-filter.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/runtime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/runtime.json -------------------------------------------------------------------------------- /.github/workflows/benchmark-runtime-weights.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/benchmark-runtime-weights.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker-with-args.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/build-docker-with-args.yml -------------------------------------------------------------------------------- /.github/workflows/build-wasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/build-wasm.yml -------------------------------------------------------------------------------- /.github/workflows/check-runtime-upgrade.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/check-runtime-upgrade.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/create-release-draft.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/create-release-issue.yml -------------------------------------------------------------------------------- /.github/workflows/delete-cache-after-pr-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/delete-cache-after-pr-close.yml -------------------------------------------------------------------------------- /.github/workflows/issue-stale-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/issue-stale-bot.yml -------------------------------------------------------------------------------- /.github/workflows/release-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/release-bot.yml -------------------------------------------------------------------------------- /.github/workflows/try-runtime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/try-runtime.yml -------------------------------------------------------------------------------- /.github/workflows/verify-correctness-of-vc-content.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.github/workflows/verify-correctness-of-vc-content.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.gitmodules -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/iron 2 | -------------------------------------------------------------------------------- /.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/.taplo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/README.md -------------------------------------------------------------------------------- /local-setup/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/.env.dev -------------------------------------------------------------------------------- /local-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/README.md -------------------------------------------------------------------------------- /local-setup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /local-setup/development-worker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/development-worker.json -------------------------------------------------------------------------------- /local-setup/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/launch.py -------------------------------------------------------------------------------- /local-setup/py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /local-setup/py/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/py/helpers.py -------------------------------------------------------------------------------- /local-setup/py/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/py/worker.py -------------------------------------------------------------------------------- /local-setup/rococo_one_worker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/rococo_one_worker.json -------------------------------------------------------------------------------- /local-setup/start_parachain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/start_parachain.sh -------------------------------------------------------------------------------- /local-setup/tmux_logger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/tmux_logger.sh -------------------------------------------------------------------------------- /local-setup/tmux_logger_three_nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/tmux_logger_three_nodes.sh -------------------------------------------------------------------------------- /local-setup/worker-log-level-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/local-setup/worker-log-level-config.toml -------------------------------------------------------------------------------- /parachain/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/Cargo.lock -------------------------------------------------------------------------------- /parachain/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/Cargo.toml -------------------------------------------------------------------------------- /parachain/LICENSE_HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/LICENSE_HEADER -------------------------------------------------------------------------------- /parachain/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/docker/Dockerfile -------------------------------------------------------------------------------- /parachain/docker/bridge.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/docker/bridge.dockerfile -------------------------------------------------------------------------------- /parachain/docker/example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/docker/example.yml -------------------------------------------------------------------------------- /parachain/docker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/docker/package.json -------------------------------------------------------------------------------- /parachain/docker/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/docker/pnpm-lock.yaml -------------------------------------------------------------------------------- /parachain/node/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/Cargo.toml -------------------------------------------------------------------------------- /parachain/node/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/build.rs -------------------------------------------------------------------------------- /parachain/node/res/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/res/README.md -------------------------------------------------------------------------------- /parachain/node/res/chain_specs/heima-plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/res/chain_specs/heima-plain.json -------------------------------------------------------------------------------- /parachain/node/res/chain_specs/heima.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/res/chain_specs/heima.json -------------------------------------------------------------------------------- /parachain/node/res/chain_specs/paseo-plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/res/chain_specs/paseo-plain.json -------------------------------------------------------------------------------- /parachain/node/res/chain_specs/paseo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/res/chain_specs/paseo.json -------------------------------------------------------------------------------- /parachain/node/res/genesis_info/heima.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/res/genesis_info/heima.json -------------------------------------------------------------------------------- /parachain/node/res/genesis_info/paseo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/res/genesis_info/paseo.json -------------------------------------------------------------------------------- /parachain/node/src/chain_specs/heima.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/chain_specs/heima.rs -------------------------------------------------------------------------------- /parachain/node/src/chain_specs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/chain_specs/mod.rs -------------------------------------------------------------------------------- /parachain/node/src/chain_specs/paseo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/chain_specs/paseo.rs -------------------------------------------------------------------------------- /parachain/node/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/cli.rs -------------------------------------------------------------------------------- /parachain/node/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/command.rs -------------------------------------------------------------------------------- /parachain/node/src/fake_runtime_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/fake_runtime_api.rs -------------------------------------------------------------------------------- /parachain/node/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/main.rs -------------------------------------------------------------------------------- /parachain/node/src/rpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/rpc.rs -------------------------------------------------------------------------------- /parachain/node/src/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/service.rs -------------------------------------------------------------------------------- /parachain/node/src/standalone_block_import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/node/src/standalone_block_import.rs -------------------------------------------------------------------------------- /parachain/pallets/account-fix/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/account-fix/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/account-fix/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/account-fix/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/bitacross/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bitacross/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/bitacross/src/custodial_wallet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bitacross/src/custodial_wallet.rs -------------------------------------------------------------------------------- /parachain/pallets/bitacross/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bitacross/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/assets-handler/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/assets-handler/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/bridge/assets-handler/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/assets-handler/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/assets-handler/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/assets-handler/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/assets-handler/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/assets-handler/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/bridge-transfer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/bridge-transfer/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/bridge/bridge-transfer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/bridge-transfer/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/bridge-transfer/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/bridge-transfer/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/bridge-transfer/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/bridge-transfer/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/chain-bridge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/chain-bridge/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/bridge/chain-bridge/src/hashing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/chain-bridge/src/hashing.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/chain-bridge/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/chain-bridge/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/chain-bridge/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/chain-bridge/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/chain-bridge/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/chain-bridge/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/chain-bridge/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/chain-bridge/src/weights.rs -------------------------------------------------------------------------------- /parachain/pallets/bridge/common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/common/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/bridge/common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/bridge/common/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/evm-assertions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/evm-assertions/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/evm-assertions/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/evm-assertions/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/evm-assertions/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/evm-assertions/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/evm-assertions/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/evm-assertions/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/extrinsic-filter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/extrinsic-filter/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/extrinsic-filter/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/extrinsic-filter/src/benchmarking.rs -------------------------------------------------------------------------------- /parachain/pallets/extrinsic-filter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/extrinsic-filter/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/extrinsic-filter/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/extrinsic-filter/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/extrinsic-filter/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/extrinsic-filter/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/extrinsic-filter/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/extrinsic-filter/src/weights.rs -------------------------------------------------------------------------------- /parachain/pallets/identity-management/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/identity-management/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/identity-management/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/identity-management/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/identity-management/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/identity-management/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/identity-management/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/identity-management/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/identity-management/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/identity-management/src/weights.rs -------------------------------------------------------------------------------- /parachain/pallets/omni-account/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-account/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/omni-account/runtime-api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-account/runtime-api/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/omni-account/runtime-api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-account/runtime-api/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/omni-account/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-account/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/omni-account/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-account/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/omni-account/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-account/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/omni-bridge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-bridge/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/omni-bridge/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-bridge/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/omni-bridge/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-bridge/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/omni-bridge/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/omni-bridge/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/src/inflation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/src/inflation.rs -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/src/set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/src/set.rs -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/src/traits.rs -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/src/types.rs -------------------------------------------------------------------------------- /parachain/pallets/parachain-staking/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/parachain-staking/src/weights.rs -------------------------------------------------------------------------------- /parachain/pallets/score-staking/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/score-staking/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/score-staking/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/score-staking/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/score-staking/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/score-staking/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/score-staking/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/score-staking/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/score-staking/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/score-staking/src/types.rs -------------------------------------------------------------------------------- /parachain/pallets/teebag/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/teebag/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/teebag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/teebag/README.md -------------------------------------------------------------------------------- /parachain/pallets/teebag/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/teebag/src/benchmarking.rs -------------------------------------------------------------------------------- /parachain/pallets/teebag/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/teebag/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/teebag/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/teebag/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/teebag/src/test_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/teebag/src/test_util.rs -------------------------------------------------------------------------------- /parachain/pallets/teebag/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/teebag/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/teebag/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/teebag/src/weights.rs -------------------------------------------------------------------------------- /parachain/pallets/upstream_commit: -------------------------------------------------------------------------------- 1 | 75e57c5 2 | -------------------------------------------------------------------------------- /parachain/pallets/vc-management/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/vc-management/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/vc-management/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/vc-management/src/benchmarking.rs -------------------------------------------------------------------------------- /parachain/pallets/vc-management/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/vc-management/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/vc-management/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/vc-management/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/vc-management/src/schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/vc-management/src/schema.rs -------------------------------------------------------------------------------- /parachain/pallets/vc-management/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/vc-management/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/vc-management/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/vc-management/src/weights.rs -------------------------------------------------------------------------------- /parachain/pallets/xcm-asset-manager/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/xcm-asset-manager/Cargo.toml -------------------------------------------------------------------------------- /parachain/pallets/xcm-asset-manager/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/xcm-asset-manager/src/lib.rs -------------------------------------------------------------------------------- /parachain/pallets/xcm-asset-manager/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/xcm-asset-manager/src/mock.rs -------------------------------------------------------------------------------- /parachain/pallets/xcm-asset-manager/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/xcm-asset-manager/src/tests.rs -------------------------------------------------------------------------------- /parachain/pallets/xcm-asset-manager/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/pallets/xcm-asset-manager/src/weights.rs -------------------------------------------------------------------------------- /parachain/precompiles/assets-erc20/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/assets-erc20/Cargo.toml -------------------------------------------------------------------------------- /parachain/precompiles/assets-erc20/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/assets-erc20/ERC20.sol -------------------------------------------------------------------------------- /parachain/precompiles/assets-erc20/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/assets-erc20/src/lib.rs -------------------------------------------------------------------------------- /parachain/precompiles/assets-erc20/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/assets-erc20/src/mock.rs -------------------------------------------------------------------------------- /parachain/precompiles/assets-erc20/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/assets-erc20/src/tests.rs -------------------------------------------------------------------------------- /parachain/precompiles/bridge-transfer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/bridge-transfer/Cargo.toml -------------------------------------------------------------------------------- /parachain/precompiles/bridge-transfer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/bridge-transfer/src/lib.rs -------------------------------------------------------------------------------- /parachain/precompiles/omni-bridge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/omni-bridge/Cargo.toml -------------------------------------------------------------------------------- /parachain/precompiles/omni-bridge/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/omni-bridge/src/lib.rs -------------------------------------------------------------------------------- /parachain/precompiles/parachain-staking/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/parachain-staking/Cargo.toml -------------------------------------------------------------------------------- /parachain/precompiles/parachain-staking/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/parachain-staking/src/lib.rs -------------------------------------------------------------------------------- /parachain/precompiles/parachain-staking/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/parachain-staking/src/mock.rs -------------------------------------------------------------------------------- /parachain/precompiles/parachain-staking/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/parachain-staking/src/tests.rs -------------------------------------------------------------------------------- /parachain/precompiles/score-staking/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/score-staking/Cargo.toml -------------------------------------------------------------------------------- /parachain/precompiles/score-staking/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/score-staking/src/lib.rs -------------------------------------------------------------------------------- /parachain/precompiles/score-staking/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/score-staking/src/mock.rs -------------------------------------------------------------------------------- /parachain/precompiles/score-staking/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/score-staking/src/tests.rs -------------------------------------------------------------------------------- /parachain/precompiles/vesting/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/vesting/Cargo.toml -------------------------------------------------------------------------------- /parachain/precompiles/vesting/VestingInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/vesting/VestingInterface.sol -------------------------------------------------------------------------------- /parachain/precompiles/vesting/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/precompiles/vesting/src/lib.rs -------------------------------------------------------------------------------- /parachain/primitives/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/Cargo.toml -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/achainable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/achainable.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/bnb_domain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/bnb_domain.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/contest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/contest.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/dynamic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/dynamic.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/mod.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/network.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/oneblock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/oneblock.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/platform_user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/platform_user.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/soraquiz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/soraquiz.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/vip3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/vip3.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/web3_nft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/web3_nft.rs -------------------------------------------------------------------------------- /parachain/primitives/src/assertion/web3_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/assertion/web3_token.rs -------------------------------------------------------------------------------- /parachain/primitives/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/error.rs -------------------------------------------------------------------------------- /parachain/primitives/src/identity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/identity.rs -------------------------------------------------------------------------------- /parachain/primitives/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/lib.rs -------------------------------------------------------------------------------- /parachain/primitives/src/omni/account.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/omni/account.rs -------------------------------------------------------------------------------- /parachain/primitives/src/omni/chain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/omni/chain.rs -------------------------------------------------------------------------------- /parachain/primitives/src/omni/intent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/omni/intent.rs -------------------------------------------------------------------------------- /parachain/primitives/src/omni/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/omni/mod.rs -------------------------------------------------------------------------------- /parachain/primitives/src/omni/token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/omni/token.rs -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/dcap_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/teebag/dcap_types.rs -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/teebag/mod.rs -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/quoting_enclave.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/teebag/quoting_enclave.rs -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/sgx_verify/fuzz-shim/src/lib.rs: -------------------------------------------------------------------------------- 1 | // empty shim lib.rs 2 | -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/sgx_verify/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/teebag/sgx_verify/mod.rs -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/sgx_verify/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/teebag/sgx_verify/tests.rs -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/sgx_verify/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/teebag/sgx_verify/utils.rs -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/tcb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/teebag/tcb.rs -------------------------------------------------------------------------------- /parachain/primitives/src/teebag/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/teebag/types.rs -------------------------------------------------------------------------------- /parachain/primitives/src/vc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/primitives/src/vc.rs -------------------------------------------------------------------------------- /parachain/runtime/common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/common/Cargo.toml -------------------------------------------------------------------------------- /parachain/runtime/common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/common/src/lib.rs -------------------------------------------------------------------------------- /parachain/runtime/common/src/tests/base_call_filter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/common/src/tests/base_call_filter.rs -------------------------------------------------------------------------------- /parachain/runtime/common/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/common/src/tests/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/common/src/tests/setup/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/common/src/tests/setup/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/common/src/tests/setup/parachain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/common/src/tests/setup/parachain.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/Cargo.toml -------------------------------------------------------------------------------- /parachain/runtime/heima/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/build.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/asset_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/asset_config.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/constants.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/lib.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/P9100.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/P9100.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/P9135.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/P9135.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/P9175.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/P9175.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/P9191/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/P9191/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/P9192.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/P9192.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/P9223.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/P9223.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/migration.md -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/migration/p9251.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/migration/p9251.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/precompiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/precompiles.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/tests/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/frame_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/frame_system.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_balances.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_balances.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_evm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_evm.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_identity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_identity.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_multisig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_multisig.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_preimage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_preimage.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_proxy.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_session.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_teebag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_teebag.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_treasury.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_treasury.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/weights/pallet_utility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/weights/pallet_utility.rs -------------------------------------------------------------------------------- /parachain/runtime/heima/src/xcm_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/heima/src/xcm_config.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/Cargo.toml -------------------------------------------------------------------------------- /parachain/runtime/paseo/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/build.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/asset_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/asset_config.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/constants.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/governance_v2/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/governance_v2/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/governance_v2/origins.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/governance_v2/origins.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/governance_v2/tracks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/governance_v2/tracks.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/lib.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/migration/P9223.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/migration/P9223.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/migration/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/migration/migration.md -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/migration/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/migration/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/migration/p9251.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/migration/p9251.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/precompiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/precompiles.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/tests/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/frame_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/frame_system.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/mod.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_balances.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_balances.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_evm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_evm.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_identity.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_identity.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_multisig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_multisig.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_preimage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_preimage.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_proxy.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_session.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_teebag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_teebag.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_treasury.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_treasury.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/weights/pallet_utility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/weights/pallet_utility.rs -------------------------------------------------------------------------------- /parachain/runtime/paseo/src/xcm_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/runtime/paseo/src/xcm_config.rs -------------------------------------------------------------------------------- /parachain/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/rust-toolchain.toml -------------------------------------------------------------------------------- /parachain/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/rustfmt.toml -------------------------------------------------------------------------------- /parachain/scripts/benchmark-weight-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/benchmark-weight-local.sh -------------------------------------------------------------------------------- /parachain/scripts/benchmark-weight-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/benchmark-weight-remote.sh -------------------------------------------------------------------------------- /parachain/scripts/build-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/build-docker.sh -------------------------------------------------------------------------------- /parachain/scripts/chopsticks/heima.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/chopsticks/heima.yml -------------------------------------------------------------------------------- /parachain/scripts/chopsticks/paseo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/chopsticks/paseo.yml -------------------------------------------------------------------------------- /parachain/scripts/clean-network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/clean-network.sh -------------------------------------------------------------------------------- /parachain/scripts/generate-prod-chain-spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/generate-prod-chain-spec.sh -------------------------------------------------------------------------------- /parachain/scripts/generate-release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/generate-release-notes.sh -------------------------------------------------------------------------------- /parachain/scripts/generate-upstream-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/generate-upstream-patch.sh -------------------------------------------------------------------------------- /parachain/scripts/geth/genesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/geth/genesis.json -------------------------------------------------------------------------------- /parachain/scripts/geth/keystore/alice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/geth/keystore/alice.json -------------------------------------------------------------------------------- /parachain/scripts/geth/keystore/bob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/geth/keystore/bob.json -------------------------------------------------------------------------------- /parachain/scripts/geth/keystore/charlie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/geth/keystore/charlie.json -------------------------------------------------------------------------------- /parachain/scripts/geth/keystore/dave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/geth/keystore/dave.json -------------------------------------------------------------------------------- /parachain/scripts/geth/keystore/eve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/geth/keystore/eve.json -------------------------------------------------------------------------------- /parachain/scripts/geth/password.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /parachain/scripts/geth/run_geth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/geth/run_geth.sh -------------------------------------------------------------------------------- /parachain/scripts/launch-network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/launch-network.sh -------------------------------------------------------------------------------- /parachain/scripts/launch-standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/launch-standalone.sh -------------------------------------------------------------------------------- /parachain/scripts/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/pre-commit.sh -------------------------------------------------------------------------------- /parachain/scripts/run-ts-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/run-ts-test.sh -------------------------------------------------------------------------------- /parachain/scripts/runtime-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/runtime-upgrade.sh -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/.gitignore -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/.prettierrc -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/batch-transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/batch-transfer.ts -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/initApis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/initApis.ts -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/move-vcregistry-snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/move-vcregistry-snapshot.ts -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/package.json -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/pnpm-lock.yaml -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/setup-enclave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/setup-enclave.ts -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/transfer-to-whitelist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/transfer-to-whitelist.ts -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/transfer.ts -------------------------------------------------------------------------------- /parachain/scripts/ts-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/scripts/ts-utils/tsconfig.json -------------------------------------------------------------------------------- /parachain/templates/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/templates/benchmark/README.md -------------------------------------------------------------------------------- /parachain/ts-tests/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/.env.example -------------------------------------------------------------------------------- /parachain/ts-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/.gitignore -------------------------------------------------------------------------------- /parachain/ts-tests/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/.prettierrc -------------------------------------------------------------------------------- /parachain/ts-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/README.md -------------------------------------------------------------------------------- /parachain/ts-tests/common/abi/precompile/Bridge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/abi/precompile/Bridge.json -------------------------------------------------------------------------------- /parachain/ts-tests/common/abi/precompile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/abi/precompile/README.md -------------------------------------------------------------------------------- /parachain/ts-tests/common/abi/precompile/Staking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/abi/precompile/Staking.json -------------------------------------------------------------------------------- /parachain/ts-tests/common/abi/precompile/Vesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/abi/precompile/Vesting.json -------------------------------------------------------------------------------- /parachain/ts-tests/common/setup/register-parathread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/setup/register-parathread.ts -------------------------------------------------------------------------------- /parachain/ts-tests/common/setup/setup-enclave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/setup/setup-enclave.ts -------------------------------------------------------------------------------- /parachain/ts-tests/common/setup/teebag-set-dev-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/setup/teebag-set-dev-mode.ts -------------------------------------------------------------------------------- /parachain/ts-tests/common/setup/upgrade-parathread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/setup/upgrade-parathread.ts -------------------------------------------------------------------------------- /parachain/ts-tests/common/utils/compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/utils/compile.ts -------------------------------------------------------------------------------- /parachain/ts-tests/common/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/utils/config.ts -------------------------------------------------------------------------------- /parachain/ts-tests/common/utils/function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/utils/function.ts -------------------------------------------------------------------------------- /parachain/ts-tests/common/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/utils/index.ts -------------------------------------------------------------------------------- /parachain/ts-tests/common/utils/integration-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/common/utils/integration-setup.ts -------------------------------------------------------------------------------- /parachain/ts-tests/config.ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/config.ci.json -------------------------------------------------------------------------------- /parachain/ts-tests/config.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/config.prod.json -------------------------------------------------------------------------------- /parachain/ts-tests/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'solc'; 2 | -------------------------------------------------------------------------------- /parachain/ts-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/package.json -------------------------------------------------------------------------------- /parachain/ts-tests/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/pnpm-lock.yaml -------------------------------------------------------------------------------- /parachain/ts-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/tsconfig.json -------------------------------------------------------------------------------- /parachain/ts-tests/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/ts-tests/vitest.config.ts -------------------------------------------------------------------------------- /parachain/utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/utils/Cargo.toml -------------------------------------------------------------------------------- /parachain/utils/proc-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/utils/proc-macros/Cargo.toml -------------------------------------------------------------------------------- /parachain/utils/proc-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/utils/proc-macros/src/lib.rs -------------------------------------------------------------------------------- /parachain/utils/proc-macros/src/reuse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/utils/proc-macros/src/reuse.rs -------------------------------------------------------------------------------- /parachain/utils/src/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/utils/src/hex.rs -------------------------------------------------------------------------------- /parachain/utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/utils/src/lib.rs -------------------------------------------------------------------------------- /parachain/utils/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/utils/src/macros.rs -------------------------------------------------------------------------------- /parachain/zombienet/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/parachain/zombienet/config.toml -------------------------------------------------------------------------------- /tee-worker/client-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/.gitignore -------------------------------------------------------------------------------- /tee-worker/client-api/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/CHANGELOG.md -------------------------------------------------------------------------------- /tee-worker/client-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/README.md -------------------------------------------------------------------------------- /tee-worker/client-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/package.json -------------------------------------------------------------------------------- /tee-worker/client-api/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/pnpm-lock.yaml -------------------------------------------------------------------------------- /tee-worker/client-api/src/identity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/src/identity/index.ts -------------------------------------------------------------------------------- /tee-worker/client-api/src/identity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/src/identity/tsconfig.json -------------------------------------------------------------------------------- /tee-worker/client-api/src/omni/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/src/omni/index.ts -------------------------------------------------------------------------------- /tee-worker/client-api/src/omni/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/src/omni/tsconfig.json -------------------------------------------------------------------------------- /tee-worker/client-api/src/sidechain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/src/sidechain/index.ts -------------------------------------------------------------------------------- /tee-worker/client-api/src/sidechain/interfaces/dummynocustom/definitions.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | types: {}, 3 | }; 4 | -------------------------------------------------------------------------------- /tee-worker/client-api/src/sidechain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/src/sidechain/tsconfig.json -------------------------------------------------------------------------------- /tee-worker/client-api/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/tsconfig.base.json -------------------------------------------------------------------------------- /tee-worker/client-api/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/client-api/tsup.config.ts -------------------------------------------------------------------------------- /tee-worker/identity/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/.dockerignore -------------------------------------------------------------------------------- /tee-worker/identity/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/.editorconfig -------------------------------------------------------------------------------- /tee-worker/identity/.gitattributes.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/.gitattributes.orig -------------------------------------------------------------------------------- /tee-worker/identity/.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/.githooks/pre-commit -------------------------------------------------------------------------------- /tee-worker/identity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/.gitignore -------------------------------------------------------------------------------- /tee-worker/identity/.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/.taplo.toml -------------------------------------------------------------------------------- /tee-worker/identity/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/Cargo.lock -------------------------------------------------------------------------------- /tee-worker/identity/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/DESIGN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/DESIGN.md -------------------------------------------------------------------------------- /tee-worker/identity/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/Dockerfile -------------------------------------------------------------------------------- /tee-worker/identity/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/Jenkinsfile -------------------------------------------------------------------------------- /tee-worker/identity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/LICENSE -------------------------------------------------------------------------------- /tee-worker/identity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/Makefile -------------------------------------------------------------------------------- /tee-worker/identity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/README.md -------------------------------------------------------------------------------- /tee-worker/identity/UpdateRustSGXSDK.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/UpdateRustSGXSDK.mk -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/sgx-runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/sgx-runtime/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/sgx-runtime/src/evm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/sgx-runtime/src/evm.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/sgx-runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/sgx-runtime/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/evm_helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/evm_helpers.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/getter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/getter.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/hash.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/hash.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/helpers.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/stf_sgx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/stf_sgx.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/stf_sgx_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/stf_sgx_tests.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/test_genesis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/test_genesis.rs -------------------------------------------------------------------------------- /tee-worker/identity/app-libs/stf/src/trusted_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/app-libs/stf/src/trusted_call.rs -------------------------------------------------------------------------------- /tee-worker/identity/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tee-worker/identity/build.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/build.Dockerfile -------------------------------------------------------------------------------- /tee-worker/identity/cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/README.md -------------------------------------------------------------------------------- /tee-worker/identity/cli/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/benchmark.sh -------------------------------------------------------------------------------- /tee-worker/identity/cli/lit_parentchain_nonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/lit_parentchain_nonce.sh -------------------------------------------------------------------------------- /tee-worker/identity/cli/lit_test_dr_vc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/lit_test_dr_vc.sh -------------------------------------------------------------------------------- /tee-worker/identity/cli/lit_ts_api_package_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/lit_ts_api_package_build.sh -------------------------------------------------------------------------------- /tee-worker/identity/cli/lit_ts_integration_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/lit_ts_integration_test.sh -------------------------------------------------------------------------------- /tee-worker/identity/cli/lit_ts_worker_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/lit_ts_worker_test.sh -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/attesteer/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/attesteer/commands/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/attesteer/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/attesteer/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/base_cli/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/base_cli/commands/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/base_cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/base_cli/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/benchmark/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/benchmark/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/benchmark/request_vc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/benchmark/request_vc.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/benchmark/stf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/benchmark/stf.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/command_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/command_utils.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/commands.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/commands.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/evm/commands/evm_call.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/evm/commands/evm_call.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/evm/commands/evm_create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/evm/commands/evm_create.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/evm/commands/evm_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/evm/commands/evm_read.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/evm/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/evm/commands/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/evm/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/evm/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/main.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/trusted_base_cli/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/trusted_base_cli/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/trusted_cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/trusted_cli.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/trusted_command_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/trusted_command_utils.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/src/trusted_operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/src/trusted_operation.rs -------------------------------------------------------------------------------- /tee-worker/identity/cli/tests/basic_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/cli/tests/basic_tests.rs -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/.eslintrc.json -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/.gitignore -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/.npmrc -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/.prettierignore -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/.prettierrc -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/.verdaccio/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/.verdaccio/config.yml -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/README.md -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/jest.config.ts -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/jest.preset.js -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/nx.json -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/package.json -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/pnpm-lock.yaml -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/project.json -------------------------------------------------------------------------------- /tee-worker/identity/client-sdk/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/client-sdk/tsconfig.base.json -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/hashing/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/hashing/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/hashing/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/hashing/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/rpc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/rpc/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/rpc/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/rpc/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/sgx/io/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/sgx/io/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/sgx/io/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/sgx/io/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/storage/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/storage/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/storage/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/storage/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/test/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/test/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/types/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/types/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/types/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/types/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/utils/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/utils/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/utils/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/utils/src/error.rs -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/utils/src/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/utils/src/hex.rs -------------------------------------------------------------------------------- /tee-worker/identity/core-primitives/utils/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core-primitives/utils/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/direct-rpc-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/direct-rpc-client/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core/direct-rpc-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/direct-rpc-client/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/direct-rpc-server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/direct-rpc-server/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core/direct-rpc-server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/direct-rpc-server/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/parentchain/test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/parentchain/test/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core/parentchain/test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/parentchain/test/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/rest-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rest-client/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core/rest-client/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rest-client/src/error.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/rest-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rest-client/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/rest-client/src/mocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rest-client/src/mocks/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/rpc-client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rpc-client/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core/rpc-client/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rpc-client/src/error.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/rpc-client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rpc-client/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/rpc-client/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rpc-client/src/mock.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/rpc-client/src/ws_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rpc-client/src/ws_client.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/rpc-server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rpc-server/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core/rpc-server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/rpc-server/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/system-version/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/system-version/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/core/system-version/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/system-version/build.rs -------------------------------------------------------------------------------- /tee-worker/identity/core/system-version/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/core/system-version/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/README.md -------------------------------------------------------------------------------- /tee-worker/identity/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/docker-compose.yml -------------------------------------------------------------------------------- /tee-worker/identity/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/entrypoint.sh -------------------------------------------------------------------------------- /tee-worker/identity/docker/fork.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/fork.Dockerfile -------------------------------------------------------------------------------- /tee-worker/identity/docker/lit-di-identity-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/lit-di-identity-test.yml -------------------------------------------------------------------------------- /tee-worker/identity/docker/lit-dr-vc-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/lit-dr-vc-test.yml -------------------------------------------------------------------------------- /tee-worker/identity/docker/lit-omni-account-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/lit-omni-account-test.yml -------------------------------------------------------------------------------- /tee-worker/identity/docker/lit-parentchain-nonce.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/lit-parentchain-nonce.yml -------------------------------------------------------------------------------- /tee-worker/identity/docker/lit-resume-worker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/lit-resume-worker.yml -------------------------------------------------------------------------------- /tee-worker/identity/docker/lit-test-stress-script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/lit-test-stress-script.yml -------------------------------------------------------------------------------- /tee-worker/identity/docker/lit-vc-correctness-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/lit-vc-correctness-test.yml -------------------------------------------------------------------------------- /tee-worker/identity/docker/ping.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/ping.Dockerfile -------------------------------------------------------------------------------- /tee-worker/identity/docker/sidechain-benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docker/sidechain-benchmark.yml -------------------------------------------------------------------------------- /tee-worker/identity/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/docs/README.md -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/Cargo.lock -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/Enclave.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/Enclave.config.xml -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/Enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/Enclave.edl -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/Enclave.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/Enclave.lds -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/Makefile -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/README.md -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/rustfmt.toml -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/attestation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/attestation.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/empty_impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/empty_impls.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/error.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/ipfs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/ipfs.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/ocall/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/ocall/ffi.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/ocall/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/ocall/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/rpc/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/rpc/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/stf_task_handler.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/sync.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/test/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/test/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/tls_ra/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/tls_ra/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/enclave-runtime/src/utils.rs -------------------------------------------------------------------------------- /tee-worker/identity/enclave-runtime/src/vc_issuance_task.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tee-worker/identity/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/entrypoint.sh -------------------------------------------------------------------------------- /tee-worker/identity/extract_identity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/extract_identity -------------------------------------------------------------------------------- /tee-worker/identity/lib/readme.txt: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /tee-worker/identity/license_header_scs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/license_header_scs.txt -------------------------------------------------------------------------------- /tee-worker/identity/litentry/core/common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/litentry/core/common/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/litentry/core/common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/litentry/core/common/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/litentry/core/evm-dynamic-assertions/.gitignore: -------------------------------------------------------------------------------- 1 | !*.rs -------------------------------------------------------------------------------- /tee-worker/identity/litentry/core/service/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/litentry/core/service/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/litentry/core/service/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/litentry/core/service/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/litentry/primitives/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/litentry/primitives/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/litentry/primitives/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/litentry/primitives/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/Readme.md -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/buildenv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/buildenv.mk -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/assert.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/complex.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/ctype.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/dirent.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/endian.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/errno.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/fenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/fenv.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/float.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/inttypes.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/iso646.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/iso646.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/limits.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/math.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/netdb.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/poll.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/pthread.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/pwd.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/sched.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/setjmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/setjmp.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/signal.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/stdalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/stdalign.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/stdarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/stdarg.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/stdbool.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/stddef.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/stdint.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/stdio.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/stdlib.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/string.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/sys/fpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/sys/fpu.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/sys/ieee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/sys/ieee.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/sys/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/sys/stat.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/sys/uio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/sys/uio.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/time.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/unistd.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/wchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/wchar.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/common/inc/wctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/common/inc/wctype.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/inc/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/inc/dirent.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/inc/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/inc/stat.h -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_asyncio.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_asyncio.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_backtrace.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_backtrace.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_env.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_env.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_fd.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_fd.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_file.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_file.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_fs.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_fs.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_mem.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_mem.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_net.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_net.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_pipe.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_pipe.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_process.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_process.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_signal.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_signal.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_socket.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_socket.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_stdio.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_stdio.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_sys.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_sys.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_thread.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_thread.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_time.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_time.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/edl/sgx_tstd.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-sgx-sdk/edl/sgx_tstd.edl -------------------------------------------------------------------------------- /tee-worker/identity/rust-sgx-sdk/version: -------------------------------------------------------------------------------- 1 | 27bd225ae6dbcd1d0a6d4d9590acc4d73c5195c2 2 | -------------------------------------------------------------------------------- /tee-worker/identity/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rust-toolchain.toml -------------------------------------------------------------------------------- /tee-worker/identity/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/rustfmt.toml -------------------------------------------------------------------------------- /tee-worker/identity/samples/teeracle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/samples/teeracle/README.md -------------------------------------------------------------------------------- /tee-worker/identity/scripts/benchmark_local-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/benchmark_local-setup.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/changelog/.gitignore: -------------------------------------------------------------------------------- 1 | changelog.md 2 | *.json 3 | release*.md 4 | .env 5 | -------------------------------------------------------------------------------- /tee-worker/identity/scripts/changelog/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/changelog/Gemfile -------------------------------------------------------------------------------- /tee-worker/identity/scripts/changelog/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/changelog/Gemfile.lock -------------------------------------------------------------------------------- /tee-worker/identity/scripts/changelog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/changelog/README.md -------------------------------------------------------------------------------- /tee-worker/identity/scripts/changelog/bin/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/changelog/bin/changelog -------------------------------------------------------------------------------- /tee-worker/identity/scripts/changelog/digests/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /tee-worker/identity/scripts/changelog/digests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tee-worker/identity/scripts/changelog/lib/changelog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/changelog/lib/changelog.rb -------------------------------------------------------------------------------- /tee-worker/identity/scripts/init_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/init_env.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/litentry/identity_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/litentry/identity_test.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/litentry/release/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/litentry/release/ReadMe.md -------------------------------------------------------------------------------- /tee-worker/identity/scripts/litentry/release/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/litentry/release/build.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/litentry/ubuntu_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/litentry/ubuntu_setup.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/m8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/m8.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/polkadot_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/polkadot_update.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/sidechain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/sidechain.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/teeracle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/teeracle.sh -------------------------------------------------------------------------------- /tee-worker/identity/scripts/test_transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/test_transfer/README.md -------------------------------------------------------------------------------- /tee-worker/identity/scripts/test_transfer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/test_transfer/package.json -------------------------------------------------------------------------------- /tee-worker/identity/scripts/test_transfer/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/scripts/test_transfer/transfer.js -------------------------------------------------------------------------------- /tee-worker/identity/service/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/service/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/build.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/account_funding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/account_funding.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/cli.yml -------------------------------------------------------------------------------- /tee-worker/identity/service/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/config.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/enclave/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/enclave/api.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/enclave/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/enclave/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/enclave/tls_ra.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/enclave/tls_ra.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/error.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/globals/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/globals/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/initialized_service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/initialized_service.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/main.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/main_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/main_impl.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/ocall_bridge/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/ocall_bridge/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/parentchain_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/parentchain_handler.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/prometheus_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/prometheus_metrics.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/setup.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/sidechain_setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/sidechain_setup.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/sync_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/sync_state.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/tests/commons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/tests/commons.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/tests/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/tests/mock.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/tests/mocks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/tests/mocks/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/tests/mod.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/utils.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/wasm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/wasm.rs -------------------------------------------------------------------------------- /tee-worker/identity/service/src/worker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/service/src/worker.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/fork-tree/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/fork-tree/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/fork-tree/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/fork-tree/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/peer-fetch/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/peer-fetch/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/peer-fetch/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/peer-fetch/src/error.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/peer-fetch/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/peer-fetch/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/primitives/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/primitives/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/primitives/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/primitives/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/rpc-handler/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/rpc-handler/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/rpc-handler/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/rpc-handler/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/state/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/state/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/state/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/state/src/error.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/state/src/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/state/src/impls.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/state/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/state/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/storage/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/storage/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/storage/src/db.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/storage/src/db.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/storage/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/storage/src/error.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/storage/src/interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/storage/src/interface.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/storage/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/storage/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/storage/src/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/storage/src/storage.rs -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/test/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/identity/sidechain/test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/sidechain/test/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/.editorconfig -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/.gitignore: -------------------------------------------------------------------------------- 1 | .env.local 2 | cache/ -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/.prettierrc -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/README.md -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/package.json -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/pnpm-lock.yaml -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/post-checks/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | build 4 | -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/post-checks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/post-checks/README.md -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/post-checks/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/post-checks/config.ts -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/post-checks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/post-checks/package.json -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/post-checks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/post-checks/tsconfig.json -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/stress-runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/stress-runner -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/worker/.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/worker/.env.local.example -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/worker/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/worker/.env.staging -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/worker/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/worker/eslint.config.js -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/worker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/worker/package.json -------------------------------------------------------------------------------- /tee-worker/identity/ts-tests/worker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/identity/ts-tests/worker/tsconfig.json -------------------------------------------------------------------------------- /tee-worker/identity/upstream_commit: -------------------------------------------------------------------------------- 1 | e40355f8 2 | -------------------------------------------------------------------------------- /tee-worker/omni-executor/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/.env.example -------------------------------------------------------------------------------- /tee-worker/omni-executor/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/.env.test -------------------------------------------------------------------------------- /tee-worker/omni-executor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/.gitignore -------------------------------------------------------------------------------- /tee-worker/omni-executor/.taplo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/.taplo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/Cargo.lock -------------------------------------------------------------------------------- /tee-worker/omni-executor/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/Dockerfile -------------------------------------------------------------------------------- /tee-worker/omni-executor/Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/Dockerfile.local -------------------------------------------------------------------------------- /tee-worker/omni-executor/LOCAL_DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/LOCAL_DEV.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/Makefile -------------------------------------------------------------------------------- /tee-worker/omni-executor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/README.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/bin/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/bin/Cargo.lock -------------------------------------------------------------------------------- /tee-worker/omni-executor/bin/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/bin/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/bin/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/bin/src/cli.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/bin/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/bin/src/main.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/cli/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/cli/README.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/cli/src/main.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/.eslintrc.json -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/.gitignore -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/.npmrc -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/.prettierignore -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/.prettierrc -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/README.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/jest.config.ts -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/jest.preset.js -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/nx.json -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/package.json -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/pnpm-lock.yaml -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/project.json -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/tsconfig.base.json -------------------------------------------------------------------------------- /tee-worker/omni-executor/client-sdk/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/client-sdk/workspace.json -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/aa/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/aa/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/aa/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/aa/src/error.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/aa/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/aa/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/aa/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/aa/src/types.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/aa/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/aa/src/utils.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/accounting/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/accounting/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/accounting/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/accounting/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/binance/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/binance/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/binance/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/binance/src/error.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/binance/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/binance/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/binance/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/binance/src/traits.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/binance/src/types.rs: -------------------------------------------------------------------------------- 1 | pub type AssetSymbol = String; 2 | -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/ethereum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/ethereum/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/ethereum/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/ethereum/src/error.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/ethereum/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/ethereum/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/pumpx/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/pumpx/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/pumpx/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/pumpx/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/signer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/signer/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/signer/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/signer/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/signer/src/mocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/signer/src/mocks.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/solana/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/solana/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/solana/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/solana/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/solana/src/signer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/solana/src/signer.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/wildmeta/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/wildmeta/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/clients/wildmeta/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/clients/wildmeta/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/.gitignore -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/ABI-SYNC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/ABI-SYNC.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/DEPLOYMENT.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/README.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/deploy-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/deploy-docker.sh -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/deploy-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/deploy-local.sh -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/deploy-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/deploy-remote.sh -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/extract-abis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/extract-abis.js -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/foundry.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/package.json -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/remappings.txt -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/aa/src/Counter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/contracts/aa/src/Counter.sol -------------------------------------------------------------------------------- /tee-worker/omni-executor/contracts/accounting/solana/.gitignore: -------------------------------------------------------------------------------- 1 | .anchor 2 | .DS_Store 3 | target 4 | **/*.rs.bk 5 | node_modules 6 | test-ledger 7 | .yarn -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/aes256_key_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/aes256_key_store.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/auth/auth_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/auth/auth_token.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/auth/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/auth/constants.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/auth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/auth/mod.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/auth/web3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/auth/web3.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/config.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/ecdsa_key_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/ecdsa_key_store.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/ed25519_key_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/ed25519_key_store.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/event_handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/event_handler.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/fetcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/fetcher.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/intent/executor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/intent/executor.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/intent/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/intent/mod.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/key_store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/key_store.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/listener.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/native_task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/native_task.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/oauth/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/oauth/client.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/oauth/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/oauth/mod.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/types.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/verify/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/verify/helpers.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/verify/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/verify/mod.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/verify/web2/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/verify/web2/mod.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/verify/web3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/verify/web3.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/core/src/wallet_metrics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/core/src/wallet_metrics.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/crypto/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/crypto/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/crypto/src/aes256.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/crypto/src/aes256.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/crypto/src/jwt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/crypto/src/jwt.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/crypto/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/crypto/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/crypto/src/passkey.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/crypto/src/passkey.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/crypto/src/secp256k1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/crypto/src/secp256k1.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/crypto/src/shielding_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/crypto/src/shielding_key.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/crypto/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/crypto/src/traits.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/docker/docker-compose.yml -------------------------------------------------------------------------------- /tee-worker/omni-executor/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/docker/entrypoint.sh -------------------------------------------------------------------------------- /tee-worker/omni-executor/docker/jsonrpc-mock-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/docker/jsonrpc-mock-tests.yml -------------------------------------------------------------------------------- /tee-worker/omni-executor/docker/omni-account-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/docker/omni-account-test.yml -------------------------------------------------------------------------------- /tee-worker/omni-executor/enclave_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/enclave_key.pem -------------------------------------------------------------------------------- /tee-worker/omni-executor/local/keystore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/local/keystore/README.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/src/binance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/src/binance.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/src/dex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/src/dex.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/src/evm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/src/evm.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/src/pumpx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/src/pumpx.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/src/sendgrid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/src/sendgrid.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/src/solana.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/src/solana.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/mock-server/src/wildmeta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/mock-server/src/wildmeta.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/primitives/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/primitives/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/primitives/src/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/primitives/src/auth.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/primitives/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/primitives/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/primitives/src/utils/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/primitives/src/utils/hex.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/primitives/src/utils/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod hex; 2 | -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/config/mod.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/error_code.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/error_code.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/methods/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/methods/mod.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/server.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/utils/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/utils/auth.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/utils/mod.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/utils/omni.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/utils/omni.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/utils/pumpx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/utils/pumpx.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/utils/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/utils/types.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rpc-server/src/verify_auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rpc-server/src/verify_auth.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rust-toolchain.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/rustfmt.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/storage/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/storage/Cargo.toml -------------------------------------------------------------------------------- /tee-worker/omni-executor/storage/src/asset_lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/storage/src/asset_lock.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/storage/src/heima_jwt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/storage/src/heima_jwt.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/storage/src/intent_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/storage/src/intent_id.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/storage/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/storage/src/lib.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/storage/src/loan_record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/storage/src/loan_record.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/storage/src/passkey.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/storage/src/passkey.rs -------------------------------------------------------------------------------- /tee-worker/omni-executor/ts-tests/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/ts-tests/.prettierrc -------------------------------------------------------------------------------- /tee-worker/omni-executor/ts-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/ts-tests/README.md -------------------------------------------------------------------------------- /tee-worker/omni-executor/ts-tests/integration-tests/utils/crypto.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tee-worker/omni-executor/ts-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/ts-tests/package.json -------------------------------------------------------------------------------- /tee-worker/omni-executor/ts-tests/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litentry/heima/HEAD/tee-worker/omni-executor/ts-tests/pnpm-lock.yaml -------------------------------------------------------------------------------- /tee-worker/omni-executor/ts-tests/stress-tests/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | stress-test-results/ 3 | .env 4 | .next --------------------------------------------------------------------------------