使用coinbase node.js
客户端通知 API 并查询notifications list
为空。需要知道何时address has been funded
const coinbaseClient = require("./providers/coinbaseClient")
coinbaseClient.getNotifications(null, (err,notifications,pagination)=> {
if (err) {
console.log(err);
} else {
if (notifications ) {
console.log(notifications);
}
}})