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

Release 1.0 #6

Merged
merged 3 commits into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
This repository contains an [ink!][ink] smart contract for [Aleph Zero][aleph] blockchain which enables wrapping the native chain coin (AZERO) into a fungible token following [PSP22][psp22] standard.

The contract is deployed to both test and main networks under the following addresses:
- Aleph Zero Mainnet: `[TODO]`
- Aleph Zero Testnet: `[TODO]`
- Aleph Zero Mainnet: `5CtuFVgEUz13SFPVY6s2cZrnLDEkxQXc19aXrNARwEBeCXgg`
- Aleph Zero Testnet: `5EFDb7mKbougLtr5dnwd5KDfZ3wK55JPGPLiryKq4uRMPR46`

The [`artifacts`][artifacts] folder contains the exact compiled binary that has been deployed, as well as all other compilation artifacts for verification purposes.

Expand Down
10 changes: 0 additions & 10 deletions RELEASE_TODO.md

This file was deleted.

2 changes: 1 addition & 1 deletion artifacts/wrapped_azero.contract

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion artifacts/wrapped_azero.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"source": {
"hash": "0xfc5b9a47f139db14f0101d114d6287c9a18e8856dd4fc35d41ae9c89950af900",
"hash": "0xd7aeeeabc8f6c84b44d0b978850aa1dcc9ee6202fbadf361a9d184185c4d71fd",
"language": "ink! 4.3.0",
"compiler": "rustc 1.76.0",
"build_info": {
Expand Down
Binary file modified artifacts/wrapped_azero.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ pub trait WrappedAZERO {
}

/// Mainnet deployment address
pub const MAINNET: &str = "TODO";
pub const MAINNET: &str = "5CtuFVgEUz13SFPVY6s2cZrnLDEkxQXc19aXrNARwEBeCXgg";
/// Testnet deployment address
pub const TESTNET: &str = "TODO";
pub const TESTNET: &str = "5EFDb7mKbougLtr5dnwd5KDfZ3wK55JPGPLiryKq4uRMPR46";
Loading