Skip to content

Commit

Permalink
Merge branch 'master' into fix/block_proposal_token_renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiloc authored Oct 4, 2024
2 parents f86cc47 + c497066 commit f8e9873
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion concepts/block-production/stacking.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Stacking functionality is implemented as a smart contract, using Clarity. Read m

### Locking and Unlocking STX

One important thing to keep in mind is that when we speak of STX tokens being "locked", no transfer of STX tokens is occuring. Locking STX tokens is non-custodial, and STX tokens remain in your wallet. When you initiate a stacking transaction (described below) those tokens are locked and unsependable at the protocol level, but they do not leave the stacker's wallet.
One important thing to keep in mind is that when we speak of STX tokens being "locked", no transfer of STX tokens is occuring. Locking STX tokens is non-custodial, and STX tokens remain in your wallet. When you initiate a stacking transaction (described below) those tokens are locked and unspendable at the protocol level, but they do not leave the stacker's wallet.

At the end of the lock period, they will be automatically unlocked (spendable at the protocol level) but this occurs implicitly, there is no direct transaction that unlocks them.

Expand Down
3 changes: 1 addition & 2 deletions concepts/network-fundamentals/accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Stacks uses an accounts-based model, more similar to Ethereum, rather than a [UTXO](https://learnmeabitcoin.com/technical/transaction/utxo/) model like Bitcoin. In a UTXO model, the network operates as a ledger, with each UTXO being analagous to a cash bill.

With an accounts, model, each account is associated with a balance and that balance can be added to or subtracted from.
With an accounts-based model, each account is associated with a balance and that balance can be added to or subtracted from.

Stacks accounts are entities that own assets, like Stacks (STX) tokens. An account has an address, private key, nonce, and one or more asset balances.

Expand Down Expand Up @@ -96,4 +96,3 @@ const stacksAddress = getAddressFromPrivateKey(
```

Finally, you can generate new account using a Stacks-enabled wallet like [Leather](https://leather.io/), [Xverse](https://www.xverse.app/), or [Asigna](https://asigna.io/).

1 change: 1 addition & 0 deletions reference/sample-configuration-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ The signer configuration file is a TOML file that contains the configuration opt
| db\_path || Path to the signer's database file or :memory: for an in-memory database. |
| metrics\_endpoint | | IP:PORT for Prometheus metrics collection. |
| event\_timeout\_ms | | Time to wait (in milliseconds) for a response from the stacker-db instance. |
| block\_proposal\_timeout\_ms | | Time to wait (in milliseconds) for a block response from miners. |
| dkg\_public\_timeout\_ms | | Timeout in (milliseconds) to gather DkgPublicShares messages. |
| dkg\_private\_timeout\_ms | | Timeout in (milliseconds) to gather DkgPrivateShares messages. |
| dkg\_end\_timeout\_ms | | Timeout in (milliseconds) to gather DkgEnd messages. |
Expand Down

0 comments on commit f8e9873

Please sign in to comment.