We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9859b57 commit db025c4Copy full SHA for db025c4
frontend/src/components/Simulator/ExecuteTransactions.vue
@@ -26,7 +26,7 @@ const emit = defineEmits(['callMethod'])
26
27
const methodList = computed<ContractMethod[]>(() => {
28
return Object.entries(props.abi?.methods || {})
29
- .filter(m => m[0] !== 'call_llm')
+ .filter(m => !['call_llm', '__init__'].includes(m[0]))
30
.map(m => ({
31
name: m[0],
32
inputs: m[1].inputs,
0 commit comments