Data
'data'라는 메시지 타입으로 정의되는 임의의 자료구조를 블록체인에 저장할 수 있다.
Returns
Example
const params = {
key: "value",
another_key: {
subkey: 'other value',
another_subkey: 232
}
};
client.post.data(params, wif, function(err, result) {
console.log(result);
});Last updated
Was this helpful?