Skip to content

Instantly share code, notes, and snippets.

@ernestognw
Created March 9, 2020 10:01
Show Gist options
  • Save ernestognw/9646a782c057d446fd646135ddaae703 to your computer and use it in GitHub Desktop.
Save ernestognw/9646a782c057d446fd646135ddaae703 to your computer and use it in GitHub Desktop.
import StellarSdk from "stellar-sdk";
const server = new StellarSdk.Server("https://horizon-testnet.stellar.org");
const loadAccount = async publicKey => {
// Cargamos la cuenta a través del sdk de Stellar
const account = await server.loadAccount(publicKey);
return account;
};
export { loadAccount };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment