Skip to content

Instantly share code, notes, and snippets.

@ebirbe
ebirbe / banks_venezuela.csv
Created March 10, 2025 23:55 — forked from arodu/banks_venezuela.csv
códigos de bancos en venezuela
Código Nombre
0102 BANCO DE VENEZUELA
0156 100% BANCO
0172 BANCAMIGA BANCO MICROFINANCIERO C A
0114 BANCARIBE
0171 BANCO ACTIVO
0166 BANCO AGRICOLA DE VENEZUELA
0175 BANCO BICENTENARIO DEL PUEBLO
0128 BANCO CARONI
0163 BANCO DEL TESORO
@ebirbe
ebirbe / convert.js
Created August 30, 2023 12:34 — forked from miracle2k/convert.js
Convert Ethereum private keys to EOS private keys (the "Fallback method" to access your EOS tokens).
// Extracted from https://github.com/eoscafe/eoskeyio
const ecc = require('eosjs-ecc');
const eth = require('ethereumjs-util');
let ethereumPrivateKey = 'FILL THIS IN';
if(eth.isValidPrivate(Buffer.from(ethereumPrivateKey, 'hex'))) {
let ethereumAddress = '0x' + eth.privateToAddress(Buffer.from(ethereumPrivateKey, 'hex')).toString('hex')
let ethereumPublicKey = eth.privateToPublic(Buffer.from(ethereumPrivateKey, 'hex')).toString('hex')