├── .cargo └── config.toml ├── .dockerignore ├── .env.sample ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── action-rs │ └── grcov.yml ├── landing_page │ ├── gnosis_safe_logo.png │ └── index.html ├── pull_request_template.md └── workflows │ ├── cla.yml │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── add_rustfmt_git_hook.sh ├── docker-compose.yml ├── nginx └── templates │ └── nginx.conf.template ├── rust-toolchain.toml ├── rustfmt.toml ├── scripts ├── autodeploy.sh ├── deploy_docker.sh └── generate_test_tx.sh └── src ├── cache ├── cache_op_executors.rs ├── cache_operations.rs ├── inner_cache.rs ├── manager.rs ├── mod.rs ├── redis.rs └── tests │ ├── cache_inner.rs │ ├── cache_op_executors.rs │ ├── cache_operations.rs │ └── mod.rs ├── common ├── converters │ ├── data_decoded.rs │ ├── mod.rs │ ├── page_metadata.rs │ ├── tests │ │ ├── balances.rs │ │ ├── balances_v2.rs │ │ ├── data_decoded.rs │ │ ├── get_address_ex_from_any_source.rs │ │ ├── get_transfer_direction.rs │ │ ├── mod.rs │ │ ├── page_metadata.rs │ │ ├── safe_app.rs │ │ ├── transfer_erc20.rs │ │ ├── transfer_erc721.rs │ │ ├── transfer_ether.rs │ │ └── transfers.rs │ └── transfers.rs ├── mod.rs ├── models │ ├── addresses.rs │ ├── backend │ │ ├── about.rs │ │ ├── balances.rs │ │ ├── balances_v2.rs │ │ ├── chains.rs │ │ ├── hooks.rs │ │ ├── mod.rs │ │ ├── notifications.rs │ │ ├── safe_apps.rs │ │ ├── safes.rs │ │ ├── transactions.rs │ │ └── transfers.rs │ ├── data_decoded.rs │ ├── mod.rs │ └── page.rs ├── routes │ ├── authorization.rs │ └── mod.rs └── tests │ ├── common.rs │ └── mod.rs ├── config ├── mod.rs └── tests │ └── mod.rs ├── macros.rs ├── main.rs ├── monitoring ├── mod.rs ├── performance.rs └── tests │ ├── mod.rs │ └── path_patterns.rs ├── providers ├── address_info.rs ├── ext.rs ├── fiat.rs ├── info.rs ├── mod.rs └── tests │ ├── fiat.rs │ ├── info.rs │ └── mod.rs ├── routes ├── about │ ├── handlers.rs │ ├── mod.rs │ ├── models.rs │ ├── routes.rs │ └── tests │ │ ├── mod.rs │ │ └── routes.rs ├── balances │ ├── converters.rs │ ├── converters_v2.rs │ ├── handlers.rs │ ├── handlers_v2.rs │ ├── mod.rs │ ├── models.rs │ └── routes.rs ├── chains │ ├── converters.rs │ ├── handlers.rs │ ├── mod.rs │ ├── models.rs │ ├── routes.rs │ └── tests │ │ ├── chains.rs │ │ ├── json │ │ ├── backend_chains_info_page.json │ │ └── expected_chains_info_page.json │ │ ├── mod.rs │ │ └── routes.rs ├── collectibles │ ├── handlers.rs │ ├── mod.rs │ ├── models.rs │ ├── routes.rs │ └── tests │ │ ├── mod.rs │ │ └── routes.rs ├── contracts │ ├── handlers.rs │ ├── mod.rs │ ├── models.rs │ ├── routes.rs │ └── tests │ │ ├── mod.rs │ │ └── routes.rs ├── delegates │ ├── handlers.rs │ ├── mod.rs │ ├── models.rs │ ├── routes.rs │ └── tests │ │ ├── json │ │ ├── backend_create_delegate.json │ │ ├── backend_delete_delegate.json │ │ ├── backend_delete_delegate_safe.json │ │ ├── backend_list_delegates_of_safe.json │ │ └── expected_list_delegates_of_safe.json │ │ ├── mod.rs │ │ └── routes.rs ├── health │ ├── mod.rs │ ├── routes.rs │ └── tests │ │ ├── mod.rs │ │ └── routes.rs ├── hooks │ ├── handlers.rs │ ├── mod.rs │ ├── routes.rs │ └── tests │ │ ├── invalidate_caches.rs │ │ ├── mod.rs │ │ ├── routes.rs │ │ └── safes.rs ├── messages │ ├── backend_models.rs │ ├── create_message.rs │ ├── frontend_models.rs │ ├── get_message.rs │ ├── get_messages.rs │ ├── message_mapper.rs │ ├── mod.rs │ └── update_message.rs ├── mod.rs ├── notifications │ ├── handlers.rs │ ├── mod.rs │ ├── models.rs │ ├── routes.rs │ └── tests │ │ ├── mod.rs │ │ └── routes.rs ├── safe_apps │ ├── converters.rs │ ├── handlers.rs │ ├── mod.rs │ ├── models.rs │ ├── routes.rs │ └── tests │ │ ├── json │ │ ├── response_safe_apps.json │ │ └── response_safe_apps_url_query.json │ │ ├── mod.rs │ │ └── routes.rs ├── safes │ ├── converters.rs │ ├── handlers │ │ ├── estimations.rs │ │ ├── mod.rs │ │ └── safes.rs │ ├── mod.rs │ ├── models.rs │ ├── routes.rs │ └── tests │ │ ├── json │ │ ├── last_collectible_transfer.json │ │ ├── last_history_tx.json │ │ ├── last_queued_tx.json │ │ └── safe_state.json │ │ ├── mod.rs │ │ └── routes.rs └── transactions │ ├── converters │ ├── details.rs │ ├── mod.rs │ ├── safe_app_info.rs │ ├── summary.rs │ ├── tests │ │ ├── check_sender_or_receiver.rs │ │ ├── data_size_calculation.rs │ │ ├── details.rs │ │ ├── is_cancellation.rs │ │ ├── map_status.rs │ │ ├── missing_signers.rs │ │ ├── mod.rs │ │ ├── safe_app_info.rs │ │ ├── summary.rs │ │ ├── transaction_id.rs │ │ ├── transaction_types.rs │ │ └── transfer_type_checks.rs │ └── transaction_id.rs │ ├── filters │ ├── mod.rs │ ├── module.rs │ ├── multisig.rs │ ├── tests │ │ └── mod.rs │ └── transfer.rs │ ├── handlers │ ├── commons.rs │ ├── details.rs │ ├── history.rs │ ├── mod.rs │ ├── module.rs │ ├── multisig.rs │ ├── preview.rs │ ├── proposal.rs │ ├── queued.rs │ ├── tests │ │ ├── mod.rs │ │ ├── parse_id.rs │ │ ├── transactions_history.rs │ │ ├── transactions_queued.rs │ │ └── transfers.rs │ └── transfers.rs │ ├── mod.rs │ ├── models │ ├── details.rs │ ├── mod.rs │ ├── requests.rs │ └── summary.rs │ ├── routes.rs │ └── tests │ ├── json │ ├── chain_response.json │ ├── contract_info_BID.json │ ├── contracts_response.json │ ├── multisig_tx_details.json │ ├── post_confirmation_result.json │ ├── preview_response.json │ └── preview_response_data_decoded_error.json │ ├── mod.rs │ ├── preview.rs │ └── routes.rs ├── tests ├── backend_url.rs ├── json │ ├── balances │ │ ├── balance_compound_ether.json │ │ └── balance_ether.json │ ├── chains │ │ ├── polygon.json │ │ ├── rinkeby.json │ │ ├── rinkeby_disabled_wallets.json │ │ ├── rinkeby_enabled_features.json │ │ ├── rinkeby_fixed_gas_price.json │ │ ├── rinkeby_multiple_gas_price.json │ │ ├── rinkeby_no_gas_price.json │ │ ├── rinkeby_rpc_auth_unknown.json │ │ ├── rinkeby_rpc_no_auth.json │ │ └── rinkeby_unknown_gas_price.json │ ├── collectibles │ │ ├── collectibles_page.json │ │ ├── collectibles_paginated_empty_cgw.json │ │ ├── collectibles_paginated_empty_txs.json │ │ ├── collectibles_paginated_page_1_cgw.json │ │ ├── collectibles_paginated_page_1_txs.json │ │ ├── collectibles_paginated_page_2_cgw.json │ │ └── collectibles_paginated_page_2_txs.json │ ├── commons │ │ ├── DOCTORED_data_decoded_multi_send_nested_delegate.json │ │ ├── DOCTORED_data_decoded_nested_multi_sends.json │ │ ├── data_decoded_add_owner_with_threshold.json │ │ ├── data_decoded_approve.json │ │ ├── data_decoded_change_master_copy.json │ │ ├── data_decoded_change_threshold.json │ │ ├── data_decoded_delete_guard.json │ │ ├── data_decoded_disable_module.json │ │ ├── data_decoded_enable_module.json │ │ ├── data_decoded_exec_transaction_from_module.json │ │ ├── data_decoded_multi_send.json │ │ ├── data_decoded_multi_send_single_inner_transaction.json │ │ ├── data_decoded_nested_safe_interaction.json │ │ ├── data_decoded_remove_owner.json │ │ ├── data_decoded_set_fallback_handler.json │ │ ├── data_decoded_set_guard.json │ │ ├── data_decoded_swap_array_values.json │ │ ├── data_decoded_swap_owner.json │ │ └── empty_page.json │ ├── contracts │ │ └── contract_info_BID.json │ ├── exchange │ │ └── currency_rates.json │ ├── master_copies │ │ └── polygon_master_copies.json │ ├── mod.rs │ ├── results │ │ └── tx_details_with_origin.json │ ├── safe_apps │ │ ├── polygon_safe_app_url_query.json │ │ └── polygon_safe_apps.json │ ├── safes │ │ ├── with_guard_safe_v130_l2.json │ │ ├── with_module_transactions.json │ │ ├── with_modules.json │ │ ├── with_modules_and_high_nonce.json │ │ └── with_threshold_two.json │ ├── tokens │ │ ├── bat.json │ │ ├── crypto_kitties.json │ │ ├── dai.json │ │ ├── pv_memorial_token.json │ │ └── usdt.json │ ├── transactions │ │ ├── backend_history_transaction_list_page.json │ │ ├── backend_multisig_transfer_tx.json │ │ ├── backend_queued_transaction_list_page_conflicts_393.json │ │ ├── backend_queued_transaction_list_page_conflicts_394.json │ │ ├── backend_queued_transaction_list_page_no_conflicts.json │ │ ├── creation_transaction.json │ │ ├── ethereum_inconsistent_token_types.json │ │ ├── module_addOwnerWithThreshold_settings_change.json │ │ ├── module_erc20_transfer.json │ │ ├── module_erc721_transfer.json │ │ ├── module_ether_transfer.json │ │ ├── module_newAndDifferentAddOwnerWithThreshold_settings_change.json │ │ ├── module_transaction.json │ │ ├── module_transaction_failed.json │ │ ├── multisig_addOwnerWithThreshold_settings_change.json │ │ ├── multisig_approve_custom.json │ │ ├── multisig_awaiting_confirmations.json │ │ ├── multisig_awaiting_confirmations_empty.json │ │ ├── multisig_awaiting_confirmations_null.json │ │ ├── multisig_awaiting_confirmations_required_null.json │ │ ├── multisig_awaiting_execution.json │ │ ├── multisig_cancellation_transaction.json │ │ ├── multisig_confirmations_null.json │ │ ├── multisig_erc20_transfer.json │ │ ├── multisig_erc20_transfer_delegate.json │ │ ├── multisig_erc20_transfer_invalid_to_and_from.json │ │ ├── multisig_erc20_transfer_with_value.json │ │ ├── multisig_erc721_transfer.json │ │ ├── multisig_erc721_transfer_cancelled.json │ │ ├── multisig_erc721_transfer_invalid_to_and_from.json │ │ ├── multisig_ether_transfer.json │ │ ├── multisig_failed_transfer.json │ │ ├── multisig_newAndDifferentAddOwnerWithThreshold_settings_change.json │ │ └── multisig_with_origin.json │ └── transfers │ │ ├── erc20_transfer_with_erc721_token_info.json │ │ ├── erc_20_transfer_unexpected_param_names.json │ │ ├── erc_20_transfer_with_token_info_incoming.json │ │ ├── erc_20_transfer_with_token_info_outgoing.json │ │ ├── erc_20_transfer_without_token_info.json │ │ ├── erc_721_transfer_with_token_info_incoming.json │ │ ├── erc_721_transfer_with_token_info_outgoing.json │ │ ├── erc_721_transfer_without_token_info.json │ │ ├── ether_transfer_incoming.json │ │ └── ether_transfer_outgoing.json ├── main.rs └── mod.rs └── utils ├── context.rs ├── cors.rs ├── errors.rs ├── http_client.rs ├── json.rs ├── mod.rs ├── tests ├── data_decoded_utils.rs ├── errors.rs ├── json.rs ├── macros.rs ├── method_names.rs ├── mod.rs └── transactions.rs ├── transactions.rs └── urls.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/action-rs/grcov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/action-rs/grcov.yml -------------------------------------------------------------------------------- /.github/landing_page/gnosis_safe_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/landing_page/gnosis_safe_logo.png -------------------------------------------------------------------------------- /.github/landing_page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/landing_page/index.html -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/README.md -------------------------------------------------------------------------------- /add_rustfmt_git_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/add_rustfmt_git_hook.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/templates/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/nginx/templates/nginx.conf.template -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | # match with version in DockerFile 3 | channel = "1.65.0" 4 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/autodeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/scripts/autodeploy.sh -------------------------------------------------------------------------------- /scripts/deploy_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/scripts/deploy_docker.sh -------------------------------------------------------------------------------- /scripts/generate_test_tx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/scripts/generate_test_tx.sh -------------------------------------------------------------------------------- /src/cache/cache_op_executors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/cache_op_executors.rs -------------------------------------------------------------------------------- /src/cache/cache_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/cache_operations.rs -------------------------------------------------------------------------------- /src/cache/inner_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/inner_cache.rs -------------------------------------------------------------------------------- /src/cache/manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/manager.rs -------------------------------------------------------------------------------- /src/cache/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/mod.rs -------------------------------------------------------------------------------- /src/cache/redis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/redis.rs -------------------------------------------------------------------------------- /src/cache/tests/cache_inner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/tests/cache_inner.rs -------------------------------------------------------------------------------- /src/cache/tests/cache_op_executors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/tests/cache_op_executors.rs -------------------------------------------------------------------------------- /src/cache/tests/cache_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/tests/cache_operations.rs -------------------------------------------------------------------------------- /src/cache/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/cache/tests/mod.rs -------------------------------------------------------------------------------- /src/common/converters/data_decoded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/data_decoded.rs -------------------------------------------------------------------------------- /src/common/converters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/mod.rs -------------------------------------------------------------------------------- /src/common/converters/page_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/page_metadata.rs -------------------------------------------------------------------------------- /src/common/converters/tests/balances.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/balances.rs -------------------------------------------------------------------------------- /src/common/converters/tests/balances_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/balances_v2.rs -------------------------------------------------------------------------------- /src/common/converters/tests/data_decoded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/data_decoded.rs -------------------------------------------------------------------------------- /src/common/converters/tests/get_address_ex_from_any_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/get_address_ex_from_any_source.rs -------------------------------------------------------------------------------- /src/common/converters/tests/get_transfer_direction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/get_transfer_direction.rs -------------------------------------------------------------------------------- /src/common/converters/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/mod.rs -------------------------------------------------------------------------------- /src/common/converters/tests/page_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/page_metadata.rs -------------------------------------------------------------------------------- /src/common/converters/tests/safe_app.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/safe_app.rs -------------------------------------------------------------------------------- /src/common/converters/tests/transfer_erc20.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/transfer_erc20.rs -------------------------------------------------------------------------------- /src/common/converters/tests/transfer_erc721.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/transfer_erc721.rs -------------------------------------------------------------------------------- /src/common/converters/tests/transfer_ether.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/transfer_ether.rs -------------------------------------------------------------------------------- /src/common/converters/tests/transfers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/tests/transfers.rs -------------------------------------------------------------------------------- /src/common/converters/transfers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/converters/transfers.rs -------------------------------------------------------------------------------- /src/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/mod.rs -------------------------------------------------------------------------------- /src/common/models/addresses.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/addresses.rs -------------------------------------------------------------------------------- /src/common/models/backend/about.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/about.rs -------------------------------------------------------------------------------- /src/common/models/backend/balances.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/balances.rs -------------------------------------------------------------------------------- /src/common/models/backend/balances_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/balances_v2.rs -------------------------------------------------------------------------------- /src/common/models/backend/chains.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/chains.rs -------------------------------------------------------------------------------- /src/common/models/backend/hooks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/hooks.rs -------------------------------------------------------------------------------- /src/common/models/backend/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/mod.rs -------------------------------------------------------------------------------- /src/common/models/backend/notifications.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/notifications.rs -------------------------------------------------------------------------------- /src/common/models/backend/safe_apps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/safe_apps.rs -------------------------------------------------------------------------------- /src/common/models/backend/safes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/safes.rs -------------------------------------------------------------------------------- /src/common/models/backend/transactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/transactions.rs -------------------------------------------------------------------------------- /src/common/models/backend/transfers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/backend/transfers.rs -------------------------------------------------------------------------------- /src/common/models/data_decoded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/data_decoded.rs -------------------------------------------------------------------------------- /src/common/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/mod.rs -------------------------------------------------------------------------------- /src/common/models/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/models/page.rs -------------------------------------------------------------------------------- /src/common/routes/authorization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/routes/authorization.rs -------------------------------------------------------------------------------- /src/common/routes/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod authorization; 2 | -------------------------------------------------------------------------------- /src/common/tests/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/common/tests/common.rs -------------------------------------------------------------------------------- /src/common/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod common; 2 | -------------------------------------------------------------------------------- /src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/config/mod.rs -------------------------------------------------------------------------------- /src/config/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/config/tests/mod.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/monitoring/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/monitoring/mod.rs -------------------------------------------------------------------------------- /src/monitoring/performance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/monitoring/performance.rs -------------------------------------------------------------------------------- /src/monitoring/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod path_patterns; 2 | -------------------------------------------------------------------------------- /src/monitoring/tests/path_patterns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/monitoring/tests/path_patterns.rs -------------------------------------------------------------------------------- /src/providers/address_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/providers/address_info.rs -------------------------------------------------------------------------------- /src/providers/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/providers/ext.rs -------------------------------------------------------------------------------- /src/providers/fiat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/providers/fiat.rs -------------------------------------------------------------------------------- /src/providers/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/providers/info.rs -------------------------------------------------------------------------------- /src/providers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/providers/mod.rs -------------------------------------------------------------------------------- /src/providers/tests/fiat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/providers/tests/fiat.rs -------------------------------------------------------------------------------- /src/providers/tests/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/providers/tests/info.rs -------------------------------------------------------------------------------- /src/providers/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod fiat; 2 | mod info; 3 | -------------------------------------------------------------------------------- /src/routes/about/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/about/handlers.rs -------------------------------------------------------------------------------- /src/routes/about/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/about/mod.rs -------------------------------------------------------------------------------- /src/routes/about/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/about/models.rs -------------------------------------------------------------------------------- /src/routes/about/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/about/routes.rs -------------------------------------------------------------------------------- /src/routes/about/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod routes; 2 | -------------------------------------------------------------------------------- /src/routes/about/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/about/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/balances/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/balances/converters.rs -------------------------------------------------------------------------------- /src/routes/balances/converters_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/balances/converters_v2.rs -------------------------------------------------------------------------------- /src/routes/balances/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/balances/handlers.rs -------------------------------------------------------------------------------- /src/routes/balances/handlers_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/balances/handlers_v2.rs -------------------------------------------------------------------------------- /src/routes/balances/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/balances/mod.rs -------------------------------------------------------------------------------- /src/routes/balances/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/balances/models.rs -------------------------------------------------------------------------------- /src/routes/balances/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/balances/routes.rs -------------------------------------------------------------------------------- /src/routes/chains/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/converters.rs -------------------------------------------------------------------------------- /src/routes/chains/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/handlers.rs -------------------------------------------------------------------------------- /src/routes/chains/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/mod.rs -------------------------------------------------------------------------------- /src/routes/chains/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/models.rs -------------------------------------------------------------------------------- /src/routes/chains/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/routes.rs -------------------------------------------------------------------------------- /src/routes/chains/tests/chains.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/tests/chains.rs -------------------------------------------------------------------------------- /src/routes/chains/tests/json/backend_chains_info_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/tests/json/backend_chains_info_page.json -------------------------------------------------------------------------------- /src/routes/chains/tests/json/expected_chains_info_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/tests/json/expected_chains_info_page.json -------------------------------------------------------------------------------- /src/routes/chains/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/chains/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/chains/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/collectibles/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/collectibles/handlers.rs -------------------------------------------------------------------------------- /src/routes/collectibles/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/collectibles/mod.rs -------------------------------------------------------------------------------- /src/routes/collectibles/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/collectibles/models.rs -------------------------------------------------------------------------------- /src/routes/collectibles/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/collectibles/routes.rs -------------------------------------------------------------------------------- /src/routes/collectibles/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod routes; 2 | -------------------------------------------------------------------------------- /src/routes/collectibles/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/collectibles/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/contracts/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/contracts/handlers.rs -------------------------------------------------------------------------------- /src/routes/contracts/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/contracts/mod.rs -------------------------------------------------------------------------------- /src/routes/contracts/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/contracts/models.rs -------------------------------------------------------------------------------- /src/routes/contracts/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/contracts/routes.rs -------------------------------------------------------------------------------- /src/routes/contracts/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod routes; 2 | -------------------------------------------------------------------------------- /src/routes/contracts/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/contracts/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/delegates/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/handlers.rs -------------------------------------------------------------------------------- /src/routes/delegates/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/mod.rs -------------------------------------------------------------------------------- /src/routes/delegates/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/models.rs -------------------------------------------------------------------------------- /src/routes/delegates/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/routes.rs -------------------------------------------------------------------------------- /src/routes/delegates/tests/json/backend_create_delegate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/tests/json/backend_create_delegate.json -------------------------------------------------------------------------------- /src/routes/delegates/tests/json/backend_delete_delegate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/tests/json/backend_delete_delegate.json -------------------------------------------------------------------------------- /src/routes/delegates/tests/json/backend_delete_delegate_safe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/tests/json/backend_delete_delegate_safe.json -------------------------------------------------------------------------------- /src/routes/delegates/tests/json/backend_list_delegates_of_safe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/tests/json/backend_list_delegates_of_safe.json -------------------------------------------------------------------------------- /src/routes/delegates/tests/json/expected_list_delegates_of_safe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/tests/json/expected_list_delegates_of_safe.json -------------------------------------------------------------------------------- /src/routes/delegates/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/delegates/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/delegates/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/health/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/health/mod.rs -------------------------------------------------------------------------------- /src/routes/health/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/health/routes.rs -------------------------------------------------------------------------------- /src/routes/health/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod routes; 2 | -------------------------------------------------------------------------------- /src/routes/health/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/health/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/hooks/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/hooks/handlers.rs -------------------------------------------------------------------------------- /src/routes/hooks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/hooks/mod.rs -------------------------------------------------------------------------------- /src/routes/hooks/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/hooks/routes.rs -------------------------------------------------------------------------------- /src/routes/hooks/tests/invalidate_caches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/hooks/tests/invalidate_caches.rs -------------------------------------------------------------------------------- /src/routes/hooks/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/hooks/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/hooks/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/hooks/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/hooks/tests/safes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/hooks/tests/safes.rs -------------------------------------------------------------------------------- /src/routes/messages/backend_models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/messages/backend_models.rs -------------------------------------------------------------------------------- /src/routes/messages/create_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/messages/create_message.rs -------------------------------------------------------------------------------- /src/routes/messages/frontend_models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/messages/frontend_models.rs -------------------------------------------------------------------------------- /src/routes/messages/get_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/messages/get_message.rs -------------------------------------------------------------------------------- /src/routes/messages/get_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/messages/get_messages.rs -------------------------------------------------------------------------------- /src/routes/messages/message_mapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/messages/message_mapper.rs -------------------------------------------------------------------------------- /src/routes/messages/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/messages/mod.rs -------------------------------------------------------------------------------- /src/routes/messages/update_message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/messages/update_message.rs -------------------------------------------------------------------------------- /src/routes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/mod.rs -------------------------------------------------------------------------------- /src/routes/notifications/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/notifications/handlers.rs -------------------------------------------------------------------------------- /src/routes/notifications/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/notifications/mod.rs -------------------------------------------------------------------------------- /src/routes/notifications/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/notifications/models.rs -------------------------------------------------------------------------------- /src/routes/notifications/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/notifications/routes.rs -------------------------------------------------------------------------------- /src/routes/notifications/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod routes; 2 | -------------------------------------------------------------------------------- /src/routes/notifications/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/notifications/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/safe_apps/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/converters.rs -------------------------------------------------------------------------------- /src/routes/safe_apps/handlers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/handlers.rs -------------------------------------------------------------------------------- /src/routes/safe_apps/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/mod.rs -------------------------------------------------------------------------------- /src/routes/safe_apps/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/models.rs -------------------------------------------------------------------------------- /src/routes/safe_apps/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/routes.rs -------------------------------------------------------------------------------- /src/routes/safe_apps/tests/json/response_safe_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/tests/json/response_safe_apps.json -------------------------------------------------------------------------------- /src/routes/safe_apps/tests/json/response_safe_apps_url_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/tests/json/response_safe_apps_url_query.json -------------------------------------------------------------------------------- /src/routes/safe_apps/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/safe_apps/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safe_apps/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/safes/converters.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/converters.rs -------------------------------------------------------------------------------- /src/routes/safes/handlers/estimations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/handlers/estimations.rs -------------------------------------------------------------------------------- /src/routes/safes/handlers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/handlers/mod.rs -------------------------------------------------------------------------------- /src/routes/safes/handlers/safes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/handlers/safes.rs -------------------------------------------------------------------------------- /src/routes/safes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/mod.rs -------------------------------------------------------------------------------- /src/routes/safes/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/models.rs -------------------------------------------------------------------------------- /src/routes/safes/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/routes.rs -------------------------------------------------------------------------------- /src/routes/safes/tests/json/last_collectible_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/tests/json/last_collectible_transfer.json -------------------------------------------------------------------------------- /src/routes/safes/tests/json/last_history_tx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/tests/json/last_history_tx.json -------------------------------------------------------------------------------- /src/routes/safes/tests/json/last_queued_tx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/tests/json/last_queued_tx.json -------------------------------------------------------------------------------- /src/routes/safes/tests/json/safe_state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/tests/json/safe_state.json -------------------------------------------------------------------------------- /src/routes/safes/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/safes/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/safes/tests/routes.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/details.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/safe_app_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/safe_app_info.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/summary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/summary.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/check_sender_or_receiver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/check_sender_or_receiver.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/data_size_calculation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/data_size_calculation.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/details.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/is_cancellation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/is_cancellation.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/map_status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/map_status.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/missing_signers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/missing_signers.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/safe_app_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/safe_app_info.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/summary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/summary.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/transaction_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/transaction_id.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/transaction_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/transaction_types.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/tests/transfer_type_checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/tests/transfer_type_checks.rs -------------------------------------------------------------------------------- /src/routes/transactions/converters/transaction_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/converters/transaction_id.rs -------------------------------------------------------------------------------- /src/routes/transactions/filters/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/filters/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/filters/module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/filters/module.rs -------------------------------------------------------------------------------- /src/routes/transactions/filters/multisig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/filters/multisig.rs -------------------------------------------------------------------------------- /src/routes/transactions/filters/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/filters/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/filters/transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/filters/transfer.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/commons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/commons.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/details.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/history.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/module.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/module.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/multisig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/multisig.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/preview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/preview.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/proposal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/proposal.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/queued.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/queued.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/tests/parse_id.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/tests/parse_id.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/tests/transactions_history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/tests/transactions_history.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/tests/transactions_queued.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/tests/transactions_queued.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/tests/transfers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/tests/transfers.rs -------------------------------------------------------------------------------- /src/routes/transactions/handlers/transfers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/handlers/transfers.rs -------------------------------------------------------------------------------- /src/routes/transactions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/models/details.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/models/details.rs -------------------------------------------------------------------------------- /src/routes/transactions/models/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/models/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/models/requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/models/requests.rs -------------------------------------------------------------------------------- /src/routes/transactions/models/summary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/models/summary.rs -------------------------------------------------------------------------------- /src/routes/transactions/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/routes.rs -------------------------------------------------------------------------------- /src/routes/transactions/tests/json/chain_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/json/chain_response.json -------------------------------------------------------------------------------- /src/routes/transactions/tests/json/contract_info_BID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/json/contract_info_BID.json -------------------------------------------------------------------------------- /src/routes/transactions/tests/json/contracts_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/json/contracts_response.json -------------------------------------------------------------------------------- /src/routes/transactions/tests/json/multisig_tx_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/json/multisig_tx_details.json -------------------------------------------------------------------------------- /src/routes/transactions/tests/json/post_confirmation_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/json/post_confirmation_result.json -------------------------------------------------------------------------------- /src/routes/transactions/tests/json/preview_response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/json/preview_response.json -------------------------------------------------------------------------------- /src/routes/transactions/tests/json/preview_response_data_decoded_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/json/preview_response_data_decoded_error.json -------------------------------------------------------------------------------- /src/routes/transactions/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/mod.rs -------------------------------------------------------------------------------- /src/routes/transactions/tests/preview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/preview.rs -------------------------------------------------------------------------------- /src/routes/transactions/tests/routes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/routes/transactions/tests/routes.rs -------------------------------------------------------------------------------- /src/tests/backend_url.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/backend_url.rs -------------------------------------------------------------------------------- /src/tests/json/balances/balance_compound_ether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/balances/balance_compound_ether.json -------------------------------------------------------------------------------- /src/tests/json/balances/balance_ether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/balances/balance_ether.json -------------------------------------------------------------------------------- /src/tests/json/chains/polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/polygon.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby_disabled_wallets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby_disabled_wallets.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby_enabled_features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby_enabled_features.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby_fixed_gas_price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby_fixed_gas_price.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby_multiple_gas_price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby_multiple_gas_price.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby_no_gas_price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby_no_gas_price.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby_rpc_auth_unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby_rpc_auth_unknown.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby_rpc_no_auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby_rpc_no_auth.json -------------------------------------------------------------------------------- /src/tests/json/chains/rinkeby_unknown_gas_price.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/chains/rinkeby_unknown_gas_price.json -------------------------------------------------------------------------------- /src/tests/json/collectibles/collectibles_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/collectibles/collectibles_page.json -------------------------------------------------------------------------------- /src/tests/json/collectibles/collectibles_paginated_empty_cgw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/collectibles/collectibles_paginated_empty_cgw.json -------------------------------------------------------------------------------- /src/tests/json/collectibles/collectibles_paginated_empty_txs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/collectibles/collectibles_paginated_empty_txs.json -------------------------------------------------------------------------------- /src/tests/json/collectibles/collectibles_paginated_page_1_cgw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/collectibles/collectibles_paginated_page_1_cgw.json -------------------------------------------------------------------------------- /src/tests/json/collectibles/collectibles_paginated_page_1_txs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/collectibles/collectibles_paginated_page_1_txs.json -------------------------------------------------------------------------------- /src/tests/json/collectibles/collectibles_paginated_page_2_cgw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/collectibles/collectibles_paginated_page_2_cgw.json -------------------------------------------------------------------------------- /src/tests/json/collectibles/collectibles_paginated_page_2_txs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/collectibles/collectibles_paginated_page_2_txs.json -------------------------------------------------------------------------------- /src/tests/json/commons/DOCTORED_data_decoded_multi_send_nested_delegate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/DOCTORED_data_decoded_multi_send_nested_delegate.json -------------------------------------------------------------------------------- /src/tests/json/commons/DOCTORED_data_decoded_nested_multi_sends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/DOCTORED_data_decoded_nested_multi_sends.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_add_owner_with_threshold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_add_owner_with_threshold.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_approve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_approve.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_change_master_copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_change_master_copy.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_change_threshold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_change_threshold.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_delete_guard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_delete_guard.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_disable_module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_disable_module.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_enable_module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_enable_module.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_exec_transaction_from_module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_exec_transaction_from_module.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_multi_send.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_multi_send.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_multi_send_single_inner_transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_multi_send_single_inner_transaction.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_nested_safe_interaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_nested_safe_interaction.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_remove_owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_remove_owner.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_set_fallback_handler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_set_fallback_handler.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_set_guard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_set_guard.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_swap_array_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_swap_array_values.json -------------------------------------------------------------------------------- /src/tests/json/commons/data_decoded_swap_owner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/data_decoded_swap_owner.json -------------------------------------------------------------------------------- /src/tests/json/commons/empty_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/commons/empty_page.json -------------------------------------------------------------------------------- /src/tests/json/contracts/contract_info_BID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/contracts/contract_info_BID.json -------------------------------------------------------------------------------- /src/tests/json/exchange/currency_rates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/exchange/currency_rates.json -------------------------------------------------------------------------------- /src/tests/json/master_copies/polygon_master_copies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/master_copies/polygon_master_copies.json -------------------------------------------------------------------------------- /src/tests/json/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/mod.rs -------------------------------------------------------------------------------- /src/tests/json/results/tx_details_with_origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/results/tx_details_with_origin.json -------------------------------------------------------------------------------- /src/tests/json/safe_apps/polygon_safe_app_url_query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/safe_apps/polygon_safe_app_url_query.json -------------------------------------------------------------------------------- /src/tests/json/safe_apps/polygon_safe_apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/safe_apps/polygon_safe_apps.json -------------------------------------------------------------------------------- /src/tests/json/safes/with_guard_safe_v130_l2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/safes/with_guard_safe_v130_l2.json -------------------------------------------------------------------------------- /src/tests/json/safes/with_module_transactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/safes/with_module_transactions.json -------------------------------------------------------------------------------- /src/tests/json/safes/with_modules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/safes/with_modules.json -------------------------------------------------------------------------------- /src/tests/json/safes/with_modules_and_high_nonce.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/safes/with_modules_and_high_nonce.json -------------------------------------------------------------------------------- /src/tests/json/safes/with_threshold_two.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/safes/with_threshold_two.json -------------------------------------------------------------------------------- /src/tests/json/tokens/bat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/tokens/bat.json -------------------------------------------------------------------------------- /src/tests/json/tokens/crypto_kitties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/tokens/crypto_kitties.json -------------------------------------------------------------------------------- /src/tests/json/tokens/dai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/tokens/dai.json -------------------------------------------------------------------------------- /src/tests/json/tokens/pv_memorial_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/tokens/pv_memorial_token.json -------------------------------------------------------------------------------- /src/tests/json/tokens/usdt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/tokens/usdt.json -------------------------------------------------------------------------------- /src/tests/json/transactions/backend_history_transaction_list_page.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/backend_history_transaction_list_page.json -------------------------------------------------------------------------------- /src/tests/json/transactions/backend_multisig_transfer_tx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/backend_multisig_transfer_tx.json -------------------------------------------------------------------------------- /src/tests/json/transactions/backend_queued_transaction_list_page_conflicts_393.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/backend_queued_transaction_list_page_conflicts_393.json -------------------------------------------------------------------------------- /src/tests/json/transactions/backend_queued_transaction_list_page_conflicts_394.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/backend_queued_transaction_list_page_conflicts_394.json -------------------------------------------------------------------------------- /src/tests/json/transactions/backend_queued_transaction_list_page_no_conflicts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/backend_queued_transaction_list_page_no_conflicts.json -------------------------------------------------------------------------------- /src/tests/json/transactions/creation_transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/creation_transaction.json -------------------------------------------------------------------------------- /src/tests/json/transactions/ethereum_inconsistent_token_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/ethereum_inconsistent_token_types.json -------------------------------------------------------------------------------- /src/tests/json/transactions/module_addOwnerWithThreshold_settings_change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/module_addOwnerWithThreshold_settings_change.json -------------------------------------------------------------------------------- /src/tests/json/transactions/module_erc20_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/module_erc20_transfer.json -------------------------------------------------------------------------------- /src/tests/json/transactions/module_erc721_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/module_erc721_transfer.json -------------------------------------------------------------------------------- /src/tests/json/transactions/module_ether_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/module_ether_transfer.json -------------------------------------------------------------------------------- /src/tests/json/transactions/module_newAndDifferentAddOwnerWithThreshold_settings_change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/module_newAndDifferentAddOwnerWithThreshold_settings_change.json -------------------------------------------------------------------------------- /src/tests/json/transactions/module_transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/module_transaction.json -------------------------------------------------------------------------------- /src/tests/json/transactions/module_transaction_failed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/module_transaction_failed.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_addOwnerWithThreshold_settings_change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_addOwnerWithThreshold_settings_change.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_approve_custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_approve_custom.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_awaiting_confirmations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_awaiting_confirmations.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_awaiting_confirmations_empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_awaiting_confirmations_empty.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_awaiting_confirmations_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_awaiting_confirmations_null.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_awaiting_confirmations_required_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_awaiting_confirmations_required_null.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_awaiting_execution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_awaiting_execution.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_cancellation_transaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_cancellation_transaction.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_confirmations_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_confirmations_null.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_erc20_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_erc20_transfer.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_erc20_transfer_delegate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_erc20_transfer_delegate.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_erc20_transfer_invalid_to_and_from.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_erc20_transfer_invalid_to_and_from.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_erc20_transfer_with_value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_erc20_transfer_with_value.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_erc721_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_erc721_transfer.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_erc721_transfer_cancelled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_erc721_transfer_cancelled.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_erc721_transfer_invalid_to_and_from.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_erc721_transfer_invalid_to_and_from.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_ether_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_ether_transfer.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_failed_transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_failed_transfer.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_newAndDifferentAddOwnerWithThreshold_settings_change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_newAndDifferentAddOwnerWithThreshold_settings_change.json -------------------------------------------------------------------------------- /src/tests/json/transactions/multisig_with_origin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transactions/multisig_with_origin.json -------------------------------------------------------------------------------- /src/tests/json/transfers/erc20_transfer_with_erc721_token_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/erc20_transfer_with_erc721_token_info.json -------------------------------------------------------------------------------- /src/tests/json/transfers/erc_20_transfer_unexpected_param_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/erc_20_transfer_unexpected_param_names.json -------------------------------------------------------------------------------- /src/tests/json/transfers/erc_20_transfer_with_token_info_incoming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/erc_20_transfer_with_token_info_incoming.json -------------------------------------------------------------------------------- /src/tests/json/transfers/erc_20_transfer_with_token_info_outgoing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/erc_20_transfer_with_token_info_outgoing.json -------------------------------------------------------------------------------- /src/tests/json/transfers/erc_20_transfer_without_token_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/erc_20_transfer_without_token_info.json -------------------------------------------------------------------------------- /src/tests/json/transfers/erc_721_transfer_with_token_info_incoming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/erc_721_transfer_with_token_info_incoming.json -------------------------------------------------------------------------------- /src/tests/json/transfers/erc_721_transfer_with_token_info_outgoing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/erc_721_transfer_with_token_info_outgoing.json -------------------------------------------------------------------------------- /src/tests/json/transfers/erc_721_transfer_without_token_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/erc_721_transfer_without_token_info.json -------------------------------------------------------------------------------- /src/tests/json/transfers/ether_transfer_incoming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/ether_transfer_incoming.json -------------------------------------------------------------------------------- /src/tests/json/transfers/ether_transfer_outgoing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/json/transfers/ether_transfer_outgoing.json -------------------------------------------------------------------------------- /src/tests/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/main.rs -------------------------------------------------------------------------------- /src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/tests/mod.rs -------------------------------------------------------------------------------- /src/utils/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/context.rs -------------------------------------------------------------------------------- /src/utils/cors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/cors.rs -------------------------------------------------------------------------------- /src/utils/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/errors.rs -------------------------------------------------------------------------------- /src/utils/http_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/http_client.rs -------------------------------------------------------------------------------- /src/utils/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/json.rs -------------------------------------------------------------------------------- /src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/mod.rs -------------------------------------------------------------------------------- /src/utils/tests/data_decoded_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/tests/data_decoded_utils.rs -------------------------------------------------------------------------------- /src/utils/tests/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/tests/errors.rs -------------------------------------------------------------------------------- /src/utils/tests/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/tests/json.rs -------------------------------------------------------------------------------- /src/utils/tests/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/tests/macros.rs -------------------------------------------------------------------------------- /src/utils/tests/method_names.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/tests/method_names.rs -------------------------------------------------------------------------------- /src/utils/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/tests/mod.rs -------------------------------------------------------------------------------- /src/utils/tests/transactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/tests/transactions.rs -------------------------------------------------------------------------------- /src/utils/transactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/transactions.rs -------------------------------------------------------------------------------- /src/utils/urls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/5afe/safe-client-gateway/HEAD/src/utils/urls.rs --------------------------------------------------------------------------------