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?
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
add a comment |
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
add a comment |
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
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
stellar-core stellar-sdk
asked 5 hours ago
istrau2istrau2
934
934
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
add a comment |
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
);
);
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%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
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.
add a comment |
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.
add a comment |
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.
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.
answered 4 hours ago
Bartek NowotarskiBartek Nowotarski
3,478929
3,478929
add a comment |
add a comment |
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.
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%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
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