Last active
May 20, 2022 11:07
-
-
Save goodylili/aa1a5af375a68831a5e89e5c5f5a2b5f to your computer and use it in GitHub Desktop.
Cardano Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let walletServer = walletserver.init("path") | |
let recoveryPhrase = seed.generateRecoveryPhrase() | |
let mnemonic = seed.toMnemonicList(recoveryPhrase) | |
let passphrase = "name" | |
let walletName = "name" | |
let wallet = await walletServer.createOrRestoreShelleyWallet(walletName, mnemonic, passphrase) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let transaction = await wallet.getTransaction("transaction id"); | |
console.log(transaction) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let query = await walletServer.getNetworkInformation() | |
console.log(query) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const WalletServer = require('cardano-wallet-js'); | |
let walletServer = WalletServer.init('Your wallet server host URL'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let transactions = await wallet.getTransactions(); | |
console.log(transactions) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment