All Projects → gangan1345 → Wallet Eth Android

gangan1345 / Wallet Eth Android

Licence: apache-2.0
wallet-eth 以太坊代币钱包 助记词 私钥 keystore 转账

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Wallet Eth Android

ETH Wallet Kotlin
(Deprecated) 不再维护,新项目参考https://github.com/snailflying/ETHWallet
Stars: ✭ 20 (+17.65%)
Mutual labels:  wallet, eth
sign-in-with-ethereum
Minimal example of sign in with Ethereum. Compatible with web3 browsers.
Stars: ✭ 25 (+47.06%)
Mutual labels:  wallet, eth
Wallet3
A secure mobile wallet for web3
Stars: ✭ 13 (-23.53%)
Mutual labels:  wallet, eth
Plutus
An automated bitcoin wallet collider that brute forces random wallet addresses
Stars: ✭ 404 (+2276.47%)
Mutual labels:  wallet
Go Binance
A Go SDK for Binance API
Stars: ✭ 441 (+2494.12%)
Mutual labels:  eth
Service My Wallet V3
Blockchain Wallet API Service
Stars: ✭ 644 (+3688.24%)
Mutual labels:  wallet
Multisignaturewallet
311 byte EIP712 Signing Compliant Delegate-Call Enabled MultiSignature Wallet for the Ethereum Virtual Machine
Stars: ✭ 16 (-5.88%)
Mutual labels:  wallet
Ethereumkit
EthereumKit is a free, open-source Swift framework for easily interacting with the Ethereum.
Stars: ✭ 400 (+2252.94%)
Mutual labels:  wallet
Coinbin
Javascript Bitcoin Wallet. Supports Multisig, Stealth, HD, SegWit, Bech32, Time Locked Addresses, RBF and more!
Stars: ✭ 694 (+3982.35%)
Mutual labels:  wallet
Skycoin
Skycoin Core and Wallet
Stars: ✭ 549 (+3129.41%)
Mutual labels:  wallet
Web3modal
A single Web3 / Ethereum provider solution for all Wallets
Stars: ✭ 515 (+2929.41%)
Mutual labels:  wallet
Burner Wallet
🔥👛Burner Wallet to move crypto quickly in a web browser. Sweep to cold storage when you get home. 🏠👨🏻‍🚒
Stars: ✭ 448 (+2535.29%)
Mutual labels:  wallet
Ethereumjs Wallet
Utilities for handling Ethereum keys
Stars: ✭ 653 (+3741.18%)
Mutual labels:  wallet
Eth Crypto
Cryptographic javascript-functions for ethereum and tutorials to use them with web3js and solidity
Stars: ✭ 420 (+2370.59%)
Mutual labels:  eth
Stratisbitcoinfullnode
Bitcoin full node in C#
Stars: ✭ 757 (+4352.94%)
Mutual labels:  wallet
Laravel Wallet
Easy work with virtual wallet
Stars: ✭ 401 (+2258.82%)
Mutual labels:  wallet
Php Pkpass
💳 PHP class for creating passes for Wallet on iOS.
Stars: ✭ 674 (+3864.71%)
Mutual labels:  wallet
Token Profile
Blockchain coin and token profile collection
Stars: ✭ 518 (+2947.06%)
Mutual labels:  wallet
Bitshares Ui
Fully featured Graphical User Interface / Reference Wallet for the BitShares Blockchain
Stars: ✭ 505 (+2870.59%)
Mutual labels:  wallet
Nbminer
NVIDIA & AMD GPU Miner for ETH, RVN, GRIN, BEAM, CFX, AE, SERO
Stars: ✭ 568 (+3241.18%)
Mutual labels:  eth

wallet-eth-android

wallet-eth 以太坊代币钱包 助记词 私钥 keystore 转账(bip39、bip32、bip44、web3j)

生成钱包地址

// 生成钱包地址
Wallet wallet = WalletManager.generateWalletAddress();
// 根据助记词获取地址
WalletManager.generateAddress(wallet.getMnemonic());
// 通过助记词获取私钥
WalletManager.generatePrivateKey(wallet.getMnemonic());
// 生成钱包keystore
Wallet wallet1 = WalletManager.generateWalletKeystore("123456", wallet.getMnemonic());
// 通过keystore 获取私钥
WalletManager.generatePrivateKey("123456", wallet1.getKeystore());

助记词:glare pave fatal catch cake large mad exit any hood expose neither
地址: 0x3a5c0fe05f7515a8283b1d2a1a241cbabafbf094
keystore: {"address":"3a5c0fe05f7515a8283b1d2a1a241cbabafbf094","id":"13b913ac-2d19-4473-8515-d6c54fe9bad8","version":3,"crypto":{"cipher":"aes-128-ctr","ciphertext":"66f392a77aff1f0c341519561c9eb5857ef44255b35d1781f2e3fd59a65e624f","cipherparams":{"iv":"dc81d0a5b103137c0b2f728a54ce6c17"},"kdf":"scrypt","kdfparams":{"dklen":32,"n":4096,"p":6,"r":8,"salt":"7dfa3c3de3cacfab8c93bd1790dce2476696222f10153913a7f0632b4026f914"},"mac":"2419dbdd294b4fe0bde158de2fefb218237b66316c0523911c18dad0828669f8"}}

转账

String hash = WalletManager.sendTransactionByMnemonic("0x8c10a04b0ce0414b089efe89e311f75fbf964563",
             "volume final loyal match glare era olive size craft deposit palm label",
             "0xe94791399f3a0e6d9ac23e64102005efef1bb424", String.valueOf(0.1));


//        WalletManager.sendTransactionByMnemonicAsync("0x8c10a04b0ce0414b089efe89e311f75fbf964563",
//                "volume final loyal match glare era olive size craft deposit palm label",
//                "0xe94791399f3a0e6d9ac23e64102005efef1bb424", String.valueOf(0.1), null);

相关查询

// 获取版本信息
WalletManager.getClientVersion();
// ethBalance 以太坊余额
WalletManager.getEthBalance(address);
// noce
WalletManager.getNonce(address);
// name
WalletManager.getTokenName(address);
// symbol
WalletManager.getTokenSymbol(address);
// decimals
WalletManager.getTokenDecimals(address);
// totalsupply
WalletManager.getTokenTotalSupply(address);
// token balance 代币余额
WalletManager.getTokenBalance(address);
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].