Skip to content

Commit 639617c

Browse files
committed
Removing assembly script.
Correcting bonding amounts. Removing old references.
1 parent 85c6812 commit 639617c

File tree

4 files changed

+3
-127
lines changed

4 files changed

+3
-127
lines changed

docs/developers/writing-onchain-code/assembly-script.md

-122
This file was deleted.

docs/developers/writing-onchain-code/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ This section shows you how to write session code and smart contracts in Rust and
1414
| Title | Description |
1515
| ------------------------------------------- | ------------------------------- |
1616
|[Getting Started with Rust](./getting-started.md)| An introduction to using Rust with the Casper Platform|
17-
|[Getting Started with AssemblyScript](./assembly-script.md) | An introduction to using AssemblyScript with the Casper Platform |
1817
|[Writing a Basic Smart Contract in Rust](./simple-contract.md) | An example of a smart contract built in Rust|
1918
|[Unit Testing Smart Contracts](./testing-contracts.md) | Steps to test contract code using the unit testing framework|
2019
|[Upgrading and Maintaining Smart Contracts](./upgrading-contracts.md)| An introduction to versioning smart contracts|

docs/operators/becoming-a-validator/bonding.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Calling the `add_bid` entry point on the auction contract has a fixed cost of 2.
6666

6767
**Example:**
6868

69-
This example command uses the Casper Testnet to bid 10,000 CSPR for a validating slot:
69+
This example command uses the Casper Testnet to bid 100,000 CSPR for a validating slot:
7070

7171
```bash
7272
sudo -u casper casper-client put-deploy \
@@ -77,7 +77,7 @@ sudo -u casper casper-client put-deploy \
7777
--session-hash hash-93d923e336b20a4c4ca14d592b60e5bd3fe330775618290104f9beb326db7ae2 \
7878
--session-entry-point add_bid \
7979
--session-arg "public_key:public_key='01c297d2931fec7e22b2fb1ae3ca5afdfacc2c82ba501e8ed158eecef82b4dcdee'" \
80-
--session-arg "amount:U512='$[100000000 * 1000000000]'" \
80+
--session-arg "amount:U512='$[100000 * 1000000000]'" \
8181
--session-arg "delegation_rate:u8='10'"
8282
```
8383

@@ -137,7 +137,7 @@ sudo -u casper casper-client put-deploy \
137137
--payment-amount 3000000000 \
138138
--session-path ~/casper-node/target/wasm32-unknown-unknown/release/add_bid.wasm \
139139
--session-arg "public_key:public_key='01c297d2931fec7e22b2fb1ae3ca5afdfacc2c82ba501e8ed158eecef82b4dcdee'" \
140-
--session-arg "amount:U512='$[10000 * 1000000000]'" \
140+
--session-arg "amount:U512='$[100000 * 1000000000]'" \
141141
--session-arg "delegation_rate:u8='10'"
142142
```
143143

docs/operators/setup/node-endpoints.md

-1
Original file line numberDiff line numberDiff line change
@@ -214,5 +214,4 @@ Here is a summary of the links mentioned on this page:
214214
- [Confirming that the node is synchronized](./joining.md#step-7-confirm-the-node-is-synchronized)
215215
- [Monitoring and consuming events](../../developers/dapps/monitor-and-consume-events.md)
216216
- [Private network access control](../setup-network/create-private.md#network-access-control)
217-
- [FAQs for a basic validator node ](https://support.casperlabs.io/hc/en-gb/sections/6960448246683-Node-Operation-FAQ)
218217
- [External FAQs on Mainnet and Testnet validator node setup](https://docs.cspr.community/docs/faq-validator.html)

0 commit comments

Comments
 (0)