Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chainapsis/keplr-example
https://github.com/chainapsis/keplr-example
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chainapsis/keplr-example
- Owner: chainapsis
- Created: 2020-05-21T18:47:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-06T08:38:47.000Z (3 months ago)
- Last Synced: 2024-08-06T10:36:16.869Z (3 months ago)
- Language: TypeScript
- Homepage: https://example.keplr.app
- Size: 79.8 MB
- Stars: 56
- Watchers: 5
- Forks: 63
- Open Issues: 39
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-ccamel - chainapsis/keplr-example - (TypeScript)
README
# Keplr Example
This is a simple example if how to use Keplr extension.## Requirements
- Node.js v18+
- protoc v21.3 (recommended)
```bash
# This script is example for mac arm64 user. for other OS, replace URL(starts with https://..) to be matched with your OS from https://github.com/protocolbuffers/protobuf/releases/tag/v21.3
curl -Lo protoc-21.3.zip https://github.com/protocolbuffers/protobuf/releases/download/v21.3/protoc-21.3-osx-aarch_64.zip
unzip protoc-21.3.zip -d $HOME/protoc
cp -r $HOME/protoc/include /usr/local
cp -r $HOME/protoc/bin /usr/local
```## Local Development
Install dependencies
```bash
yarn install
yarn proto-build
```Run development Server
```bash
yarn start
```