All Projects → gangan1345 → wallet-eos

gangan1345 / wallet-eos

Licence: Apache-2.0 license
wallet-eos EOS钱包 助记词 私钥 转账

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to wallet-eos

ethereum-hdwallet
CLI and Node.js library for Ethereum HD Wallet derivations from mnemonic
Stars: ✭ 44 (+57.14%)
Mutual labels:  wallet, mnemonic
mnemonic-sdk
Mnemonic bip39 bip32 bip44 生成助记词 私钥
Stars: ✭ 25 (-10.71%)
Mutual labels:  wallet, mnemonic
willwallet
以太坊钱包
Stars: ✭ 17 (-39.29%)
Mutual labels:  wallet, mnemonic
ChainWallet
一个以研究技术为目地的基础项目,也只有最基本 Bitcoin、Ethereum 、EOS 相关的加密算法。
Stars: ✭ 26 (-7.14%)
Mutual labels:  mnemonic, eos
Simpleos
EOSIO Blockchain Interface & Wallet
Stars: ✭ 157 (+460.71%)
Mutual labels:  wallet, eos
Anchor
EOSIO Desktop Wallet and Authenticator
Stars: ✭ 381 (+1260.71%)
Mutual labels:  wallet, eos
EOSWallet
🔐EOS Wallet: Manage your EOS accounts with steroids :)
Stars: ✭ 36 (+28.57%)
Mutual labels:  wallet, eos
hd-address
An extensible HD Wallet Address management utility
Stars: ✭ 22 (-21.43%)
Mutual labels:  wallet, mnemonic
Tiny.scatter
Scatter compatible eos injection library
Stars: ✭ 31 (+10.71%)
Mutual labels:  wallet, eos
Blockchain
区块链技术
Stars: ✭ 28 (+0%)
Mutual labels:  wallet, eos
Blockchainwallet Crypto
比特币、以太坊公私钥生成以及签名,长时间不维护可移步 https://github.com/QuincySx/ChainWallet
Stars: ✭ 183 (+553.57%)
Mutual labels:  wallet, eos
EosProxyServer
A full-functional backend server of EOS wallet.
Stars: ✭ 36 (+28.57%)
Mutual labels:  wallet, eos
trading-post
💸 Verto's decentralised exchange mediator
Stars: ✭ 18 (-35.71%)
Mutual labels:  wallet
Nault
⚡ The most advanced Nano wallet with focus on security, speed and robustness
Stars: ✭ 228 (+714.29%)
Mutual labels:  wallet
unity3d-blockchain-wallet
Create wallets and perform transactions on custom ERC20 tokens via Unity3D
Stars: ✭ 33 (+17.86%)
Mutual labels:  wallet
hexa
Hexa Wallet. A simple bitcoin wallet made to be used with Friends and Family. Lightning. Gifts and more.
Stars: ✭ 85 (+203.57%)
Mutual labels:  wallet
cryptoplease-dart
Dart and Flutter apps and libraries maintained by Espresso Cash (Formerly Crypto Please) team for Solana.
Stars: ✭ 188 (+571.43%)
Mutual labels:  wallet
tokenomia
Tokenomia is built for the Cardashift ICO, it aims to simplify the use of Native Tokens and Smart Contracts above the Cardano Platform. Cardashift is a community-driven startup platform that raises funds, builds and accelerates startups that solve social and environmental problems.
Stars: ✭ 84 (+200%)
Mutual labels:  wallet
SimpleCoin
A simple cryptocurrency application for educational purposes only.
Stars: ✭ 13 (-53.57%)
Mutual labels:  wallet
bitcoin-transactions
Javascript implementation of the Bitcoin protocol for any Bitcoin based coins, on server and inside browsers, discover and move/manage your coins by yourself: Bitcoin transactions made simple for standard or multisig wallets, segwit and bech32 are supported, create and send by your own your Bitcoin, Bitcoin Cash, Zcash, Litecoin, DOGE, Dash, etc…
Stars: ✭ 97 (+246.43%)
Mutual labels:  wallet

wallet-eos

wallet-eos EOS钱包 助记词 私钥 转账

生成助记词 私钥 公钥

// 生成助记词
String mnemonic = MnemonicUtils.generateMnemonic();
System.out.println("mnemonic:"+ mnemonic);

// 生成种子
byte[] seed = MnemonicUtils.generateSeed(mnemonic, "");
System.out.println("seed:"+ Numeric.toHexString(seed));

// bip44 bip32 私钥
byte[] privateKeyBytes = KeyPairUtils.generatePrivateKey(seed, KeyPairUtils.CoinTypes.EOS);
System.out.println("privateKeyBytes:"+ Numeric.toHexString(privateKeyBytes));

// 生成EOS私钥
String pk = EccTool.privateKeyFromSeed(privateKeyBytes);
System.out.println("private key :" + pk);

// 生成EOS公钥
String pu = EccTool.privateToPublic(pk);
System.out.println("public key :" + pu);

mnemonic:unfair raccoon electric valve session fish catch near industry increase pipe nominee
seed:0xb1c8816b33c7a42afe2f41bbe83d197962eb31de1cbc8ce647c64bf30a803dda859207d2a0cc098229f7874692dee7e3a82af3cfc6b2fe9ec2af32291183cd73
privateKeyBytes:0xc41e9c899be9e822e918b0206709c24f56ae174a6244676eb71c024cd4a0ad2a
private key :5JQ5H8ktrPeHyGU4gmEDUTK7jM8Te2QXc4J1NzeQk6ZinASQvCT
public key :EOS8EzuaoP3kELe2WorLyMwKRD3KNypJzGomXTjg6dB1tGEGitgKt

 String accountA = "a1111111111a", accountB = "a1111111111b";
 String privateKeyA = "5JVubbh5s6RP5zunU8TVEdhQKBTY4BNkbsxP2abbjCQi4HqpUvG", privateKeyB = "5JbZ4RyKGqNNrhRzyDVjRdERbjZMJfe1XTnsLqqB1hXZCLH5Mgd";

 // 随机生成EOS账号
 String account = EosUtils.generateAccount();
 System.out.println("account :" + account + ", eos = " + EosUtils.isEosAccount(account));

 // 查询系统代币总额
 WalletManager.querySupplys();

 // 生成EOS账号(随机)
 WalletManager.generateWalletAddress();

 // 生成EOS账号
 WalletManager.generateWalletAddress("a1111111111b");

 // 查询账号
 WalletManager.queryAccount(accountA);

 WalletManager.queryAccount(accountB);

 // 转账
 WalletManager.transfer(accountA, privateKeyA, accountB, "1.0000 SYS", "xxx");

 WalletManager.up(accountA, privateKeyA, accountB, "1.0000 SYS");
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].