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;








2















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');










share|improve this question






























    2















    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');










    share|improve this question


























      2












      2








      2


      3






      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');










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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






















          1 Answer
          1






          active

          oldest

          votes


















          1














          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






          share|improve this answer























          • not possible with ethereum 4.0.1

            – Ishwar Chandra
            Mar 26 at 21:12










          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
          );



          );













          draft saved

          draft discarded


















          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









          1














          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






          share|improve this answer























          • not possible with ethereum 4.0.1

            – Ishwar Chandra
            Mar 26 at 21:12















          1














          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






          share|improve this answer























          • not possible with ethereum 4.0.1

            – Ishwar Chandra
            Mar 26 at 21:12













          1












          1








          1







          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






          share|improve this answer













          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







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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

















          • 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








          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.



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현