From 7398bbeab8b97bfc3b00f27141deb446c65a5e76 Mon Sep 17 00:00:00 2001 From: ZigBalthazar Date: Wed, 10 Jul 2024 21:16:41 +0330 Subject: [PATCH] docs: update readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fd4582d..e57cbb7 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ Import the required contracts and traits in your Tact code. ```ts import "@stdlib/deploy"; -import "../../../traits/tokens/jetton/JettonMaster.tact"; -import "../../../traits/tokens/jetton/JettonWallet.tact"; +import "../imports/tonion/JettonMaster.tact"; +import "../imports/tonion/JettonWallet.tact"; contract MyJetton with JettonMaster, Deployable { total_supply: Int as coins; @@ -52,8 +52,8 @@ contract MyJetton with JettonMaster, Deployable { #### Sample Jetton Wallet: ```ts import "@stdlib/deploy"; -import "../../../traits/tokens/jetton/JettonMaster.tact"; -import "../../../traits/tokens/jetton/JettonWallet.tact"; +import "../imports/tonion/JettonMaster.tact"; +import "../imports/tonion/JettonWallet.tact"; contract MyJettonWallet with JettonWallet, Deployable { balance: Int as coins = 0;