Skip to content

Commit

Permalink
Merge pull request #6 from Cardinal-Cryptography/release
Browse files Browse the repository at this point in the history
Release 1.0
  • Loading branch information
h4nsu authored May 6, 2024
2 parents 9007f07 + 76e6ca8 commit 029b6c8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 16 deletions.
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";

0 comments on commit 029b6c8

Please sign in to comment.