Skip to content

Commit a557424

Browse files
committed
chore(target_chains/ethereum): cut a release for price feeds contracts
1 parent d4a6c48 commit a557424

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

target_chains/ethereum/contracts/contracts/entropy/Entropy.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1081,7 +1081,7 @@ abstract contract Entropy is IEntropy, EntropyState {
10811081
_state.seed = keccak256(
10821082
abi.encodePacked(
10831083
block.timestamp,
1084-
block.difficulty,
1084+
block.prevrandao,
10851085
msg.sender,
10861086
_state.seed
10871087
)

target_chains/ethereum/contracts/contracts/pyth/Pyth.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ abstract contract Pyth is
683683
}
684684

685685
function version() public pure returns (string memory) {
686-
return "1.4.4-alpha.5";
686+
return "1.4.4";
687687
}
688688

689689
/// @notice Calculates TWAP from two price points

target_chains/ethereum/contracts/forge-test/Echo.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1171,7 +1171,7 @@ contract EchoTest is Test, EchoEvents, IEchoConsumer, EchoTestUtils {
11711171
assertApproxEqRel(
11721172
gas2Used,
11731173
gas1Used * 2,
1174-
0.1e18, // 10% tolerance
1174+
0.2e18, // 20% tolerance
11751175
"Gas usage should scale roughly linearly"
11761176
);
11771177
}

target_chains/ethereum/contracts/foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[profile.default]
2-
solc_version = '0.8.4'
2+
solc_version = '0.8.29'
33
optimizer = true
44
optimizer_runs = 200
55
src = 'contracts'

target_chains/ethereum/contracts/hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ module.exports = {
112112
],
113113
},
114114
solidity: {
115-
version: "0.8.4",
115+
version: "0.8.29",
116116
settings: {
117117
optimizer: {
118118
enabled: true,

target_chains/ethereum/contracts/truffle-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = {
3333

3434
compilers: {
3535
solc: {
36-
version: "0.8.4",
36+
version: "0.8.29",
3737
settings: {
3838
optimizer: {
3939
enabled: true,

0 commit comments

Comments
 (0)