Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terminology Consistency Update. #3433

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
#
# - `git_commit` is the hash of the current git commit — used for
# versioning information inside the binaries.
# - `build_date` is the date and time of when the docker image was
# - `build_date` is the date and time at which the docker image was
# built
# - `binaries` is the path to the directory containing the Linera
# binaries. Leave unset to build the binaries from scratch.
# - `target` is a Rust target quadruple. Currently known to be
# - `target` is a Rust target triple. Currently known to be
# supported are `x86_64-unknown-linux-gnu` and
# `aarch64-unknown-linux-gnu`.

Expand Down
8 changes: 4 additions & 4 deletions examples/crowd-funding/README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# Crowd-funding Example Application
# Сrowdfunding Example Application

This example application implements crowd-funding campaigns using fungible tokens in
This example application implements crowdfunding campaigns using fungible tokens in
the `fungible` application. This demonstrates how to compose applications together and
how to instantiate applications where one chain has a special role.

Once an application is built and its bytecode published on a Linera chain, the
published bytecode can be used to create different instances. Each instance or crowd-funding
published bytecode can be used to create different instances. Each instance or crowdfunding
represents a different campaign.

## How It Works

The chain that created the campaign is called the "campaign chain". It is owned by the
creator (and beneficiary) of the campaign.

The goal of a crowd-funding campaign is to let people pledge any number of tokens from
The goal of a crowdfunding campaign is to let people pledge any number of tokens from
their own chain(s). If enough tokens are pledged before the campaign expires, the campaign is
_successful_ and the creator can receive all the funds, including ones exceeding the funding
target. Otherwise, the campaign is _unsuccessful_ and contributors should be refunded.
Expand Down