我无法找到将安全事务服务的托管实例添加到安全配置服务中的方法。怎么能做到呢?
我正在切换到使用安全基础设施。
但是,当运行步骤3(添加链信息)时,我的控制台抛出以下错误-
2022-02-01 11:40:24,177 [DEBUG] [MainProcess] Starting new HTTP connection (1): nginx:8000
2022-02-01 11:40:24,179 [DEBUG] [MainProcess] http://nginx:8000 "POST /v1/flush/some_random_token HTTP/1.1" 404 153
2022-02-01 11:40:24,179 [ERROR] [MainProcess] 404 Client Error: Not Found for url: http://nginx:8000/v1/flush/some_random_token
Installed 1 object(s) from 1 fixture(s)注意-我在互动控制台内。
我的config.json文件
[
{
"model": "chains.chain",
"pk": 421611,
"fields": {
"relevance": 100,
"name": "Arbitrum Testnet",
"short_name": "arb-rin",
"description": "",
"l2": true,
"rpc_authentication": "NO_AUTHENTICATION",
"rpc_uri": "https://rinkeby.arbitrum.io/rpc",
"safe_apps_rpc_authentication": "NO_AUTHENTICATION",
"safe_apps_rpc_uri": "https://rinkeby.arbitrum.io/rpc",
"block_explorer_uri_address_template": "https://testnet.arbiscan.io/address/{{address}}",
"block_explorer_uri_tx_hash_template": "https://testnet.arbiscan.io/tx/{{txHash}}",
"currency_name": "Ether",
"currency_symbol": "ETH",
"currency_decimals": 18,
"currency_logo_uri": "chains/4/currency_logo.jpg",
"transaction_service_uri": "http://localhost:8000/txs",
"vpc_transaction_service_uri": "http://localhost:8000/txs",
"theme_text_color": "#ffffff",
"theme_background_color": "#000000",
"ens_registry_address": null,
"recommended_master_copy_version": "1.3.0"
}
}
]发布于 2022-01-31 21:03:36
安全团队目前只添加它们承载的安全事务服务的实例。您必须承载您自己的配置服务实例和接口。
https://ethereum.stackexchange.com/questions/120403
复制相似问题