# keystation **Repository Path**: jjhoc/keystation ## Basic Information - **Project Name**: keystation - **Description**: 🔑 Keystation - decentralized keychain-bassed authenticator enables browsing blockchains built with Cosmos SDK - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

Cosmostation logo

Keystation

**:alien: Developed / Developing by** [Cosmostation](https://www.cosmostation.io/) ## Overview Keystation is a decentralized keychain-based authenticator that **DOES NOT require any installation**. User keys are securely stored in the web browser Keychain, allowing for users to conveniently sign transactions for networks and decentralized applications built with the Cosmos SDK. Keystation can be used as a secure and convenient authentication and key management tool for web login, decentralized exchanges, decentralized applications, and various services built with the Cosmos SDK.
keystation1 keystation2 keystation3
## Import ``` ``` ## Usage ```js // initializing configuration var keystation = new Keystation(); keystation.client = "YOUR_WEB_URL"; keystation.lcd = "https://lcd-cosmos-free.cosmostation.io"; keystation.path = "44/118/0/0/0"; // The account parameter is required for users having multiple keychain accounts. var keystationAccount = ""; ``` ```js // open popup window for sign-in var prefix = "cosmos"; // Cosmos prefix: cosmos, Iris prefix: iaa var popup = keystation.openWindow("signin", prefix); ``` ```js // generate a transaction var txJson = {"account_number":"18012","chain_id":"cosmoshub-3","fee":{"amount":[{"amount":"5000","denom":"uatom"}],"gas":"200000"},"memo":"","msgs":[{"type":"cosmos-sdk/MsgSend","value":{"amount":[{"amount":"10000","denom":"uatom"}],"from_address":"cosmos1z67fshyr48pa9a6htdz4qd0zullfk6y0fgvxv7","to_address":"cosmos10nv3yj0jdxf02vxyc0tavf97fdvppdth6wmcn3"}}],"sequence":"24"}; var txJsonStr = JSON.stringify(txJson); var popup = keystation.openWindow("transaction", txJsonStr, keystationAccount); ``` ```js // add an EventListener window.addEventListener("message", function(e) { if (e.origin != "https://keystation.cosmostation.io") return; console.log(e.data); // e.data.account : User's keychain account. Remember this account! keystationAccount = e.data.account; } , false); ``` If the user is log in as Alice, he or she should use Alice account to sign transaction. ## Supporting Transaction Message Types You can find currently supporting meesage types in [our CosmosJS library](https://github.com/cosmostation/cosmosjs/tree/master/docs/msg_types) ## How to Create txJson ```js // CosmosJS supports to create tx for Cosmos cosmos.getAccounts(address).then(data => { let stdSignMsg = cosmos.newStdMsg({ msgs: [ { type: "cosmos-sdk/MsgSend", value: { amount: [ { amount: String(100000), denom: "uatom" } ], from_address: address, to_address: "cosmos18vhdczjut44gpsy804crfhnd5nq003nz0nf20v" } } ], chain_id: chainId, fee: { amount: [ { amount: String(5000), denom: "uatom" } ], gas: String(200000) }, memo: "", account_number: String(data.result.value.account_number), sequence: String(data.result.value.sequence) }); console.log(stdSignMsg.json); // txJson }) ``` ## Security Keystation stores user mnemonic phrase on a key management system, Keychain in Chrome and Safari. A user is the only one who can access the keychain, and no third party is granted access. User mnemonic phrase is encrypted with AES algorithm for higher security before being stored. A PIN set by the user is required in order to access the encrypted mnemonic phrase. * [How secure is Chrome storing a password?](https://security.stackexchange.com/questions/170481/how-secure-is-chrome-storing-a-password) * [Manage saved passwords](https://support.google.com/chrome/answer/95606?co=GENIE.Platform%3DDesktop&hl=en) ## Issues We welcome any type of issues. Please provide information in detail when you post issues or bugs. ## Contribution We welcome any contributions, suggestions, improvements, or feature requests. There will be `CONTRIBUTING.md` that describes rules and procedure. It will be updated soon. ## Services and Community by Cosmostation - [Official Website](https://www.cosmostation.io) - [Mintscan Explorer](https://www.mintscan.io) - [Web Wallet](https://wallet.cosmostation.io) - [Android Wallet](https://bit.ly/2BWex9D) - [iOS Wallet](https://apple.co/2IAM3Xm) - [Telegram - International](https://t.me/cosmostation) - [Kakao - Koreans](https://open.kakao.com/o/g6KKSe5)