Skip to content

Commit

Permalink
docs: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigBalthazar committed Jul 10, 2024
1 parent 763b143 commit 7398bbe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 7398bbe

Please sign in to comment.