diff --git a/apps/taquito-test-dapp/src/lib/TestContainer.svelte b/apps/taquito-test-dapp/src/lib/TestContainer.svelte index 3191c3aade..08e40a39a5 100644 --- a/apps/taquito-test-dapp/src/lib/TestContainer.svelte +++ b/apps/taquito-test-dapp/src/lib/TestContainer.svelte @@ -11,7 +11,7 @@ let loading = false; let success: boolean | undefined; let opHash = ""; - let input = { text: "", fee: 400, storageLimit: 400, gasLimit: 1320 }; + let input = { text: "", fee: 400, storageLimit: 400, gasLimit: 1320, amount: 0, address: "" }; let testResult: { id: string; title: string; body: any }; const run = async () => { @@ -28,6 +28,7 @@ test.id === "sign-payload-and-send" || test.id === "sign-failingNoop" || test.id === "verify-signature" || + test.id === "transfer-to-etherlink" || test.id === "set-transaction-limits" ) { result = await test.run(input); @@ -188,7 +189,7 @@ /* ---------------------------------------------- * Generated by Animista on 2022-4-21 9:31:8 * Licensed under FreeBSD License. - * See http://animista.net/license for more info. + * See http://animista.net/license for more info. * w: http://animista.net, t: @cssanimista * ---------------------------------------------- */ @@ -302,6 +303,19 @@ bind:value={input.text} /> + {:else if test.inputRequired && test.inputType === "transfer-to-etherlink"} + {:else if test.inputRequired && test.inputType === "set-limits"}