From cd38b1c3f2941696980099d43add34b98481c351 Mon Sep 17 00:00:00 2001 From: Wenderson Pires Date: Thu, 1 Feb 2024 23:08:35 -0300 Subject: [PATCH] README update --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c5e944..6d25fdf 100644 --- a/README.md +++ b/README.md @@ -162,7 +162,8 @@ contractApi.call('set_greeting', { greeting: 'Hello my dear!' }).then(() => cons As well as the `call`, you will need to pay for every request you make. This is going to change data and store it within the blockchain. ```ts -import { contractApi, buildTransaction } from './web3Api' +import { buildTransaction } from '@wpdas/naxios' +import { contractApi } from './web3Api' // Using the default instance's contract const transactionA = buildTransaction('set_greeting', { args: { greeting: 'Hello my dear!' } })