All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
2.3.0 - 2021-12-10
- A precompile which exposes NEAR's random number generator was added by @mfornet as requested by @birchmd. (#368 #297)
- London hard fork support was added by @birchmd. (#244)
- The gas limit for
deposit
andft_on_transfer
were changed as they were not attaching enough gas, as changed by @mrLSD. (#389)
- There was an issue with the original storage not actually being stored. Unfortunately, previous transactions can't be updated with this change. This has been fixed by @birchmd. (#390)
- Call arguments were intended to have a value attached to them to make it equivalent to an ETH call. This was fixed in a backwards compatible manner by @andrcmdr, as reported by @birchmd. (#351 #309)
- Betanet support was dropped and will no longer be supported by @joshuajbouw. (#388)
2.2.0 - 2021-11-09
- Depositing ETH from Ethereum to Aurora now allows an
0x
prefix on the recipient address by @joshuajbouw. (#337)
2.1.0 - 2021-11-04
- Bug in
ft_transfer_call
andft_resolve_transfer
by @birchmd and @mrLSD. (#326 #330) - Incorrect gas cost on ripemd precompile by @joshuajbouw. (#329)
2.0.2 - 2021-11-01
2.0.1 - 2021-11-01
- Added logging of public keys during
submit
calls by @joshuajbouw. (#319)
2.0.0 - 2021-10-27
- EVM logs returned in
SubmitResult
include the address the log originates from by @birchmd. (#299)- Note: this is a breaking change in the
SubmitResult
binary format.
- Note: this is a breaking change in the
- Precompile bug fixes by @birchmd. (#305, #306)
- Update to latest
rust-blockchain/evm
version (fixes bug inJUMPI
) EVM opcode by @birchmd. (#316)
1.7.0 - 2021-10-13
- Add EVM events for exit precompiles by @birchmd
1.6.4 - 2021-09-29
- Fix JSON formatting in
ft_metadata
method by @birchmd. - Fix a bug in
block.timestamp
(units should be seconds) by @birchmd.
1.6.3 - 2021-09-14
- Revert the ERC-20 admin address changes for the time being by @joshuajbouw.
1.6.2 - 2021-09-13
- Change the ERC-20 admin address to have a dedicated account by @sept-en.
- Fix precompile promises that were broken in rust-blockchain/evm by @joshuajbouw and @birchmd.
- Fix the return format of
ft_balance_of
by @joshuajbouw.
- Remove Testnet balancing
balance_evm_and_nep141
by @birchmd.
1.6.1 - 2021-08-23
-
Update the
view
call to correctly return the Borsh serialization ofTransactionStatus
. Previously, it returned a string with the result of the transaction by name. -
Change the
ft_balance_of
result as previously it returned a non-JSON string value0
. This has been fixed to return"0"
.
1.6.0 - 2021-08-13
- Change the transaction status of
submit
as running out of gas, funds, or being out-of-the-offset are not fatal errors but failed executions.
The submit
call altered the SubmitResult
object to the following format:
enum TransactionStatus {
Succeed(Vec<u8>),
Revert(Vec<u8>),
OutOfGas,
OutOfFund,
OutOfOffset,
CallTooDeep,
}
struct ResultLog {
topics: Vec<[u8; 32]>,
data: Vec<u8>,
}
struct SubmitResult {
status: TransactionStatus, // above
gas_used: u64,
logs: Vec<ResultLog>,
}