Skip to content

Commit cd7f3ae

Browse files
authored
Merge pull request #5243 from sacherjj/cleanup-pass
Cleanup pass of metadata.
2 parents 7425eca + 086815d commit cd7f3ae

120 files changed

Lines changed: 124 additions & 132 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,17 @@ future-proof to support innovations today and tomorrow. Guided by open-source pr
1313
empower individuals, the team seeks to provide an equitable foundation made for long-lasting impact. Read more about our
1414
mission at: https://casper.network
1515

16-
### Current Development Status
17-
The status on development is reported during the Community calls and is found [here](https://github.com/CasperLabs/Governance/wiki/Current-Status)
18-
1916
The Casper MainNet is live.
2017
- [cspr.live Block Explorer](https://cspr.live)
2118

2219
### Specification
2320

2421
- [Platform Specification](https://docs.casper.network/design)
25-
- [Highway Consensus Proofs](https://github.com/CasperLabs/highway/releases/latest)
22+
- [Highway Consensus Proofs](https://github.com/casper-network/highway/releases/latest)
2623
- [Zug Consensus Whitepaper](http://arxiv.org/pdf/2205.06314)
2724

2825
### Get Started with Smart Contracts
29-
- [Writing Smart Contracts](https://docs.casperlabs.io/developers/)
26+
- [Writing Smart Contracts](https://docs.casper.network/developers/)
3027
- [Rust Smart Contract SDK](https://crates.io/crates/cargo-casper)
3128
- [Rust Smart Contract API Docs](https://docs.rs/casper-contract/latest/casper_contract/contract_api/index.html)
3229
- [AssemblyScript Smart Contract API](https://www.npmjs.com/package/casper-contract)

binary_port/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2018"
55
description = "Types for the casper node binary port"
66
documentation = "https://docs.rs/casper-binary-port"
77
readme = "README.md"
8-
homepage = "https://casperlabs.io"
8+
homepage = "https://casper.network"
99
repository = "https://github.com/casper-network/casper-node/tree/master/binary_port"
1010
license = "Apache-2.0"
1111
exclude = ["proptest-regressions"]

binary_port/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22

33
[![LOGO](https://raw.githubusercontent.com/casper-network/casper-node/master/images/casper-association-logo-primary.svg)](https://casper.network/)
44

5-
[![Build Status](https://drone-auto-casper-network.casperlabs.io/api/badges/casper-network/casper-node/status.svg?branch=dev)](http://drone-auto-casper-network.casperlabs.io/casper-network/casper-node)
65
[![Crates.io](https://img.shields.io/crates/v/casper-hashing)](https://crates.io/crates/casper-binary-port)
76
[![Documentation](https://docs.rs/casper-hashing/badge.svg)](https://docs.rs/casper-binary-port)
87
[![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/casper-network/casper-node/blob/master/LICENSE)
98

109
Types for the binary port on a casper network node.
1110

12-
[Node Operator Guide](https://docs.casperlabs.io/operators/)
11+
[Node Operator Guide](https://docs.casper.network/operators/)
1312

1413
## License
1514

ci/upgrade_package_s3_storage.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
set -e
44

5-
# This script allows uploading, downloading and purging of files to genesis.casperlabs.io s3 for storing
5+
# This script allows uploading, downloading and purging of files to genesis.casper.network s3 for storing
66
# possible upgrade package releases to promote to a network or use for testing.
77

8-
# Using drone/GIT_HASH/PROTOCOL_VERSION as s3 bucket location in genesis.casperlabs.io
8+
# Using drone/GIT_HASH/PROTOCOL_VERSION as s3 bucket location in genesis.casper.network
99

1010
# Check python has toml for getting PROTOCOL_VERSION
1111
set +e
@@ -58,7 +58,7 @@ export AWS_ACCESS_KEY_ID
5858
AWS_SECRET_ACCESS_KEY=$(echo "$CREDENTIALS" | jq -r .data.cicd_agent_to_s3.aws_secret_key)
5959
export AWS_SECRET_ACCESS_KEY
6060

61-
CL_S3_BUCKET="genesis.casperlabs.io"
61+
CL_S3_BUCKET="genesis.casper.network"
6262
CL_S3_LOCATION="drone/$GIT_HASH"
6363

6464
case "$ACTION" in

execution_engine/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "casper-execution-engine"
33
version = "8.0.1" # when updating, also update 'html_root_url' in lib.rs
4-
authors = ["Henry Till <henrytill@gmail.com>", "Ed Hastings <ed@casperlabs.io>"]
4+
authors = ["Henry Till <henrytill@gmail.com>", "Ed Hastings <ed@casper.network>", "Michał Papierski <michal@casper.network>"]
55
edition = "2021"
66
description = "Casper execution engine crates."
77
readme = "README.md"
88
documentation = "https://docs.rs/casper-execution-engine"
9-
homepage = "https://casperlabs.io"
9+
homepage = "https://casper.network"
1010
repository = "https://github.com/casper-network/casper-node/tree/master/execution_engine"
1111
license = "Apache-2.0"
1212

execution_engine/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![LOGO](https://raw.githubusercontent.com/casper-network/casper-node/master/images/casper-association-logo-primary.svg)](https://casper.network/)
44

5-
[![Build Status](https://drone-auto-casper-network.casperlabs.io/api/badges/casper-network/casper-node/status.svg?branch=dev)](http://drone-auto-casper-network.casperlabs.io/casper-network/casper-node)
65
[![Crates.io](https://img.shields.io/crates/v/casper-execution-engine)](https://crates.io/crates/casper-execution-engine)
76
[![Documentation](https://docs.rs/casper-execution-engine/badge.svg)](https://docs.rs/casper-execution-engine)
87
[![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/casper-network/casper-node/blob/master/LICENSE)

execution_engine_testing/test_support/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "casper-engine-test-support"
33
version = "8.0.1" # when updating, also update 'html_root_url' in lib.rs
4-
authors = ["Fraser Hutchison <fraser@casperlabs.io>"]
4+
authors = ["Fraser Hutchison <fraser@casperlabs.io>", "Michał Papierski <michal@casper.network>"]
55
edition = "2021"
66
description = "Library to support testing of Wasm smart contracts for use on the Casper network."
77
documentation = "https://docs.rs/casper-engine-test-support"
88
readme = "README.md"
9-
homepage = "https://casperlabs.io"
9+
homepage = "https://casper.network"
1010
repository = "https://github.com/casper-network/casper-node/tree/master/execution_engine_testing/test_support"
1111
license = "Apache-2.0"
1212

execution_engine_testing/test_support/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![LOGO](https://raw.githubusercontent.com/casper-network/casper-node/master/images/casper-association-logo-primary.svg)](https://casper.network/)
44

5-
[![Build Status](https://drone-auto-casper-network.casperlabs.io/api/badges/casper-network/casper-node/status.svg?branch=dev)](http://drone-auto-casper-network.casperlabs.io/casper-network/casper-node)
65
[![Crates.io](https://img.shields.io/crates/v/casper-engine-test-support)](https://crates.io/crates/casper-engine-test-support)
76
[![Documentation](https://docs.rs/casper-engine-test-support/badge.svg)](https://docs.rs/casper-engine-test-support)
87
[![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/casper-network/casper-node/blob/master/LICENSE)

execution_engine_testing/tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "casper-engine-tests"
33
version = "0.1.0"
4-
authors = ["Ed Hastings <ed@casperlabs.io>, Henry Till <henrytill@gmail.com>"]
4+
authors = ["Ed Hastings <ed@casper.network>, Henry Till <henrytill@gmail.com>"]
55
edition = "2021"
66

77
[dependencies]

node/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22

33
[![LOGO](https://raw.githubusercontent.com/casper-network/casper-node/master/images/casper-association-logo-primary.svg)](https://casper.network/)
44

5-
[![Build Status](https://drone-auto-casper-network.casperlabs.io/api/badges/casper-network/casper-node/status.svg?branch=dev)](http://drone-auto-casper-network.casperlabs.io/casper-network/casper-node)
65
[![Crates.io](https://img.shields.io/crates/v/casper-node)](https://crates.io/crates/casper-node)
76
[![Documentation](https://docs.rs/casper-node/badge.svg)](https://docs.rs/casper-node)
87
[![License](https://img.shields.io/badge/license-Apache-blue)](https://github.com/casper-network/casper-node/blob/master/LICENSE)
98

109
The component for running a node on the casper network.
1110

12-
[Node Operator Guide](https://docs.casperlabs.io/operators/)
11+
[Node Operator Guide](https://docs.casper.network/operators/)
1312

1413
## License
1514

0 commit comments

Comments
 (0)