Skip to content

Bump prettier-plugin-solidity from 1.0.0-dev.23 to 1.0.0-dev.24 #177

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions contracts/FNDCart.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@ contract FNDCart is Ownable {
* @param _market The Foundation market contract address on this network.
* @param _referrerTreasury A treasury address to receive a referral kick-back fee.
*/
constructor(
address payable _market,
address payable _feth,
address payable _referrerTreasury
) {
constructor(address payable _market, address payable _feth, address payable _referrerTreasury) {
market = NFTMarket(_market);
feth = FETH(_feth);
referrerTreasury = _referrerTreasury;
Expand Down Expand Up @@ -117,11 +113,7 @@ contract FNDCart is Ownable {
* @notice Make any arbitrary calls.
* @dev This should not be necessary, but here just in case you need to recover other assets.
*/
function proxyCall(
address payable target,
bytes memory callData,
uint256 value
) external onlyOwner {
function proxyCall(address payable target, bytes memory callData, uint256 value) external onlyOwner {
target.functionCallWithValue(callData, value);
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"hardhat-gas-reporter": "1.0.9",
"hardhat-tracer": "1.0.0-alpha.6",
"prettier": "2.7.1",
"prettier-plugin-solidity": "1.0.0-dev.23",
"prettier-plugin-solidity": "1.0.0-dev.24",
"solc": "0.8.17",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7363,10 +7363,10 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"

[email protected].23:
version "1.0.0-dev.23"
resolved "https://registry.yarnpkg.com/prettier-plugin-solidity/-/prettier-plugin-solidity-1.0.0-dev.23.tgz#e1edf0693d69fe1518519ab704d5e46ee4f842fc"
integrity sha512-440/jZzvtDJcqtoRCQiigo1DYTPAZ85pjNg7gvdd+Lds6QYgID8RyOdygmudzHdFmV2UfENt//A8tzx7iS58GA==
[email protected].24:
version "1.0.0-dev.24"
resolved "https://registry.yarnpkg.com/prettier-plugin-solidity/-/prettier-plugin-solidity-1.0.0-dev.24.tgz#96ca546043339f2dfcb41680abcb8e4c4949316d"
integrity sha512-T56TExNNyUZ82wCtqx3Ai8VSIaCg6YSHwiVjHiZjjbT7FXNVh8R1XaGBPWJoK/BFMjda2jYRHKcBH4xAI9Ufuw==
dependencies:
"@solidity-parser/parser" "^0.14.3"
emoji-regex "^10.1.0"
Expand Down