create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| const { Connection, Keypair, VersionedTransaction } = require ('@solana/web3.js'); | |
| const bs58 = require ('bs58'); | |
| const axios = require('axios'); | |
| // It is recommended that you use your own RPC endpoint. | |
| // This RPC endpoint is only for demonstration purposes so that this example will run. | |
| const connection = new Connection(''); | |
| const keypair = Keypair.fromSecretKey(bs58.decode('')); |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"