-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release preparations - WEGLD swap contract
- Loading branch information
1 parent
025580a
commit 18c077f
Showing
18 changed files
with
60 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
[package] | ||
name = "elrond-sc-price-aggregator" | ||
version = "0.34.1" | ||
|
||
authors = ["Claudiu-Marcel Bruda <[email protected]>", "Elrond Network <[email protected]>"] | ||
authors = [ | ||
"Claudiu-Marcel Bruda <[email protected]>", | ||
"Elrond Network <[email protected]>", | ||
] | ||
license = "GPL-3.0-only" | ||
readme = "README.md" | ||
repository = "https://github.com/ElrondNetwork/elrond-wasm-rs" | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[package] | ||
name = "elrond-sc-wegld-swap" | ||
version = "0.34.1" | ||
|
||
authors = [ | ||
"Dorin Iancu <[email protected]>", | ||
"Elrond Network <[email protected]>", | ||
] | ||
license = "GPL-3.0-only" | ||
readme = "README.md" | ||
repository = "https://github.com/ElrondNetwork/elrond-wasm-rs" | ||
homepage = "https://elrond.com/" | ||
documentation = "https://docs.elrond.com/" | ||
description = "Elrond Price aggregator Smart Contract" | ||
keywords = ["elrond", "wasm", "webassembly", "blockchain", "contract"] | ||
categories = ["no-std", "wasm", "cryptography::cryptocurrencies"] | ||
edition = "2018" | ||
|
||
[lib] | ||
path = "src/wegld.rs" | ||
|
||
[dependencies.elrond-wasm] | ||
version = "0.34.1" | ||
path = "../../../elrond-wasm" | ||
|
||
[dependencies.elrond-wasm-modules] | ||
version = "0.34.1" | ||
path = "../../../elrond-wasm-modules" | ||
|
||
[dev-dependencies.elrond-wasm-debug] | ||
version = "0.34.1" | ||
path = "../../../elrond-wasm-debug" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# EGLD-WEGLD swap | ||
|
||
## Overview | ||
|
||
The EGLD-WEGLD swap contract mints and distributes the WEGLD token, in equal amount to the amount of EGLD locked in the contract. | ||
|
||
There are such contracts deployed in each shard. |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...racts/core/egld-esdt-swap/meta/Cargo.toml → contracts/core/wegld-swap/meta/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[package] | ||
name = "egld-esdt-swap-meta" | ||
name = "elrond-sc-wegld-swap-meta" | ||
version = "0.0.0" | ||
authors = [ "Dorin Iancu <[email protected]>",] | ||
edition = "2018" | ||
publish = false | ||
|
||
[dev-dependencies] | ||
|
||
[dependencies.egld-esdt-swap] | ||
[dependencies.elrond-sc-wegld-swap] | ||
path = ".." | ||
|
||
[dependencies.elrond-wasm] | ||
version = "0.34.0" | ||
version = "0.34.1" | ||
path = "../../../../elrond-wasm" | ||
|
||
[dependencies.elrond-wasm-debug] | ||
version = "0.34.0" | ||
version = "0.34.1" | ||
path = "../../../../elrond-wasm-debug" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fn main() { | ||
elrond_wasm_debug::meta::perform::<elrond_sc_wegld_swap::AbiProvider>(); | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "egld-esdt-swap-wasm" | ||
name = "elrond-sc-wegld-swap-wasm" | ||
version = "0.0.0" | ||
authors = [ "Dorin Iancu <[email protected]>",] | ||
edition = "2018" | ||
|
@@ -20,14 +20,14 @@ lto = true | |
debug = false | ||
panic = "abort" | ||
|
||
[dependencies.egld-esdt-swap] | ||
[dependencies.elrond-sc-wegld-swap] | ||
path = ".." | ||
|
||
[dependencies.elrond-wasm-node] | ||
version = "0.34.0" | ||
version = "0.34.1" | ||
path = "../../../../elrond-wasm-node" | ||
|
||
[dependencies.elrond-wasm-output] | ||
version = "0.34.0" | ||
version = "0.34.1" | ||
path = "../../../../elrond-wasm-output" | ||
features = ["wasm-output-mode"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters