Get definition address
선언형 스크립트(스마트 컨트랙)으로 부터 주소 생성
생성된 주소는 해당 스마트 컨트랙 주소로 사용하여 다양한 거래 조건 설정 등에 이용한다.
Example
const { getChash160 } = require('shark-dag-js/lib/utils');
const definition = ['and', [
["address", "TMWNLXR42CKIP4A774BQGNVBZAPHY7GH"],
["in data feed", [["BVVJ2K7ENPZZ3VYZFWQWK7ISPCATFIW3"], "timestamp", ">", 1525593731872]]
]];
const address = getChash160(definition);
console.log(address);Returns
ETARZZW2G3R3KT4UZKMQUXMWKRZMY7RQLast updated
Was this helpful?