How to generate Ethereum address in flutter?How do I pass an Internationalization Object to Child Widgets in FlutterHow to offset a scaffold widget in Flutter?Flutter Reflection with Reflectable: working example neededDart - secret key generation based on elliptic curve 25519How to use rootBundle in flutter to load images?Flutter UI stuck when calling to base64encodehow to call dart package method from Flutter appFlutter: Consume a web service provided by Dart-client-generated file from swaggerHubEthereum HD Wallet implementation in Flutter, is there any library in Flutter?Dart compare two strings return false
Why is drive/partition number still used?
What do teaching faculty do during semester breaks?
"I you already know": is this proper English?
How do I stop my characters falling in love?
This message is flooding my syslog, how to find where it comes from?
Character is called by their first initial. How do I write it?
The Sword in the Stone
Unethical behavior : should I report it?
Keeping an "hot eyeball planet" wet
How do campaign rallies gain candidates votes?
Is dd if=/dev/urandom of=/dev/mem safe?
Explain why watch 'jobs' does not work but watch 'ps' work?
Why do planes need a roll motion?
Convert every file from JPEG to GIF in terminal
What's the difference between 2a and 10a charging options?
How to Create an Image for Cantor's *Diagonal Argument* with a Diagonal Oval
3D Statue Park: U shapes
What does "see" in "the Holy See" mean?
Does academia have a lazy work culture?
Examples of simultaneous independent breakthroughs
Why are off grid solar setups only 12, 24, 48 VDC?
Trying to build a function to compute divided difference for arbitrary list of points
Where to place an artificial gland in the human body?
Can I make a matrix from just a parts of the cells?
How to generate Ethereum address in flutter?
How do I pass an Internationalization Object to Child Widgets in FlutterHow to offset a scaffold widget in Flutter?Flutter Reflection with Reflectable: working example neededDart - secret key generation based on elliptic curve 25519How to use rootBundle in flutter to load images?Flutter UI stuck when calling to base64encodehow to call dart package method from Flutter appFlutter: Consume a web service provided by Dart-client-generated file from swaggerHubEthereum HD Wallet implementation in Flutter, is there any library in Flutter?Dart compare two strings return false
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Here is the script to generate Ethereum address in Node.JS
How can i use the below script in Flutter to generate Ethereum address?
const hdwallet = hdkey.fromMasterSeed(seed); // used bip39 to get seed
const itsMyWallet = hdwallet.derivePath("m/44'/60'/0'/0").getWallet();
console.log(`Address: $itsMyWallet.getAddressString()`);
console.log(`Private Key: $itsMyWallet.getPrivateKeyString()`);
I know how to generated mnemonic in flutter with bip39 package, some coding part i have added below,
Problem is i am not getting ethereumjs-wallet/hdkey package in flutter packages
import 'package:flutter/material.dart';
import 'package:bip39/bip39.dart' as bip39;
_generateMnemonic() async
String randomMnemonic = bip39.generateMnemonic();
print('_generateMnemonic ====> $randomMnemonic');
String seed = bip39.mnemonicToSeedHex(randomMnemonic);
print('_generateMnemonic ====> $seed');
dart flutter
add a comment |
Here is the script to generate Ethereum address in Node.JS
How can i use the below script in Flutter to generate Ethereum address?
const hdwallet = hdkey.fromMasterSeed(seed); // used bip39 to get seed
const itsMyWallet = hdwallet.derivePath("m/44'/60'/0'/0").getWallet();
console.log(`Address: $itsMyWallet.getAddressString()`);
console.log(`Private Key: $itsMyWallet.getPrivateKeyString()`);
I know how to generated mnemonic in flutter with bip39 package, some coding part i have added below,
Problem is i am not getting ethereumjs-wallet/hdkey package in flutter packages
import 'package:flutter/material.dart';
import 'package:bip39/bip39.dart' as bip39;
_generateMnemonic() async
String randomMnemonic = bip39.generateMnemonic();
print('_generateMnemonic ====> $randomMnemonic');
String seed = bip39.mnemonicToSeedHex(randomMnemonic);
print('_generateMnemonic ====> $seed');
dart flutter
add a comment |
Here is the script to generate Ethereum address in Node.JS
How can i use the below script in Flutter to generate Ethereum address?
const hdwallet = hdkey.fromMasterSeed(seed); // used bip39 to get seed
const itsMyWallet = hdwallet.derivePath("m/44'/60'/0'/0").getWallet();
console.log(`Address: $itsMyWallet.getAddressString()`);
console.log(`Private Key: $itsMyWallet.getPrivateKeyString()`);
I know how to generated mnemonic in flutter with bip39 package, some coding part i have added below,
Problem is i am not getting ethereumjs-wallet/hdkey package in flutter packages
import 'package:flutter/material.dart';
import 'package:bip39/bip39.dart' as bip39;
_generateMnemonic() async
String randomMnemonic = bip39.generateMnemonic();
print('_generateMnemonic ====> $randomMnemonic');
String seed = bip39.mnemonicToSeedHex(randomMnemonic);
print('_generateMnemonic ====> $seed');
dart flutter
Here is the script to generate Ethereum address in Node.JS
How can i use the below script in Flutter to generate Ethereum address?
const hdwallet = hdkey.fromMasterSeed(seed); // used bip39 to get seed
const itsMyWallet = hdwallet.derivePath("m/44'/60'/0'/0").getWallet();
console.log(`Address: $itsMyWallet.getAddressString()`);
console.log(`Private Key: $itsMyWallet.getPrivateKeyString()`);
I know how to generated mnemonic in flutter with bip39 package, some coding part i have added below,
Problem is i am not getting ethereumjs-wallet/hdkey package in flutter packages
import 'package:flutter/material.dart';
import 'package:bip39/bip39.dart' as bip39;
_generateMnemonic() async
String randomMnemonic = bip39.generateMnemonic();
print('_generateMnemonic ====> $randomMnemonic');
String seed = bip39.mnemonicToSeedHex(randomMnemonic);
print('_generateMnemonic ====> $seed');
dart flutter
dart flutter
edited Jun 26 at 16:10
Ishwar Chandra
asked Mar 26 at 16:43
Ishwar ChandraIshwar Chandra
4505 silver badges15 bronze badges
4505 silver badges15 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You could try and use a flutter package for Ethereum known as ethereum 4.0.1
which can be found here. It may have what you are looking for, but if it doesn't it is because it is still currently in development, but it does implement most of the standard Ethereum api's
not possible with ethereum 4.0.1
– Ishwar Chandra
Mar 26 at 21:12
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55362251%2fhow-to-generate-ethereum-address-in-flutter%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could try and use a flutter package for Ethereum known as ethereum 4.0.1
which can be found here. It may have what you are looking for, but if it doesn't it is because it is still currently in development, but it does implement most of the standard Ethereum api's
not possible with ethereum 4.0.1
– Ishwar Chandra
Mar 26 at 21:12
add a comment |
You could try and use a flutter package for Ethereum known as ethereum 4.0.1
which can be found here. It may have what you are looking for, but if it doesn't it is because it is still currently in development, but it does implement most of the standard Ethereum api's
not possible with ethereum 4.0.1
– Ishwar Chandra
Mar 26 at 21:12
add a comment |
You could try and use a flutter package for Ethereum known as ethereum 4.0.1
which can be found here. It may have what you are looking for, but if it doesn't it is because it is still currently in development, but it does implement most of the standard Ethereum api's
You could try and use a flutter package for Ethereum known as ethereum 4.0.1
which can be found here. It may have what you are looking for, but if it doesn't it is because it is still currently in development, but it does implement most of the standard Ethereum api's
answered Mar 26 at 20:04
R. DugganR. Duggan
5063 silver badges21 bronze badges
5063 silver badges21 bronze badges
not possible with ethereum 4.0.1
– Ishwar Chandra
Mar 26 at 21:12
add a comment |
not possible with ethereum 4.0.1
– Ishwar Chandra
Mar 26 at 21:12
not possible with ethereum 4.0.1
– Ishwar Chandra
Mar 26 at 21:12
not possible with ethereum 4.0.1
– Ishwar Chandra
Mar 26 at 21:12
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55362251%2fhow-to-generate-ethereum-address-in-flutter%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown