Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Stoner19
Stoner19 / gist:7b2885b3bcc8d5691e76455f2fff4fb6
Last active December 29, 2020 23:39 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone <git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git>

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream <git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git>
git fetch upstream

Tezori/Galleon wallet file reader

using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace Base58ReverseEncoder
{