如何解码 Waves 中的附件?

How to decode attachment in Waves?

如何使用 javascript 解码 waves tx 附件?

"attachment": "3vqXJBWJCU"

需要在1d1c0f375c646b70解码

此附件采用 base58 编码。如果您需要快速解码可以使用任何在线 base58 encoding/decoding 服务,但不建议 encode/decode 在线助记词。 顺便说一下,我正在使用这个 JavaScript base58 解码器:https://github.com/cryptocoinjs/bs58

解码示例如下:

const bs58 = require('bs58')

const attachment = '3vqXJBWJCU'
const bytes = bs58.decode(attachment)
console.log(bytes.toString('hex'))
// => MESSAGE