Skip to content

Commit 9ed5c34

Browse files
docs: remove keyword "on-chain" (#589)
* docs: remove keyword "on-chain" Signed-off-by: David Dal Busco <[email protected]> * πŸ“„ Update LLMs.txt snapshot for PR review --------- Signed-off-by: David Dal Busco <[email protected]> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 55eb149 commit 9ed5c34

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

β€Ž.llms-snapshots/llms-full.txtβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4465,7 +4465,7 @@ When a document is added to the `request` collection, a serverless function is t
44654465
* Transfer ICP from the user's wallet to the Satellite using the ICRC ledger's `transfer_from` method
44664466
* Mark the request as `processed` if the transfer succeeds
44674467

4468-
This pattern is useful for building workflows that require on-chain asset transfers or other canister calls in response to user actions.
4468+
This pattern is useful for building workflows that require asset transfers or other canister calls in response to user actions.
44694469

44704470
You can browse the source code here: [github.com/junobuild/examples/tree/main/functions/rust/calls](https://github.com/junobuild/examples/tree/main/functions/rust/calls)
44714471

@@ -5153,7 +5153,7 @@ When a document is added to the `request` collection, a serverless function is t
51535153
* Transfer ICP from the user's wallet to the Satellite using the ICRC ledger's `transfer_from` method
51545154
* Mark the request as `processed` if the transfer succeeds
51555155

5156-
This pattern is useful for building workflows that require on-chain asset transfers or other canister calls in response to user actions.
5156+
This pattern is useful for building workflows that require asset transfers or other canister calls in response to user actions.
51575157

51585158
You can browse the source code here: [github.com/junobuild/examples/tree/main/functions/typescript/calls](https://github.com/junobuild/examples/tree/main/functions/typescript/calls)
51595159

@@ -8198,9 +8198,9 @@ Snapshots can also be downloaded and uploaded offline using the CLI, allowing yo
81988198

81998199
## Limitations
82008200

8201-
Snapshots are stored on-chain, and the cost of a snapshot's memory consumption is charged to the module itself. This means they follow the lifecycle of your modules β€” if the module is deleted or runs out of cycles, its snapshot is also removed.
8201+
Snapshots are stored on the network, and the cost of a snapshot's memory consumption is charged to the module itself. This means they follow the lifecycle of your modules β€” if the module is deleted or runs out of cycles, its snapshot is also removed.
82028202

8203-
Each module is currently limited to one snapshot at a time. This approach offers a balance between flexibility and cost-efficiency, providing a reliable recovery point without unnecessary on-chain storage costs.
8203+
Each module is currently limited to one snapshot at a time. This approach offers a balance between flexibility and cost-efficiency, providing a reliable recovery point without unnecessary network storage costs.
82048204

82058205
If the need for multiple snapshots arises in the future, support may be expanded. Reach out and let us know.
82068206

@@ -11604,7 +11604,7 @@ To calculate the estimated monthly cost for 1 gigabyte of storage, you can refer
1160411604

1160511605
### Deployment
1160611606

11607-
Based on our experimentation, deploying an entire website on-chain, such as the website [http://juno.build](http://juno.build), which consists of approximately 900 files (including compressed versions of the files) and is 40 MB in size, is estimated to cost around 0.114 T Cycles, which converts to 0.0105 ICP ($0.15).
11607+
Based on our experimentation, deploying an entire website, such as the website [http://juno.build](http://juno.build), which consists of approximately 900 files (including compressed versions of the files) and is 40 MB in size, is estimated to cost around 0.114 T Cycles, which converts to 0.0105 ICP ($0.15).
1160811608

1160911609
It's important to note that subsequent deployments of your project can have significantly lower costs if the build consistency of your application is maintained. Juno only uploads new files to your satellites, which helps reduce costs compared to initial deployments.
1161011610

β€Ždocs/build/datastore/index.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Each [satellite] you create has a "Datastore", which can have as many [collectio
2626

2727
A collection contains a list of documents, each identified by a textual key that you define.
2828

29-
Each document is a record that holds the data you want to persist on-chain, along with timestamps (created and last updated), an associated owner (the creator of the document), and a version.
29+
Each document is a record that holds the data you want to persist, along with timestamps (created and last updated), an associated owner (the creator of the document), and a version.
3030

3131
The version is used to prevent data from being overwritten, and the associated owner is used to grant read and write permissions.
3232

β€Ždocs/examples/functions/rust/canister-calls.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When a document is added to the `request` collection, a serverless function is t
2626
- Transfer ICP from the user's wallet to the Satellite using the ICRC ledger's `transfer_from` method
2727
- Mark the request as `processed` if the transfer succeeds
2828

29-
This pattern is useful for building workflows that require on-chain asset transfers or other canister calls in response to user actions.
29+
This pattern is useful for building workflows that require asset transfers or other canister calls in response to user actions.
3030

3131
You can browse the source code here: [github.com/junobuild/examples/tree/main/functions/rust/calls](https://github.com/junobuild/examples/tree/main/functions/rust/calls)
3232

β€Ždocs/examples/functions/typescript/canister-calls.mdxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ When a document is added to the `request` collection, a serverless function is t
2626
- Transfer ICP from the user's wallet to the Satellite using the ICRC ledger's `transfer_from` method
2727
- Mark the request as `processed` if the transfer succeeds
2828

29-
This pattern is useful for building workflows that require on-chain asset transfers or other canister calls in response to user actions.
29+
This pattern is useful for building workflows that require asset transfers or other canister calls in response to user actions.
3030

3131
You can browse the source code here: [github.com/junobuild/examples/tree/main/functions/typescript/calls](https://github.com/junobuild/examples/tree/main/functions/typescript/calls)
3232

β€Ždocs/management/snapshots.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Snapshots can also be downloaded and uploaded offline using the CLI, allowing yo
2222

2323
## Limitations
2424

25-
Snapshots are stored on-chain, and the cost of a snapshot's memory consumption is charged to the module itself. This means they follow the lifecycle of your modules β€” if the module is deleted or runs out of cycles, its snapshot is also removed.
25+
Snapshots are stored on the network, and the cost of a snapshot's memory consumption is charged to the module itself. This means they follow the lifecycle of your modules β€” if the module is deleted or runs out of cycles, its snapshot is also removed.
2626

27-
Each module is currently limited to one snapshot at a time. This approach offers a balance between flexibility and cost-efficiency, providing a reliable recovery point without unnecessary on-chain storage costs.
27+
Each module is currently limited to one snapshot at a time. This approach offers a balance between flexibility and cost-efficiency, providing a reliable recovery point without unnecessary network storage costs.
2828

2929
If the need for multiple snapshots arises in the future, support may be expanded. Reach out and let us know.
3030

β€Ždocs/pricing.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ To calculate the estimated monthly cost for 1 gigabyte of storage, you can refer
7676

7777
### Deployment
7878

79-
Based on our experimentation, deploying an entire website on-chain, such as the website http://juno.build, which consists of approximately 900 files (including compressed versions of the files) and is 40 MB in size, is estimated to cost around 0.114 T Cycles, which converts to 0.0105 ICP ($0.15).
79+
Based on our experimentation, deploying an entire website, such as the website http://juno.build, which consists of approximately 900 files (including compressed versions of the files) and is 40 MB in size, is estimated to cost around 0.114 T Cycles, which converts to 0.0105 ICP ($0.15).
8080

8181
It's important to note that subsequent deployments of your project can have significantly lower costs if the build consistency of your application is maintained. Juno only uploads new files to your satellites, which helps reduce costs compared to initial deployments.
8282

0 commit comments

Comments
Β (0)