Browse Source

Update managing-accounts.md

feat/new-clarity-onboarding
Dominic Wong 4 years ago
committed by Alexander Graebe
parent
commit
809e52ac90
  1. 6
      src/pages/understand-stacks/managing-accounts.md

6
src/pages/understand-stacks/managing-accounts.md

@ -75,9 +75,9 @@ const stacksAddress = getAddressFromPrivateKey(
TransactionVersion.Testnet // remove for Mainnet addresses TransactionVersion.Testnet // remove for Mainnet addresses
); );
async function getAccountInfo() { const accounts = new AccountsApi(apiConfig);
const accounts = new AccountsApi(apiConfig);
async function getAccountInfo() {
const accountInfo = await accounts.getAccountInfo({ const accountInfo = await accounts.getAccountInfo({
principal: stacksAddress principal: stacksAddress
}); });
@ -106,7 +106,7 @@ The `balance` property represents the Stacks token balance, as hex-encoded strin
Proofs, provided as hex-encoded strings, can be removed from the responses by setting the `proof` parameter: Proofs, provided as hex-encoded strings, can be removed from the responses by setting the `proof` parameter:
```js ```js
async function getAccountInfo() { async function getAccountInfoWithoutProof() {
const accountInfo = await accounts.getAccountInfo({ const accountInfo = await accounts.getAccountInfo({
principal: stacksAddress, principal: stacksAddress,
proof: 0, proof: 0,

Loading…
Cancel
Save