https://github.com/madfish-solutions/templewallet-extension
🔐💰Cryptocurrency wallet for Tezos blockchain as Web extension for your Browser.
https://github.com/madfish-solutions/templewallet-extension
blockchain cryptocurrency defi extension temple templewallet tezos wallet
Last synced: 16 days ago
JSON representation
🔐💰Cryptocurrency wallet for Tezos blockchain as Web extension for your Browser.
- Host: GitHub
- URL: https://github.com/madfish-solutions/templewallet-extension
- Owner: madfish-solutions
- License: mit
- Created: 2019-09-17T11:05:10.000Z (over 5 years ago)
- Default Branch: development
- Last Pushed: 2025-04-17T17:31:39.000Z (17 days ago)
- Last Synced: 2025-04-18T01:20:54.167Z (16 days ago)
- Topics: blockchain, cryptocurrency, defi, extension, temple, templewallet, tezos, wallet
- Language: TypeScript
- Homepage: https://templewallet.com
- Size: 39.8 MB
- Stars: 188
- Watchers: 12
- Forks: 67
- Open Issues: 44
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Audit: audit-deps.js
Awesome Lists containing this project
README
# Temple - Tezos Wallet
Cryptocurrency wallet for [Tezos blockchain](https://tezos.com) as Web Extension for your Browser.
Providing ability to manage NFT, tez tokens and interact with dApps.
## ▶️ Install
You can install Temple Wallet right now: https://templewallet.com/download.
## Browser Support
| [](https://chrome.google.com/webstore/detail/temple-tezos-wallet-ex-th/ookjlbkiijinhpmnjffcofjonbfbgaoc) | [](https://addons.mozilla.org/en-US/firefox/addon/temple-wallet/) | [](https://chrome.google.com/webstore/detail/temple-tezos-wallet-ex-th/ookjlbkiijinhpmnjffcofjonbfbgaoc) | [](https://chrome.google.com/webstore/detail/temple-tezos-wallet-ex-th/ookjlbkiijinhpmnjffcofjonbfbgaoc) | [](https://chrome.google.com/webstore/detail/temple-tezos-wallet-ex-th/ookjlbkiijinhpmnjffcofjonbfbgaoc) |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| 49 & later ✔ | 52 & later ✔ | Latest ✔ | 36 & later ✔ | 79 & later ✔ |## 🚀 Quick Start
Ensure you have:
- [Node.js](https://nodejs.org) 10 or later installed
- [Yarn](https://yarnpkg.com) v1 or v2 installedThen run the following:
### 1) Clone the repository
```bash
git clone https://github.com/madfish-solutions/templewallet-extension && cd templewallet-extension
```### 2) Install dependencies
```bash
yarn
```### 3) Create `.env` file
Make copy of `.env.dist` and do changes if needed.
### 4) Build
Builds the extension for production to the `dist` folder.
It correctly bundles in production mode and optimizes the build for the best performance.```bash
# for Chrome by default
yarn build
```Optional for different browsers:
```bash
# for Chrome directly
yarn build:chrome
# for Firefox directly
yarn build:firefox
# for Opera directly
yarn build:opera# for all at once
yarn build-all
```### 5) Load extension to your Browser

## 🧱 Development
```bash
yarn start
```Runs the extension in the development mode for Chrome target.
It's recommended to use Chrome for developing.### Debugging
To enable Redux DevTools during development, specify some port in the `.env` file before running `yarn start` like so:
```toml
REDUX_DEVTOOLS_PORT=8000
```Install [`@redux-devtools/cli`](https://github.com/reduxjs/redux-devtools) globally:
```bash
yarn global add @redux-devtools/cli
```Then open an explorer at previously specified port:
```bash
redux-devtools --open --port=8000
```> Other UI options like `--open=browser` are available.
Go to settings to specify port one more time.