Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# Solana validator remote identity transfer script v1.0
#
# Before starting, both validators must be running and caught up.
# For the best experience, use ssh keys without a password.
#
# Created: 30 Sep 2023 by STEVLTH
# Discord: .stevlth
# Telegram: https://t.me/STEVLTH
@Vovans
Vovans / left-pad.js
Created March 28, 2016 13:02
left-pad
module.exports = leftpad;
function leftpad (str, len, ch) {
str = String(str);
var i = -1;
if (!ch && ch !== 0) ch = ' ';
len = len - str.length;
while (++i < len) {
str = ch + str;
}
return str;