This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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') |