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?