Skip to content

Commit 9794418

Browse files
docs: remove term "smart contract" (#505)
* docs: remove term "smart contract" Signed-off-by: David Dal Busco <david.dalbusco@outlook.com> * 📄 Update LLMs.txt snapshot for PR review --------- Signed-off-by: David Dal Busco <david.dalbusco@outlook.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 06d8668 commit 9794418

23 files changed

Lines changed: 131 additions & 133 deletions

File tree

.llms-snapshots/llms-full.txt

Lines changed: 80 additions & 80 deletions
Large diffs are not rendered by default.

.llms-snapshots/llms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Juno is your self-contained serverless platform for building full-stack web apps
102102

103103
## Management
104104

105-
- [Monitoring](https://juno.build/docs/management/monitoring.md): Juno Monitoring ensures your smart contracts remain operational by automatically managing cycle balances. Monitor your modules, configure thresholds, and enable auto-refill to prevent downtime effortlessly.
105+
- [Monitoring](https://juno.build/docs/management/monitoring.md): Juno Monitoring ensures your containers remain operational by automatically managing cycle balances. Monitor your modules, configure thresholds, and enable auto-refill to prevent downtime effortlessly.
106106
- [Snapshots](https://juno.build/docs/management/snapshots.md): Snapshots are an essential component of any disaster recovery strategy. In the fast-paced world of development, unexpected issues can arise—such as accidental overwrites of critical data or bugs in updates. While these scenarios can't always be avoided, their impact can be minimized or mitigated.
107107

108108
## Miscellaneous

docs/build/analytics/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ Juno Analytics does not follow users across websites and applications they visit
7373

7474
### You 100% own your data
7575

76-
As with all services provided by Juno, you are the sole controller of your smart contracts, and your data belongs exclusively to you.
76+
As with all services provided by Juno, you are the sole controller of your containers, and your data belongs exclusively to you.
7777

78-
You have the capability to delete all collected data within your Analytics at any time by utilizing the [CLI] to reset your smart contract.
78+
You have the capability to delete all collected data within your Analytics at any time by utilizing the [CLI].
7979

8080
---
8181

@@ -103,7 +103,7 @@ Similar to other analytics services, an Orbiter accepts data submitted from any
103103

104104
Consequently, this leaves the canister open to potential attacks that can pollute the data and consume cycles. For this reason, we recommend the following:
105105

106-
1. Avoid topping up the smart contract with excessive cycles; instead, adopt a lean approach.
106+
1. Avoid topping up with excessive cycles; instead, adopt a lean approach.
107107
2. Enable [monitoring](../../management/monitoring.md) to ensure your modules are automatically refueled and stay online.
108108
3. Interpret the statistics provided by this feature with some reservation, similar to any other analytics data, considering potential inaccuracies.
109109

docs/build/analytics/setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This section covers how to integrate and configure Juno Analytics in your app or
66

77
## Getting Started
88

9-
Before integrating Juno Analytics into your app or website, you need to create an Orbiter - the smart contract that implements analytics features and gathers data. Here's a step-by-step guide to help you get started:
9+
Before integrating Juno Analytics into your app or website, you need to create an Orbiter - the analytics container that collects anonymous usage data. Here's a step-by-step guide to get started:
1010

1111
1. Sign in to the Juno [Console](https://console.juno.build)
1212
2. Navigate to [Analytics](https://console.juno.build/analytics/)

docs/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ In contrast, Juno is fully [open-source](https://github.com/junobuild/), providi
6060

6161
Firebase follows a usage-based pricing model, where costs are calculated based on factors like request volume and data storage. The absence of a cap-setting option is a cause for concern, as unexpected spikes in usage can result in substantial expenses.
6262

63-
In contrast, Juno takes a different approach. Developers pre-charge their smart contracts with [cycles](./terminology.md#cycles), which are then utilized to cover computation and memory usage of the [satellites] and [mission control]. This mechanism eliminates the risk of encountering unexpected financial burdens due to unforeseen usage surges.
63+
In contrast, Juno takes a different approach. Developers pre-charge their modules with [cycles](./terminology.md#cycles), which are then utilized to cover computation and memory usage. This mechanism eliminates the risk of encountering unexpected financial burdens due to unforeseen usage surges.
6464

6565
### Do you have a library for [some other language]?
6666

6767
We officially support [JavaScript](setup-the-sdk.mdx) for anything frontend.
6868

69-
Extending smart contract capabilities is done in [Rust](build/functions/index.md).
69+
Extending serverless functions is done in [Rust](build/functions/development/rust.mdx) or [TypeScript](build/functions/development/typescript.mdx).
7070

7171
Community-supported libraries and contributions are warmly welcomed.
7272

docs/guides/angular.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Once you’re set up, continue to the [Deployment](#deployment) section below.
189189

190190
## Deployment
191191

192-
Use this guide to deploy your project to production — directly to a smart contract on mainnet.
192+
Use this guide to deploy your project to production — directly to a satellite on mainnet.
193193

194194
:::note
195195

docs/guides/astro.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Once you’re set up, continue to the [Deployment](#deployment) section below.
184184
185185
## Deployment
186186
187-
Use this guide to deploy your project to production — directly to a smart contract on mainnet.
187+
Use this guide to deploy your project to production — directly to a satellite on mainnet.
188188
189189
import Deploy from "./components/deploy.mdx";
190190

docs/guides/components/deploy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If you haven't created a satellite yet, go ahead and [create](../../create-a-sat
88

99
### {props.index + 1}. Deploy
1010

11-
Once your satellite is up and running, you can proceed with uploading your app to your smart contract.
11+
Once your satellite is up and running, you can proceed with uploading your app.
1212

1313
You can either automate your deployment with GitHub Actions (recommended) or deploy manually from your device. Choose your method:
1414

docs/guides/components/functions/call.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This is useful if you want to:
22

3-
- Fetch or modify data in other smart contracts
3+
- Fetch or modify data in other modules
44
- Interact with standard canisters like ledger or governance
55
- Trigger behavior on other dapps
66

docs/guides/nextjs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Once you’re set up, continue to the [Deployment](#deployment) section below.
193193

194194
## Deployment
195195

196-
Use this guide to deploy your project to production — directly to a smart contract on mainnet.
196+
Use this guide to deploy your project to production — directly to a satellite on mainnet.
197197

198198
### 1. Static exports
199199

0 commit comments

Comments
 (0)