LgcyWallet

A Wallet Chrome Extension by LGCY platform.

LgcyWalletคืออะไร?

LgcyWallet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Abhilasha Singh และคุณลักษณะหลักของมันคือ "A Wallet Chrome Extension by LGCY platform."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LgcyWallet

ดาวน์โหลดไฟล์ส่วนขยาย LgcyWallet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        LGCY Extension Wallet :  A browser extension for chrome which offers various features for lgcy blockchain and platform users. Users can login into the platform by connecting their extension wallet without compromising private keys.

Following are the features of LGCY chrome extension 

Install Extension : Users can download and  install lgcy extension from chrome store.

Setup New Wallet : Users can set up a new wallet on extension by entering password and confirming password. Extension supports multi wallet so one can manage multiple wallets in lgcy extension.

Import Existing Wallet : Existing platform users can import their wallets by entering one of the following 
Private key
Mnemonic

Send and receive Coins/Tokens : Users can Send  USDL and LGCY along with other platform tokens. Extension will sign and broadcast the transaction signature on blockchain. To receive funds , the extension shows QR code and wallet address as well.

Price of LGCY and USDL : Inside extension users can see the current price of USDL and LGCY. Total portfolio value can be calculated which sum up usdl and lgcy assets value.

List All transactions : Users can see all transactions which include Send , Receive , Triggering Smart contract etc. It directly fetches the transaction from lgcy blockchain via RPC calls.

Asset Management / Token listing : Users can list their favorite tokens in asset list. There is a search box in the asset management screen where we can enter the contract address of the token and add it to the wallet .

Account Details : Users can see wallet address , balance of each assets , also they can redirect to blockchain explorer to see more details and transaction history.

Delete Account : Delete account only removes wallet from extension , not from blockchain platform , one can restore again by privatekeys or mnemonics if  gets deleted.

Header links in extension redirects to
Lgcy website
Lgcy blockchain explorer

Dapp support : By the help of extension  developers can Integrate smart contract calls on developers’ site also with users can use Dapps within the browser.

Extension Settings : 
Currency Settings
Preferred Language
Auto lock 
Logout

V1.0.6 Improvements :

Users can connect extension with own DApp, send USDL, other tokens and verify with extension
Users can Deploy their contracts after connecting extension
We can add NFT tokens and check their minting balance in extension
We have improved some functionalities for better experience
Improved login with extension.

Many more to come in next version                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LgcyWallet LgcyWallet
ID efhiaklffelfpggpagomfaaaflbkpohe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lgcywallet/efhiaklffelfpggpagomfaaaflbkpohe
คำอธิบาย A Wallet Chrome Extension by LGCY platform.
ขนาดไฟล์ 9.66 MB
จำนวนการติดตั้ง 177
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2023-03-16
วันที่เผยแพร่ 2022-06-08
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Abhilasha Singh
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://lgcyscan.network/
URL หน้าช่วยเหลือ https://lgcyscan.network/contact-us
URL หน้านโยบายความเป็นส่วนตัว https://lgcyscan.network/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LgcyWallet",
    "version": "1.0.6",
    "version_name": "1.0.6",
    "description": "A Wallet Chrome Extension by LGCY platform.",
    "author": "LGCY",
    "background": {
        "service_worker": ".\/dist\/backgroundScriptLgcy.js"
    },
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": {
        "default_popup": "packages\/popup\/build\/index.html",
        "default_title": "LgcyWeb"
    },
    "icons": {
        "128": "packages\/popup\/static\/Logo.png"
    },
    "minimum_chrome_version": "92",
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "dist\/contentScriptLgcy.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/pageHookLgcy.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}