Skip to content

Commit 2b01ad7

Browse files
authored
Merge pull request ethereum#4756 from drafish/dapp-draft-patch1
Dapp draft patch1
2 parents 9d217e1 + 57001ac commit 2b01ad7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

libs/remix-ui/run-tab/src/lib/run-tab.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,14 @@ export function RunTabUI(props: RunTabProps) {
326326
getFuncABIInputs={getFuncABIValues}
327327
exEnvironment={runTab.selectExEnv}
328328
editInstance={(instance) => {
329-
plugin.call('dapp-draft', 'edit', { address: instance.address, abi: instance.contractData.abi, name: instance.name, network: runTab.networkName })
329+
plugin.call('dapp-draft', 'edit', {
330+
address: instance.address,
331+
abi: instance.contractData.abi,
332+
name: instance.name,
333+
network: runTab.networkName,
334+
devdoc: instance.contractData.object.devdoc,
335+
methodIdentifiers: instance.contractData.object.evm.methodIdentifiers,
336+
})
330337
}}
331338
/>
332339
</div>

0 commit comments

Comments
 (0)