Skip to content

Commit 9c08666

Browse files
authored
Merge pull request #210 from tronprotocol/feature/3.4.0
Release 3.4.0
2 parents 0c797ec + 0e2f0a2 commit 9c08666

23 files changed

+4030
-38
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
__3.4.0__
2+
* Add support for `console.log` in Solidity smart contracts
3+
4+
```solidity
5+
// SPDX-License-Identifier: MIT
6+
7+
pragma solidity ^0.8.0;
8+
import "tronbox/console.sol";
9+
10+
contract SampleContract {
11+
constructor() {
12+
console.log("SampleContrac::constructor");
13+
}
14+
}
15+
```
16+
117
__3.3.0__
218
* Add support for contract flattening
319

0 commit comments

Comments
 (0)