You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running extension build 1.4.39 with [email protected] and ton solidity compiler version 0.62.0
this sniptes returns error Error: Error: Source file requires different compiler version (current compiler is 0.62.0+commit.e66e9ac9.Darwin.appleclang)
pragma ever-solidity >= 0.61.2;
pragma AbiHeader expire;
pragma AbiHeader pubkey;
// this is enabled by default
pragma AbiHeader time;
import '@broxus/tip4/contracts/TIP4_1/TIP4_1Nft.tsol';
contract Nft is TIP4_1Nft {
constructor(
address owner,
address sendGasTo,
uint128 remainOnNft
) TIP4_1Nft(
owner,
sendGasTo,
remainOnNft
) public {}
}
I guess we need to support ever-solidity right as well as ton-solidity right?
The text was updated successfully, but these errors were encountered:
Look at the IP4_1Nft.tsol import file. It has pragma ever-solidity ^0.61.2; ^0.61.2; means the file does not compile with a compiler earlier than version 0.61.2, and it also does not work on a compiler starting from version 0.62.0
Running extension build
1.4.39
with[email protected]
and ton solidity compiler version0.62.0
this sniptes returns error
Error: Error: Source file requires different compiler version (current compiler is 0.62.0+commit.e66e9ac9.Darwin.appleclang)
I guess we need to support
ever-solidity
right as well aston-solidity
right?The text was updated successfully, but these errors were encountered: