forked from aurora-is-near/aurora-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ERC-20: forbid using invalid NEP141 AccountID for mapping (aurora-is-near#179) * Timestamp should be in milliseconds for Ethereum compatibility (aurora-is-near#208) * feat(engine): Blockhash definition (aurora-is-near#213) * Update etc/state-migration-test/Cargo.lock (aurora-is-near#211) * Include cost of access list in intrinsic gas (aurora-is-near#219) * Bump tar from 4.4.13 to 4.4.15 in /etc/eth-contracts (aurora-is-near#217) * Feat(engine): Relayer payment (aurora-is-near#215) * Scheduled lint is supposed to run nightly clippy (aurora-is-near#214) * Return actual status of a transaction (aurora-is-near#218) * Added parser for Integer types (aurora-is-near#183) * Update to latest nightly (aurora-is-near#221) * Fix(engine): do not panic when user has insufficient balance to cover gas (aurora-is-near#223) * Update lock files (aurora-is-near#224) * Method to fix balance of aurora account on testnet (aurora-is-near#225) * Use math api host functions on mainnet (aurora-is-near#228) * NEP-141 compliance correctness (aurora-is-near#202) * Adapt workflows to dockerized runners (aurora-is-near#231) * Move block height to the end of hashed data. (aurora-is-near#233) * Ensure solidity artifacts are always recompiled (aurora-is-near#234) * Prevent test binary from deploying (aurora-is-near#237) * Add removal of eth-contracts to `make clean` * Remove deploy_code feature gate Co-authored-by: Dmitry Strokov <[email protected]> Co-authored-by: Evgeny Ukhanov <[email protected]> Co-authored-by: Joshua J. Bouw <[email protected]> Co-authored-by: Kirill <[email protected]> Co-authored-by: Michael Birch <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
65a1d11
commit bb21459
Showing
39 changed files
with
1,117 additions
and
257 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 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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,6 +1,6 @@ | ||
[package] | ||
name = "aurora-engine" | ||
version = "1.5.0" | ||
version = "1.6.0" | ||
authors = ["NEAR <[email protected]>"] | ||
edition = "2018" | ||
description = "" | ||
|
@@ -45,6 +45,7 @@ lto = true | |
opt-level = 3 | ||
|
||
[dependencies] | ||
base64 = { version = "0.13.0", default-features = false, features = ["alloc"] } | ||
blake2 = { git = "https://github.com/near/near-blake2.git", version = "0.9.1", default-features = false } | ||
borsh = { version = "0.8.2", default-features = false } | ||
bn = { package = "aurora-bn", git = "https://github.com/aurora-is-near/aurora-bn.git", default-features = false } | ||
|
@@ -62,7 +63,7 @@ logos = { version = "0.12", default-features = false, features = ["export_derive | |
ethabi = { git = "https://github.com/darwinia-network/ethabi", branch = "xavier-no-std", default-features = false } | ||
hex = { version = "0.4", default-features = false, features = ["alloc"] } | ||
byte-slice-cast = { version = "1.0", default-features = false } | ||
rjson = { version = "0.3.1", default-features = false } | ||
rjson = { git = "https://github.com/aurora-is-near/rjson", rev = "cc3da949", default-features = false, features = ["integer"] } | ||
|
||
[dev-dependencies] | ||
bstr = "0.2" | ||
|
@@ -80,7 +81,6 @@ rand = "0.7.3" | |
criterion = "0.3.4" | ||
git2 = "0.13" | ||
lazy-static-include = "3.1.1" | ||
base64 = "0.13.0" | ||
|
||
[features] | ||
default = ["sha2", "std"] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.5.0 | ||
1.6.0 |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,4 +1,4 @@ | ||
[toolchain] | ||
channel = "nightly-2021-03-25" | ||
channel = "nightly-2021-08-01" | ||
components = [] | ||
targets = ["wasm32-unknown-unknown"] |
Oops, something went wrong.