Skip to content

Commit 30105f6

Browse files
committed
Address review comments
1 parent af3eaf4 commit 30105f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

condor/transactions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Transactions encapsulate user intents. For example, if Alice intends to transfe
2020

2121
Transactions may be either 'native' or 'WASM':
2222

23-
- Native transactions are those that interact with system contracts such as mint and/or auction. They do not require any Web Assembly(WASM) payload to be constructed, are normally compact in size, and are processed directly on the metal, i.e. host-side.
23+
- Native transactions are those that interact with system contracts such as `mint` and/or `auction`. They do not require any Web Assembly(WASM) payload to be constructed, are normally compact in size, and are processed directly on the metal, i.e. host-side.
2424

2525
- Web Assembly(WASM) transactions are those that interact with the system via either on-chain smart contracts or session logic. All such interactions are based upon user-defined WASM binaries, and are executed within one of the node's supported virtual machines.
2626

@@ -30,9 +30,9 @@ Casper 2.0 Native Transaction Types:
3030

3131
|Type|Description|
3232
|--------|---------------------------------|
33-
| `add-bid` | To create a bid purse |
33+
| `add-bid` | To create a bid purse or or increase an existing bidder's bid amount |
3434
| `activate-bid` | To reactivate an inactive bid |
35-
| `withdraw-bid` | Used to decrease a validator's stake |
35+
| `withdraw-bid` | Used to decrease a validator's stake or remove their bid completely if the remaining stake is below the minimum required amount |
3636
| `delegate` | Used to add a new delegator or increase an existing delegator's stake |
3737
| `undelegate` | To reduce a delegator's stake or remove the delegator if the remaining stake is zero |
3838
| `redelegate` | To reduce a delegator's stake or remove the delegator if the remaining stake is zero. After the unbonding delay, it will automatically delegate to a new validator |
@@ -50,7 +50,7 @@ The Deploy model is deprecated as of Casper 2.0, and support will be removed ent
5050

5151
## How to create a transaction
5252

53-
A transaction, such as transferring CSPR tokens from one user's purse to another, can be created and sent to the Casper Network for processing using any of three methods.
53+
A transaction, such as transferring CSPR tokens from one user's purse to another, can be created and sent to the Casper Network for processing using any of three methods:
5454

5555
1. CSPR.Live
5656
2. SDK [e.g JavaScript/TypeScript SDK]

0 commit comments

Comments
 (0)