How to decode Core DB Account.Signers using the stellar js-sdkHelp - why can’t I synch stellar core?Muliti Signature with hash(x) in goLang SDKHow to use the Stellar SDK API Reference?Using Stellar for a non-financial private networkHow can I actually use the js-stellar-sdk?Stellar Java SDK: Retrieve Account DataHow to decode stellar XDRHow should one decide how many and which nodes to select in the quorum set when configuring a Stellar Core NodeHow to pass in a different config file when running a stellar quickstart docker container?Can I access the private instance created by the docker, using the javascript sdk given?

Superhero words!

Why is delta-v is the most useful quantity for planning space travel?

Can I use my Chinese passport to enter China after I acquired another citizenship?

Why are all the doors on Ferenginar (the Ferengi home world) far shorter than the average Ferengi?

Can one define wavefronts for waves travelling on a stretched string?

Simulating a probability of 1 of 2^N with less than N random bits

Would it be legal for a US State to ban exports of a natural resource?

Did US corporations pay demonstrators in the German demonstrations against article 13?

Teaching indefinite integrals that require special-casing

Perfect riffle shuffles

How do I repair my stair bannister?

Calculating the number of days between 2 dates in Excel

Organic chemistry Iodoform Reaction

The most efficient algorithm to find all possible integer pairs which sum to a given integer

Lifted its hind leg on or lifted its hind leg towards?

How can I raise concerns with a new DM about XP splitting?

Freedom of speech and where it applies

What will be the benefits of Brexit?

Indicating multiple different modes of speech (fantasy language or telepathy)

Bob has never been a M before

What is the term when two people sing in harmony, but they aren't singing the same notes?

How to prevent YouTube from showing already watched videos?

Invariance of results when scaling explanatory variables in logistic regression, is there a proof?

Can I Retrieve Email Addresses from BCC?



How to decode Core DB Account.Signers using the stellar js-sdk


Help - why can’t I synch stellar core?Muliti Signature with hash(x) in goLang SDKHow to use the Stellar SDK API Reference?Using Stellar for a non-financial private networkHow can I actually use the js-stellar-sdk?Stellar Java SDK: Retrieve Account DataHow to decode stellar XDRHow should one decide how many and which nodes to select in the quorum set when configuring a Stellar Core NodeHow to pass in a different config file when running a stellar quickstart docker container?Can I access the private instance created by the docker, using the javascript sdk given?













1















In the recent core v10.3, there is a new base64 encoded column in the accounts table in the core db which replaces the signers table in earlier core versions. How can I decode this column to produce a backwards compatible array:



[publicKey, weight]


using the js sdk?



Thanks in advance










share|improve this question


























    1















    In the recent core v10.3, there is a new base64 encoded column in the accounts table in the core db which replaces the signers table in earlier core versions. How can I decode this column to produce a backwards compatible array:



    [publicKey, weight]


    using the js sdk?



    Thanks in advance










    share|improve this question
























      1












      1








      1








      In the recent core v10.3, there is a new base64 encoded column in the accounts table in the core db which replaces the signers table in earlier core versions. How can I decode this column to produce a backwards compatible array:



      [publicKey, weight]


      using the js sdk?



      Thanks in advance










      share|improve this question














      In the recent core v10.3, there is a new base64 encoded column in the accounts table in the core db which replaces the signers table in earlier core versions. How can I decode this column to produce a backwards compatible array:



      [publicKey, weight]


      using the js sdk?



      Thanks in advance







      stellar-core stellar-sdk






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 5 hours ago









      istrau2istrau2

      934




      934




















          1 Answer
          1






          active

          oldest

          votes


















          3














          var StellarBase = require('stellar-base');
          var jsxdr = require('js-xdr');

          let signers = new jsxdr.VarArray(StellarBase.xdr.Signer, 20)
          .fromXDR('AAAAAQAAAAC+GwdMJxaEbnW0z0RP6jJvTg+s8mjVw7+wPpJEbZAJdQAAAAo=', 'base64');

          for (signer of signers)
          console.log(signer.key());
          console.log(signer.weight());



          Please note that the column will be NULL when there are no signers added to the account.






          share|improve this answer






















            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "686"
            ;
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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%2fstellar.stackexchange.com%2fquestions%2f2366%2fhow-to-decode-core-db-account-signers-using-the-stellar-js-sdk%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









            3














            var StellarBase = require('stellar-base');
            var jsxdr = require('js-xdr');

            let signers = new jsxdr.VarArray(StellarBase.xdr.Signer, 20)
            .fromXDR('AAAAAQAAAAC+GwdMJxaEbnW0z0RP6jJvTg+s8mjVw7+wPpJEbZAJdQAAAAo=', 'base64');

            for (signer of signers)
            console.log(signer.key());
            console.log(signer.weight());



            Please note that the column will be NULL when there are no signers added to the account.






            share|improve this answer



























              3














              var StellarBase = require('stellar-base');
              var jsxdr = require('js-xdr');

              let signers = new jsxdr.VarArray(StellarBase.xdr.Signer, 20)
              .fromXDR('AAAAAQAAAAC+GwdMJxaEbnW0z0RP6jJvTg+s8mjVw7+wPpJEbZAJdQAAAAo=', 'base64');

              for (signer of signers)
              console.log(signer.key());
              console.log(signer.weight());



              Please note that the column will be NULL when there are no signers added to the account.






              share|improve this answer

























                3












                3








                3







                var StellarBase = require('stellar-base');
                var jsxdr = require('js-xdr');

                let signers = new jsxdr.VarArray(StellarBase.xdr.Signer, 20)
                .fromXDR('AAAAAQAAAAC+GwdMJxaEbnW0z0RP6jJvTg+s8mjVw7+wPpJEbZAJdQAAAAo=', 'base64');

                for (signer of signers)
                console.log(signer.key());
                console.log(signer.weight());



                Please note that the column will be NULL when there are no signers added to the account.






                share|improve this answer













                var StellarBase = require('stellar-base');
                var jsxdr = require('js-xdr');

                let signers = new jsxdr.VarArray(StellarBase.xdr.Signer, 20)
                .fromXDR('AAAAAQAAAAC+GwdMJxaEbnW0z0RP6jJvTg+s8mjVw7+wPpJEbZAJdQAAAAo=', 'base64');

                for (signer of signers)
                console.log(signer.key());
                console.log(signer.weight());



                Please note that the column will be NULL when there are no signers added to the account.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 4 hours ago









                Bartek NowotarskiBartek Nowotarski

                3,478929




                3,478929



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stellar Stack Exchange!


                    • 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%2fstellar.stackexchange.com%2fquestions%2f2366%2fhow-to-decode-core-db-account-signers-using-the-stellar-js-sdk%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

                    Category:Fedor von Bock Media in category "Fedor von Bock"Navigation menuUpload mediaISNI: 0000 0000 5511 3417VIAF ID: 24712551GND ID: 119294796Library of Congress authority ID: n96068363BnF ID: 12534305fSUDOC authorities ID: 034604189Open Library ID: OL338253ANKCR AUT ID: jn19990000869National Library of Israel ID: 000514068National Thesaurus for Author Names ID: 341574317ReasonatorScholiaStatistics

                    Reverse int within the 32-bit signed integer range: [−2^31, 2^31 − 1]Combining two 32-bit integers into one 64-bit integerDetermine if an int is within rangeLossy packing 32 bit integer to 16 bitComputing the square root of a 64-bit integerKeeping integer addition within boundsSafe multiplication of two 64-bit signed integersLeetcode 10: Regular Expression MatchingSigned integer-to-ascii x86_64 assembler macroReverse the digits of an Integer“Add two numbers given in reverse order from a linked list”

                    Log på Navigationsmenu