Gnosis-Safe

安全基礎設施步驟 3 中的錯誤

  • February 3, 2022

我正在使用安全基礎設施在 Arbitrum-rinkeby 上設置 gnosis-safe。

但是,在執行第 3 步(添加您的鏈資訊)時,我的控制台會拋出以下錯誤 -

root@1fd61b7d8e90:/app/src# python manage.py loaddata chain.json
2022-02-02 07:08:19,819 [INFO] [MainProcess] Chain update. Triggering CGW webhook
2022-02-02 07:08:19,819 [DEBUG] [MainProcess] Converted retries value: 3 -> Retry(total=3, connect=None, read=None, redirect=None, status=None)
2022-02-02 07:08:19,821 [DEBUG] [MainProcess] Starting new HTTP connection (1): nginx:8000
2022-02-02 07:08:19,823 [DEBUG] [MainProcess] http://nginx:8000 "POST /v1/flush/some_random_token HTTP/1.1" 404 153
2022-02-02 07:08:19,823 [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)

我可以確認,當我執行curl http://localhost:8000/cfg/api/v1/chains時,我添加的 ChainInfo 沒有出現。相反,它返回**未找到頁面 (404)**錯誤。

作為參考,這是我的 chain.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://arb-rinkeby.g.alchemy.com/v2/Blablabla",
           "safe_apps_rpc_authentication": "NO_AUTHENTICATION",
           "safe_apps_rpc_uri": "https://arb-rinkeby.g.alchemy.com/v2/Blablabla",
           "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"
       }
   }
]

載入 json 似乎是一個問題,我們正在處理它,同時您可以使用http://localhost:8000/cfg/admin添加您的鏈

引用自:https://ethereum.stackexchange.com/questions/120537