npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

wait4wallet

v1.0.1

Published

The purpose of this project is to provide a tool to the crypto enthusiats who want to delay the access to their crypto wallet.

Downloads

5

Readme

Wait4Wallet

Delayed Access Crypto Wallet

Presentation

The purpose of this project is to provide a tool to the crypto enthusiats who want to delay the access to their crypto wallet.

In order to generate your delayed access wallet you need to dedicate as much time for the creation than for the access.

If you want to delay the access to your wallet to about 1 hour, then you need to dedicate 1 hour to build it.

Building

For a given time amount of time :

walletA -> walletB + secret
  • The wallet A is your backup wallet
  • The wallet B is your delayed access wallet
  • Keep the generated secret along the backup wallet

Accessing

walletA + secret -> walletB
  • For a given hardware, the accessing time should be slightly equal to the time dedicated to build the wallet in the first place.

Installation

CLI

npm install -g wait4it

Node.js

npm install wait4it

CLI usage

Build a delayed access wallet

From a mnemonic

wait4wallet --duration <duration> --mnemonic <mnemonic>

$ wait4wallet --duration 1h --mnemonic "protect private life [...]"

0%      1 hour left 
// 1h hour of computation 
100%    Completed.

Mnemonic :
detail error [...] potato

Master private key :
xprv[...]p1v

Master public key :
xpub[...]UFS

Rebuild this wallet in 1 hour with :
wait4wallet --secret o4l --mnemonic "protect private life [...]"

From a xprv

wait4wallet --duration <duration> --xprv <xprv>

$ wait4wallet --duration 1h --xprv xprv[...]sdj

0%      1 hour left 
// 1h hour of computation 
100%    Completed.

Master private key :
xprv[...]ofd

Master public key :
xpub[...]Wsd

Rebuild this wallet in 1 hour with :
wait4wallet --secret dDg --mnemonic xprv[...]sdj

Access a delayed wallet

From a mnemonic

wait4wallet --secret <secret> --mnemonic <mnemonic>

$ wait4wallet --secret dR4 --mnemonic "protect private life [...]"

0%      1 hour left 
// 1h hour of computation 
100%    Completed.

Mnemonic :
detail error [...] potato

Master private key :
xprv[...]p1v

Master public key :
xpub[...]UFS

From a private key

wait4wallet access-xprv <secret> <xprv>

$ wait4wallet --secret dR4 --xprv xprv[...]1sd

0%      1 hour left 
// 1h hour of computation 
100%    Completed.

Mnemonic :
detail error [...] potato

Master private key :
xprv[...]pl2

Master public key :
xpub[...]Ua4

Programmatic usage

Use this library in your project

Build

From Mnemonic

const {Wait4Wallet} = require("wait4wallet")

const wallet = Wait4Wallet
    .fromMnemonic()
    .withDelay('1h')

const newMnemonic = wallet.run('protect private life [...]')
// 1 hour of computation
const secret = wallet.secret
// Fund the wallet & store secret

From private key

const {Wait4Wallet} = require("wait4wallet")

const wallet = Wait4Wallet
    .fromPrivateKey()
    .withDelay('1h')

const newXprv = wallet.run('xprvsdf[...]poi')
// 1 hour of computation
const secret = wallet.secret
// Fund the wallet & store secret

Access

From mnemonic


const {Wait4Wallet} = require("wait4wallet")

const wallet = Wait4Wallet
    .fromMnemonic()
    .withSecret('5tSh')

const newMnemnic = wallet.run('install scatter [...] usage')  // take 1h to perform
// Access your fund

From private key


const {Wait4Wallet} = require("wait4wallet")

const wallet = Wait4Wallet
    .fromPrivateKey()
    .withSecret('5tSh')

const newXprv = wallet.run('xprvstsh[...]nkmt') // take 1h to perform
// Access your fund

Under the hood

The implementation of this tool is dead simple.

For a given amount of time, the tool is looping on BIP85 derivation from an initial wallet, once the time limit is reached, the tool print out the last derivation and the number of iterations associated.

It's then always possible to access this wallet knowing the initial wallet and the iteration count with the required amount of time.

The secret is this number converted to base 36.

Don't trust, verify

Because of the cryptographic nature of this project I encourage you to audit the source code if you consider to use it for your own wallets.

https://github.com/Yug-Damon/wait-wallet