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
https://github.com/unwriter/datapay/blob/master/README.md#a-sending-from-data-and-pay
The code example under A. Sending from data and pay, currently is this:
const tx = { safe: true, data: ["0x6d02", "hello world"]) pay: { key: "5JZ4RXH4MoXpaUQMcJHo8DxhZtkf5U5VnYd9zZH8BRKZuAbxZEw" } } datapay.send(tx, function(err, res) { console.log(res) })
It's missing some commas and unnecessary parenthesis.
It should be this:
const tx = { safe: true, data: ["0x6d02", "hello world"], pay: { key: "5JZ4RXH4MoXpaUQMcJHo8DxhZtkf5U5VnYd9zZH8BRKZuAbxZEw" } } datapay.send(tx, function(err, res) { console.log(res) })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/unwriter/datapay/blob/master/README.md#a-sending-from-data-and-pay
The code example under A. Sending from data and pay, currently is this:
It's missing some commas and unnecessary parenthesis.
It should be this:
The text was updated successfully, but these errors were encountered: