Hydrawallet

HYDRA light wallet and transaction signing client.

Что такое Hydrawallet?

Hydrawallet - это расширение Chrome, разработанное HydraChain.org, и его основная функция - "HYDRA light wallet and transaction signing client.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Hydrawallet

Скачайте файлы расширений Hydrawallet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Hydra browser-based light wallet

This webwallet can be used to interact with decentralized applications (DAPPs) running on the Hydra Chain. Simply connect this wallet with the DAPP interface and enjoy the full functionality.

Use cases, among others:

- Send and receive HYDRA
- Send and receive HRC20 tokens running on the Hydra Chain
- Interact with DAPPs built on the Hydra Chain
- Interact with the Hydra DEX to swap assets and add/remove liquidity
- Interact with the Hydra Bridge

This wallet supports the import of existing addresses as well as the creation of new ones.                    

Основная информация о расширении

Название Hydrawallet Hydrawallet
ID polcbnennmbhbdoafiicjgccofalcncl
Официальный URL https://chromewebstore.google.com/detail/hydrawallet/polcbnennmbhbdoafiicjgccofalcncl
Описание HYDRA light wallet and transaction signing client.
Размер файла 9.61 MB
Количество установок 1,453
Текущая Версия 0.0.10
Последнее Обновление 2024-01-31
Дата публикации 2021-07-08
Рейтинг 3.50/5 Всего 8 оценок
Разработчик HydraChain.org
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://hydrachain.org/
URL страницы помощи https://hydrachain.org/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hydrawallet",
    "description": "HYDRA light wallet and transaction signing client.",
    "version": "0.0.10",
    "manifest_version": 2,
    "icons": {
        "16": "images\/logo-main-16.png",
        "32": "images\/logo-main-32.png",
        "48": "images\/logo-main-48.png",
        "64": "images\/logo-main-64.png",
        "128": "images\/logo-main-128.png"
    },
    "browser_action": {
        "default_title": "Hydrawallet",
        "default_icon": "images\/logo-main-128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "hot-reload.js",
            "commons.all.js",
            "commons.exclude-contentscript.js",
            "commons.exclude-popup.js",
            "commons.exclude-inpage.js",
            "commons.background-contentscript.js",
            "commons.background-popup.js",
            "commons.background-inpage.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "commons.all.js",
                "commons.exclude-background.js",
                "commons.exclude-popup.js",
                "commons.exclude-inpage.js",
                "commons.background-contentscript.js",
                "commons.contentscript-popup.js",
                "commons.contentscript-inpage.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "commons.all.js",
        "commons.exclude-background.js",
        "commons.exclude-contentscript.js",
        "commons.exclude-popup.js",
        "commons.background-inpage.js",
        "commons.contentscript-inpage.js",
        "commons.popup-inpage.js",
        "inpage.js",
        "sign-tx.html",
        "optimize-utxos.html",
        "split-utxos.html",
        "sign-msg.html",
        "images\/logo.png",
        "css\/modal.css"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ]
    }
}