Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NEP-330 extension: Build details extension #533

Merged
merged 42 commits into from
Apr 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
8faf0ec
update nep-0330 specification
Canvinus Feb 19, 2024
b976790
add nep-0330 version 1.2.0
Canvinus Feb 19, 2024
7238821
update nep-0330 summary and motivation
ztsalexey Feb 19, 2024
7acc38b
Merge branch 'master' into master
Canvinus Mar 1, 2024
811cc36
Update neps/nep-0330.md
Canvinus Mar 5, 2024
fddcee4
Update neps/nep-0330.md
Canvinus Mar 5, 2024
b1ebba0
Update neps/nep-0330.md
Canvinus Mar 5, 2024
8a1115d
Update neps/nep-0330.md
Canvinus Mar 5, 2024
2b3bd13
Update neps/nep-0330.md
Canvinus Mar 5, 2024
6046647
Update neps/nep-0330.md
Canvinus Mar 5, 2024
29f9f11
Update neps/nep-0330.md
Canvinus Mar 5, 2024
18968ea
implement suggested updates
Canvinus Mar 5, 2024
f47d5ed
fix indentation
Canvinus Mar 5, 2024
7a186fe
fix indentation in examples
Canvinus Mar 5, 2024
04c54a5
add link with commit reference
Canvinus Mar 5, 2024
35bbcde
specify that image is in context of docker
Canvinus Mar 5, 2024
6a10073
Update nep-0330.md
Canvinus Mar 6, 2024
837d81b
Update nep-0330.md
Canvinus Mar 6, 2024
c38d9f5
use semantic version in example
Canvinus Mar 6, 2024
aa84739
rename build_environment
Canvinus Mar 6, 2024
61025bc
suggest using docker image digest
Canvinus Mar 6, 2024
cce3cd1
fix indentation in Rust struct
Canvinus Mar 6, 2024
66db5e8
contract_path in context of crates
Canvinus Mar 6, 2024
ddbf6b0
Update neps/nep-0330.md
Canvinus Mar 7, 2024
360ed58
Update neps/nep-0330.md
Canvinus Mar 7, 2024
510f831
Update neps/nep-0330.md
Canvinus Mar 7, 2024
2cbbda3
rename Rust struct to BuildInfo
Canvinus Mar 7, 2024
4e24ceb
Update neps/nep-0330.md
Canvinus Mar 7, 2024
41f3c9c
Update neps/nep-0330.md
Canvinus Mar 7, 2024
222d260
add note on having Cargo.lock in source code snapshot
Canvinus Mar 9, 2024
35bed0f
add cargo-near-new-project-template as an example
Canvinus Mar 9, 2024
586ddd3
fix the comment of source_code_snapshot
Canvinus Mar 9, 2024
2005598
fix the comment of source_code_snapshot
Canvinus Mar 9, 2024
6781014
fix link examples
Canvinus Mar 9, 2024
0f70f5d
add commas to e.g.
Canvinus Mar 9, 2024
55d3f1e
add cargo-near-template in source_code_snapshot example
Canvinus Mar 9, 2024
c06b054
add ensuring wasm reproducibility section
Canvinus Mar 13, 2024
cbf4f0f
add info about pathes in ensuring reproducibility
Canvinus Apr 11, 2024
44e681d
add blank line to list
Canvinus Apr 11, 2024
ccf9330
fix linter error
Canvinus Apr 11, 2024
401b04a
fix more linter errors in SelectingBlockProducers.md
Canvinus Apr 11, 2024
b7224ca
revert to commit 44e681dc0137361c2a99417ffe4dffd6461ed70f
Canvinus Apr 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update neps/nep-0330.md
Co-authored-by: Robert Zaremba <robert@zaremba.ch>
  • Loading branch information
Canvinus and robert-zaremba authored Mar 5, 2024
commit 2b3bd1374e2f1e26dbdf66449498c6e3a755b922
2 changes: 1 addition & 1 deletion neps/nep-0330.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Successful implementations of this standard will introduce a new (`ContractSour
The metadata will include optional fields:

- `version`: a string that references the specific commit ID or a tag of the code currently deployed on-chain. Examples: `"v0.8.1"`, `"a80bc29"`.
- `link`: a string that references the link to the open-source code. This can be anything such as Github or a CID to somewhere on IPFS.
- `link`: an URL to the currently deployed code. It must include version or a tag if using a GitHub or a GitLab link. Examples: https://github.com/near/near-cli-rs/releases/tag/v0.8.1, an IPFS CID.
- `standards`: a list of objects (see type definition below) that enumerates the NEPs supported by the contract. If this extension is supported, it is advised to also include NEP-330 version 1.1.0 in the list (`{standard: "nep330", version: "1.1.0"}`).
- `build_details`: a build details object (see type definition below) that contains all the necessary information about how the contract was built, making it possible for others to reproduce the same WASM of this contract.

Expand Down
Loading