From 00f9161a80ae2e860d3e781ad4e3f8a0827867a1 Mon Sep 17 00:00:00 2001 From: Georgi Tsonev Date: Mon, 2 Sep 2024 14:58:51 +0300 Subject: [PATCH] fix typo --- packages/near-sdk-js/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/near-sdk-js/README.md b/packages/near-sdk-js/README.md index 7dbf9819..ed0c360d 100644 --- a/packages/near-sdk-js/README.md +++ b/packages/near-sdk-js/README.md @@ -222,7 +222,7 @@ In order to do that, your contract must be a class decorated with `@NearBindgen( Your class must have a `constructor()`. You will not be able to call it, which is why it should not accept any parameters. You must declare all the parameters that you are planning to use in the constructor and set default values. -The simplest example of the contract that follows all these rules can be found [here](https://github.com/near/near-sdk-js/blob/develop/examples/src/statys-message/status-message.js) +The simplest example of the contract that follows all these rules can be found [here](https://github.com/near/near-sdk-js/blob/develop/examples/src/status-message/status-message.js) `NearBindgen` decorator can accept `requireInit parameter`.