https://goldrush-bitcoin-wallet-ui.vercel.app
Explore a live deployment of the template, showcasing its features and UI components in action.
Quickly create your own deployment on Vercel with one click. This will set up a clone of the template, ready to be customized. This will also be unlinked from the original template.
Note: You will need your GoldRush API key to set the
NEXT_PUBLIC_GOLDRUSH_API_KEY
environment variable.
This repo is set up as a public template so you can either Fork to create a linked repo to pull in updates, or select Use this template to create an unlinked copy that will not inherit any issues, PRs or updates from the original.
- Install package dependencies using:
npm install
. - Create an
.env.local
in your root directory and add your GoldRush API key:NEXT_PUBLIC_GOLDRUSH_API_KEY = "<YOUR_API_KEY>"
- Run the template with:
npm run dev
This template can be quickly customized from goldrush.config.ts
. By default, it looks like:
import { type GoldRushConfig } from "@/utils/types/shared.types";
export const goldrushConfig: GoldRushConfig = {
brand: {
title: "GoldRush",
subtitle: "Bitcoin Wallet & Portfolio UI",
logo_url: "/goldrush-logo.png",
github: "https://github.com/covalenthq/goldrush-bitcoin-wallet-ui",
},
theme: {
borderRadius: 6,
colors: {
dark: {
primary: "#FF4C8B",
background: "#000426",
foreground: "#FFFFFF",
secondary: "#868E96",
},
light: {
primary: "#FF4C8B",
background: "#FFFFFF",
foreground: "#1C2024",
secondary: "#868E96",
},
},
mode: "light",
},
gtag_id: process.env.NEXT_PUBLIC_GOOGLE_TAG_ID || null,
};
export default goldrushConfig;
-
brand
: This objects sets the title and logo in the top leftnav
bar.A 40x40px logo size is recommended.
-
theme
: This object is an extension of the GoldRush UI Kit theme config. Explore the theme settings here. -
gtag_id: This is an optional Google Analytics tag ID (format;
G-**********
) for tracking traffic to your Block Explorer.
- Real-time Wallet Details: Provides up-to-date information on bitcoin transactions, and balances for a wallet address in real time, giving users the latest data.
- Ready-to-use customizable template: Jumpstart your dApp journey with a beautifully designed UI that’s both intuitive and engaging.
- HD and Non-HD Address Support: Supports both HD and Non-HD bitcoin addresses.
- UI Template: The GoldRush Bitcoin Wallet & Portfolio UI can be customized with different colors and modes per deployment.
Contributions, issues and feature requests are welcome! Feel free to check the issues page.
Give us a ⭐️ if this project helps you!
This project is MIT licensed.