Skip to content

Commit e00b53d

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

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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/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/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)