You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .llms-snapshots/llms-full.txt
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -4465,7 +4465,7 @@ When a document is added to the `request` collection, a serverless function is t
4465
4465
* Transfer ICP from the user's wallet to the Satellite using the ICRC ledger's `transfer_from` method
4466
4466
* Mark the request as `processed` if the transfer succeeds
4467
4467
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.
4469
4469
4470
4470
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)
4471
4471
@@ -5153,7 +5153,7 @@ When a document is added to the `request` collection, a serverless function is t
5153
5153
* Transfer ICP from the user's wallet to the Satellite using the ICRC ledger's `transfer_from` method
5154
5154
* Mark the request as `processed` if the transfer succeeds
5155
5155
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.
5157
5157
5158
5158
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)
5159
5159
@@ -8198,9 +8198,9 @@ Snapshots can also be downloaded and uploaded offline using the CLI, allowing yo
8198
8198
8199
8199
## Limitations
8200
8200
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.
8202
8202
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.
8204
8204
8205
8205
If the need for multiple snapshots arises in the future, support may be expanded. Reach out and let us know.
8206
8206
@@ -11604,7 +11604,7 @@ To calculate the estimated monthly cost for 1 gigabyte of storage, you can refer
11604
11604
11605
11605
### Deployment
11606
11606
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).
11608
11608
11609
11609
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.
Copy file name to clipboardExpand all lines: docs/build/datastore/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Each [satellite] you create has a "Datastore", which can have as many [collectio
26
26
27
27
A collection contains a list of documents, each identified by a textual key that you define.
28
28
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.
30
30
31
31
The version is used to prevent data from being overwritten, and the associated owner is used to grant read and write permissions.
Copy file name to clipboardExpand all lines: docs/examples/functions/rust/canister-calls.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ When a document is added to the `request` collection, a serverless function is t
26
26
- Transfer ICP from the user's wallet to the Satellite using the ICRC ledger's `transfer_from` method
27
27
- Mark the request as `processed` if the transfer succeeds
28
28
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.
30
30
31
31
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)
Copy file name to clipboardExpand all lines: docs/examples/functions/typescript/canister-calls.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ When a document is added to the `request` collection, a serverless function is t
26
26
- Transfer ICP from the user's wallet to the Satellite using the ICRC ledger's `transfer_from` method
27
27
- Mark the request as `processed` if the transfer succeeds
28
28
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.
30
30
31
31
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)
Copy file name to clipboardExpand all lines: docs/management/snapshots.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,9 @@ Snapshots can also be downloaded and uploaded offline using the CLI, allowing yo
22
22
23
23
## Limitations
24
24
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.
26
26
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.
28
28
29
29
If the need for multiple snapshots arises in the future, support may be expanded. Reach out and let us know.
Copy file name to clipboardExpand all lines: docs/pricing.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ To calculate the estimated monthly cost for 1 gigabyte of storage, you can refer
76
76
77
77
### Deployment
78
78
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).
80
80
81
81
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.
0 commit comments