Richard Moore

Results 530 comments of Richard Moore

Here is a quick example of what you are trying to do: ```javascript var wallet = Wallet.createRandom() console.log(wallet.mnemonic) // front chair enroll shrug twin expand forest magnet ice magic sport...

Oh! Sorry... That was for ethers.js.

Here is the example for ethers.objc (sorry, most questions are for my JavaScript version and I didn't notice the repo): ```objc Account *account = [Account randomMnemonicAccount]; NSLog(@"Menonic Phrase: %@", account.mnemonicPhrase);...

The API you are interested in is this one: https://github.com/ethers-io/ethers.objc/blob/master/ethers/src/Account.h#L87 :)

Did you toggle the targets panel on the right for any files? That file should not be getting compiled. Which file is it? And which branch? That is part of...

Still trying to get v5 into public beta, then I’ll start making the EVM public through its experimental package.

What is the desired timeline for this task? Keep in mind the ABI would require a runtime bytecode in it to use this feature; I’ve been trying to think of...

Here is a quick example. I'm not really a Java guy, so I'm dumping it out as a hex encoded string to make it easier to see what you get,...

There are some less-than-ideal-but-working-colutions here: https://github.com/ricmoo/GMEllipticCurveCrypto/issues/8 It is planned to officially accept ASN.1 encoding at some point, but I haven't gotten to it yet. The encoding does add a lot...

Try this: ``` NSData keyDer = your-binary-key-goes-here; NSData *key = [keyDer subdataWithRange:NSMakeRange([keyDer length] - 64, 64)]; ``` Basically, you just want to take the last 64 bytes, the first 8...