diff --git a/src/app/ui-helper.js b/src/app/ui-helper.js index 70c8616384..a732fbae7b 100644 --- a/src/app/ui-helper.js +++ b/src/app/ui-helper.js @@ -130,6 +130,10 @@ module.exports = { var button = $('') var details = $('
') + if (contract.metadata) { + details.append(this.preRow('Metadata', contract.metadata)) + } + var funHashes = '' for (var fun in contract.functionHashes) { funHashes += contract.functionHashes[fun] + ' ' + fun + '\n'