From 99309ea72b51614d3fa2fc8a8352c3ac9bbb1ba4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dj8yf0=CE=BCl?= Date: Fri, 31 Jan 2025 02:15:08 +0200 Subject: [PATCH] remove noise --- near-contract-standards/src/contract_metadata.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/near-contract-standards/src/contract_metadata.rs b/near-contract-standards/src/contract_metadata.rs index 0924693e3..3be71f9fc 100644 --- a/near-contract-standards/src/contract_metadata.rs +++ b/near-contract-standards/src/contract_metadata.rs @@ -13,10 +13,6 @@ use near_sdk::serde::{Deserialize, Serialize}; pub struct ContractSourceMetadata { /// Optional version identifier, typically a semantic version /// - /// **NOTE**: - /// As of **NEP-330** standard version **1.2.0** - /// this field may or may not be consistent with [`Self::link`] and with [`BuildInfo::source_code_snapshot`], but only [`BuildInfo::source_code_snapshot`] defines source code for formal reproducibility verification, and [`Self::link`] and [`Self::version`] do not - /// /// ## Examples: /// /// ```rust,no_run @@ -28,10 +24,6 @@ pub struct ContractSourceMetadata { pub version: Option, /// Optional URL to source code repository/tree /// - /// **NOTE**: - /// As of **NEP-330** standard version **1.2.0** - /// this field may or may not be consistent with [`Self::version`] and with [`BuildInfo::source_code_snapshot`], but only [`BuildInfo::source_code_snapshot`] defines source code for formal reproducibility verification, and [`Self::link`] and [`Self::version`] do not - /// /// ## Examples: /// /// ```rust,no_run @@ -106,6 +98,8 @@ pub struct Standard { mod build_info { use near_sdk::serde::{Deserialize, Serialize}; + /// Defines all required details for formal WASM build reproducibility verification + /// according to [**NEP-330 standard**](https://github.com/near/NEPs/blob/master/neps/nep-0330.md) #[derive(Debug, Clone, PartialEq, Eq, Default, Serialize, Deserialize)] #[serde(crate = "near_sdk::serde")] pub struct BuildInfo {