Skip to content
Open
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
36 changes: 18 additions & 18 deletions docs/learn/glossary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,6 @@ Learn more in our [Lumens section](./fundamentals/lumens.mdx#base-reserves).

Remove an asset from circulation, which can happen in two ways: 1) a holder sends the asset back to the issuing account 2) an issuer claws back a clawback-enabled asset from a holder's account.

### Core Advancement Proposals (CAPs) {#caps}

Proposals of standards to improve the Stellar protocol. CAPs deal with changes to the core protocol of the Stellar network.

Find a list of all draft, accepted, implemented, and rejected CAPs in [GitHub](https://github.com/stellar/stellar-protocol/tree/master/core).

### Claim Predicate

A recursive data structure used to construct complex conditionals with different values of ClaimPredicateType.
Expand Down Expand Up @@ -103,6 +97,12 @@ Contract tokens used to be referred to as "custom tokens", which has been deprec

:::

### Core Advancement Proposals (CAPs) {#caps}

Proposals of standards to improve the Stellar protocol. CAPs deal with changes to the core protocol of the Stellar network.

Find a list of all draft, accepted, implemented, and rejected CAPs in [GitHub](https://github.com/stellar/stellar-protocol/tree/master/core).

### Create account operation

Makes a payment to a 0-balance public key (Stellar address), thereby creating the account. You must use this operation to initialize an account rather than a standard payment operation.
Expand Down Expand Up @@ -189,6 +189,12 @@ The native, built-in token on the Stellar network.

Learn more about lumens in our [Lumens section](./fundamentals/lumens.mdx).

### Mainnet or Pubnet

The Stellar Public Network, aka mainnet, the main network used by applications in production.

Read more in our [Networks section](../networks/README.mdx).

### Master key

The private key used in initial account creation.
Expand Down Expand Up @@ -263,22 +269,16 @@ The ratio of the quote asset and the base asset in an order.

The public part of a keypair that identifies a Stellar account. The public key is public- it is visible on the ledger, anyone can look it up, and it is used when sending payments to the account, identifying the issuer of an asset, and verifying that a transaction is authorized.

### Mainnet or Pubnet

The Stellar Public Network, aka mainnet, the main network used by applications in production.
### Secret (private) key

Read more in our [Networks section](../networks/README.mdx).
The private key is part of a keypair, which is associated with an account. Do not share your secret key with anyone.

### Sequence Number

Used to identify and verify the order of transactions with the source account.

A transaction’s sequence number must always increase by one (unless minimum sequence number preconditions are set, or a bump sequence operation is used). SDKs and the Stellar Lab automatically increment the account’s sequence number by one when you build a transaction.

### Secret (private) key

The private key is part of a keypair, which is associated with an account. Do not share your secret key with anyone.

### Signer

Refers to the master key or to any other signing keys added later. A signer is defined as the pair: public key + weight. Signers can be set with the Set Options operation.
Expand Down Expand Up @@ -405,10 +405,10 @@ An integer representing a given date and time, as used on UNIX and Linux compute

A basic validator keeps track of the ledger and submits transactions for possible inclusion. It ensures reliable access to the network and sign-off on transactions. A full validator performs the functions of a basic validator, but also publishes a history archive containing snapshots of the ledger, including all network transactions and their results.

### XLM (lumens)

The native currency of the Stellar network.

### Wallet

An interface that gives a user access to an account stored on the ledger; that access is controlled by the account’s secret key. The wallet allows users to store and manage their assets.

### XLM (lumens)

The native currency of the Stellar network.
Loading