Copyright Information

NeoRust is Copyright © 2020-2025 R3E Network and contributors.

License

NeoRust is dual-licensed under:

When adding new files to the NeoRust project, please include the appropriate copyright header:

For Rust files:

#![allow(unused)]
fn main() {
// Copyright (c) 2023-2025 R3E Network
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
}

For Markdown/Documentation files:

# Title

Copyright © 2020-2025 R3E Network. All rights reserved.

[Main content starts here...]

For Shell Scripts:

#!/bin/bash
# Copyright (c) 2020-2025 R3E Network
# Licensed under MIT or Apache-2.0 license. See LICENSE files for details.

[Script content starts here...]

Annual Updates

The copyright year range should be updated at the beginning of each new year. Update the following files:

  1. LICENSE-MIT (update the year range)
  2. COPYRIGHT (update the year range)
  3. README.md (update the copyright notice)
  4. docs/book.toml (update authors field)
  5. Cargo.toml (update authors field)
  6. neo-cli/Cargo.toml (update authors field)
  7. Any other specific files with copyright notices