We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The get transaction variable should be changed from
const address = await wollet.getTransactions(); console.log(address);
to
const transactions = await wollet.getTransactions(); console.log(transactions);
The txid string returned from a sent transaction should be changed from
console.log("BROADCASTED TX!\nTXID: {:?}", tx.txId.toString());
console.log("BROADCASTED TX!\nTXID: {:?}", (await tx.txId()).toString());
Also, we might want to add documentation saying you need to add in the android > build.gradle as well as the minSdkVersion being 24
allprojects { repositories { // * Your other repositories here * maven { name = "GitHubPackages" url = uri("https://maven.pkg.github.com/blockstream/lwk") // * Github personal access token * credentials { username = System.getenv("GITHUB_USER") password = System.getenv("GITHUB_TOKEN") } } } }
The text was updated successfully, but these errors were encountered:
sorry to be late, thanks to report these issues. Open MR9 and feel free to add feedbacks and comments
Sorry, something went wrong.
No branches or pull requests
The get transaction variable should be changed from
to
The txid string returned from a sent transaction should be changed from
to
Also, we might want to add documentation saying you need to add in the android > build.gradle as well as the minSdkVersion being 24
The text was updated successfully, but these errors were encountered: