UNPKG

libra-sdk-mol

Version:

Javascript SDK for Libra Network and Move Smart Contract powered by MoveOnLibra OpenAPI

21 lines (18 loc) 462 B
<!doctype html> <html> <head> <title>Getting Started</title> <script src="https://unpkg.com/libra-sdk-mol/dist/moveonlibra.browser.js"></script> </head> <body> <script> var client = new LibraClient("testnet"); async function getBalance(){ data = await client.addressAPI.getAccountBalance("000000000000000000000000000000000000000000000000000000000a550c18"); console.log(data); alert(data.balance); } getBalance(); </script> </body> </html>