token-core-android icon indicating copy to clipboard operation
token-core-android copied to clipboard

a blockchain private key management library on android

Results 17 token-core-android issues
Sort by recently updated
recently updated
newest added

我选择导入btc钱包。私钥是ETH的也可以导入?有没有方法校验私钥合法性

public EOSTransaction(byte[] txBuf) { this.txBuf = txBuf; } txBuf是什么 能说明白点吗 https://github.com/consenlabs/token-core-ios/issues/16 没看懂? txBuf是通过abi_json_to_bin 返回的 "data": { "binargs": "108434ea2669d44d40860839ab97b37a0a0000000000000004454f530000000003646464" }, 的这个吗?

public EthereumTransaction(BigInteger nonce, BigInteger gasPrice, BigInteger gasLimit, String to, BigInteger value, String data) data是什么参数?如何转eth代币?

public BitcoinTransaction(String to, int changeIdx, long amount, long fee, ArrayList outputs) {

WalletManager persistWallet方法中调用的Identity.getCurrentIdentity().addWallet没有overwirte

bug

使用importWalletFromPrivateKey导入钱包, Metadata metadata = new Metadata("ETHEREUM", Network.MAINNET, "name", "ETH", ""); metadata.setSource(Metadata.FROM_PRIVATE); Wallet wallet = WalletManager.importWalletFromPrivateKey(metadata, privateKey, password, true); 成功导入后,导出助记词 MnemonicAndPath mnemonicAndPath = WalletManager.exportMnemonic(walletID, password); 返回对象mnemonicAndPath为空

UTXO(String txHash, int vout, long amount, String address, String scriptPubKey, String derivedPath) derivedPath 从哪里来的?