diff --git a/docs/02-addresses.html b/docs/02-addresses.html
index d454236..fb3cd47 100644
--- a/docs/02-addresses.html
+++ b/docs/02-addresses.html
@@ -65,7 +65,7 @@
All contracts are deployed by sending them a message. While any message can be used for this purpose, best practice is to use the special Deploy
message.
This message has a single field, queryId
, provided by the deployer (usually set to zero). If the deployment succeeds, the contract will reply with a DeployOk
message and echo the same queryId
in the response.
-If you're using Tact's auto-generated TypeScript classes to deploy, sending the deploy message should look like:
+If you're using Tact's auto-generated TypeScript classes to deploy, sending the deploy message should look like:
const msg = { $$type: "Deploy", queryId: 0n };
await contract.send(sender, { value: toNano(1) }, msg);
diff --git a/docs/03-sender.html b/docs/03-sender.html
index 56a4086..d995974 100644
--- a/docs/03-sender.html
+++ b/docs/03-sender.html
@@ -70,7 +70,7 @@ The intricate math
Info: More details for different sending modes can check
-
here
+
here
diff --git a/docs/_app/immutable/entry/(examples)-01-the-deployable-trait-page.svelte.cab4baf4.js b/docs/_app/immutable/entry/(examples)-01-the-deployable-trait-page.svelte.cab4baf4.js
index 118ab51..4595df7 100644
--- a/docs/_app/immutable/entry/(examples)-01-the-deployable-trait-page.svelte.cab4baf4.js
+++ b/docs/_app/immutable/entry/(examples)-01-the-deployable-trait-page.svelte.cab4baf4.js
@@ -10,7 +10,7 @@ This message has a single field, \`queryId\`, provided by the deployer (usually
---
-If you're using Tact's [auto-generated](https://docs.tact-lang.org/tools/typescript#tact-contract-in-typescript) TypeScript classes to deploy, sending the deploy message should look like:
+If you're using Tact's [auto-generated](https://docs.tact-lang.org/ecosystem/tools/typescript#tact-contract-in-typescript) TypeScript classes to deploy, sending the deploy message should look like:
\`\`\`ts
const msg = { $$type: "Deploy", queryId: 0n };
diff --git a/docs/_app/immutable/entry/(examples)-03-send-coins-page.svelte.0ca9331f.js b/docs/_app/immutable/entry/(examples)-03-send-coins-page.svelte.0ca9331f.js
index 89e09e0..6e67b03 100644
--- a/docs/_app/immutable/entry/(examples)-03-send-coins-page.svelte.0ca9331f.js
+++ b/docs/_app/immutable/entry/(examples)-03-send-coins-page.svelte.0ca9331f.js
@@ -17,7 +17,7 @@ Send mode \`SendRemainingBalance\` will ignore the outgoing value and send the e
Info: More details for different sending modes can check
-
here
+
here
`,v=`import "@stdlib/deploy";
diff --git a/src/routes/(examples)/01-the-deployable-trait/content.md b/src/routes/(examples)/01-the-deployable-trait/content.md
index 70a1a5f..dad462d 100644
--- a/src/routes/(examples)/01-the-deployable-trait/content.md
+++ b/src/routes/(examples)/01-the-deployable-trait/content.md
@@ -10,7 +10,7 @@ This message has a single field, `queryId`, provided by the deployer (usually se
---
-If you're using Tact's [auto-generated](https://docs.tact-lang.org/tools/typescript#tact-contract-in-typescript) TypeScript classes to deploy, sending the deploy message should look like:
+If you're using Tact's [auto-generated](https://docs.tact-lang.org/ecosystem/tools/typescript#tact-contract-in-typescript) TypeScript classes to deploy, sending the deploy message should look like:
```ts
const msg = { $$type: "Deploy", queryId: 0n };
diff --git a/src/routes/(examples)/03-send-coins/content.md b/src/routes/(examples)/03-send-coins/content.md
index c619a52..0782f9f 100644
--- a/src/routes/(examples)/03-send-coins/content.md
+++ b/src/routes/(examples)/03-send-coins/content.md
@@ -17,5 +17,5 @@ Send mode `SendRemainingBalance` will ignore the outgoing value and send the ent
Info: More details for different sending modes can check
-
here
+
here