From 1152b03f2a9aaeeeb2dfdb5c9a976d36e1a56860 Mon Sep 17 00:00:00 2001 From: Craig Buckler Date: Mon, 29 Apr 2024 23:48:02 +0100 Subject: [PATCH 1/5] add Tezos Foundation RPCs (#2934) --- docs/rpc_nodes.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/rpc_nodes.md b/docs/rpc_nodes.md index 6ce4048300..7cd09f7543 100644 --- a/docs/rpc_nodes.md +++ b/docs/rpc_nodes.md @@ -29,6 +29,9 @@ values={[ | SmartPy | Mainnet | https://mainnet.smartpy.io | [Check](https://mainnet.smartpy.io/chains/main/blocks/head/header) | | SmartPy | Ghostnet | https://ghostnet.smartpy.io | [Check](https://ghostnet.smartpy.io/chains/main/blocks/head/header) | | Tezos Foundation | Mainnet | https://rpc.tzbeta.net/ | [Check](https://rpc.tzbeta.net/chains/main/blocks/head/header) | +| Tezos Foundation | Ghostnet | https://rpc.ghostnet.teztnets.com/ | [Check](https://rpc.ghostnet.teztnets.com/chains/main/blocks/head/header) | +| Tezos Foundation | Oxfordnet | https://rpc.oxfordnet.teztnets.com/ | [Check](https://rpc.oxfordnet.teztnets.com/chains/main/blocks/head/header) | +| Tezos Foundation | Parisnet | https://rpc.parisnet.teztnets.com/ | [Check](https://rpc.parisnet.teztnets.com/chains/main/blocks/head/header) | | Marigold | Mainnet | https://mainnet.tezos.marigold.dev/ | [Check](https://mainnet.tezos.marigold.dev/chains/main/blocks/head/header) | | Marigold | Ghostnet | https://ghostnet.tezos.marigold.dev/ | [Check](https://ghostnet.tezos.marigold.dev/chains/main/blocks/head/header) | | Marigold | Oxfordnet | https://oxfordnet.tezos.marigold.dev/ | [Check](https://oxfordnet.tezos.marigold.dev/chains/main/blocks/head/header) | From 8f30cf3b0de75d045932e5bc228974e408f3a19a Mon Sep 17 00:00:00 2001 From: hui-an-yang <106410553+hui-an-yang@users.noreply.github.com> Date: Wed, 1 May 2024 13:31:26 -0700 Subject: [PATCH 2/5] 2942 tez to etherlink (#2944) * feat: add a case to transfer ghostnet tez to etherlink in test-dapp * style: move the case to top * feat: updaing desc and naming to Send tez from Ghostnet to Etherlink --- .../src/lib/TestContainer.svelte | 24 +++++++++-- apps/taquito-test-dapp/src/tests.ts | 42 ++++++++++++++++++- apps/taquito-test-dapp/src/types.ts | 2 +- cspell.json | 1 + example/package.json | 2 +- 5 files changed, 64 insertions(+), 7 deletions(-) diff --git a/apps/taquito-test-dapp/src/lib/TestContainer.svelte b/apps/taquito-test-dapp/src/lib/TestContainer.svelte index 3191c3aade..d748260eef 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 === "send-tez-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 === "etherlink"} + {:else if test.inputRequired && test.inputType === "set-limits"}