Ethereumjs

獲取特定智能合約 ABI 的所有函式名

  • June 22, 2018

我只想從智能合約 abi 中獲取函式名稱列表。請指導

在 JavaScript 中:

let AbiJson = `Your ABI JSON string`

let abi = JSON.parse(AbiJson);

for(let item of abi) {
   if(item.name)
       console.log(item.name);
}

引用自:https://ethereum.stackexchange.com/questions/51849