From 684e28b1f4d5526733ad7780b338cfc972bf0b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Parrino?= Date: Tue, 19 Mar 2024 07:59:43 -0300 Subject: [PATCH] Update welcome.md --- docs/2.develop/relayers/welcome.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/2.develop/relayers/welcome.md b/docs/2.develop/relayers/welcome.md index a2ea9fb512f..205423dc871 100644 --- a/docs/2.develop/relayers/welcome.md +++ b/docs/2.develop/relayers/welcome.md @@ -34,7 +34,7 @@ The client can then generate a `SignedDelegateAction` (signed message that isn't - Here a simple express endpoint deserializes the body, instantiates the relayer account and then sends the transaction. + Here's a simple express endpoint deserializes the body, instantiates the relayer account and then sends the transaction. @@ -43,15 +43,15 @@ The client can then generate a `SignedDelegateAction` (signed message that isn't - :::info +:::info The code in the example only works from the following versions onwards - "near-api-js": "3.0.4" - - "@near-js/transactions": "1.1.2", - - "@near-js/accounts": "1.0.4" +``` +"near-api-js": "3.0.4" +"@near-js/transactions": "1.1.2", +"@near-js/accounts": "1.0.4" +``` :::