Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Fix ton core import in /pages/book/guides/getting-started/deploy.mdx #185

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/book/guides/getting-started/deploy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To deploy a smart contract in TON you need to send a message with `init` data at
```typescript
import base64url from 'base64url';
import qs from 'qs';
import { Address, beginCell, storeStateInit, contractAddress, toNano } from 'ton-core';
import { Address, beginCell, storeStateInit, contractAddress, toNano } from '@ton/core';
import { Counter } from './output/sample_Counter';

// Forming an init package
Expand Down
Loading