Skip to content
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

Lock file maintenance #1484

Merged
merged 2 commits into from
Oct 31, 2022
Merged
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
2 changes: 2 additions & 0 deletions .changeset/six-toes-hug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
3 changes: 1 addition & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false,
"explicitTypes": "always"
"bracketSpacing": false
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ pragma solidity 0.8.9;
import "@api3/airnode-protocol/contracts/authorizers/interfaces/IAuthorizerV0.sol";

contract EverythingAuthorizer is IAuthorizerV0 {
function isAuthorizedV0(
bytes32,
address,
bytes32,
address,
address
) external pure override returns (bool) {
function isAuthorizedV0(bytes32, address, bytes32, address, address)
external
pure
override
returns (bool)
{
return true;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ pragma solidity 0.8.9;
import "@api3/airnode-protocol/contracts/authorizers/interfaces/IAuthorizerV0.sol";

contract NothingAuthorizer is IAuthorizerV0 {
function isAuthorizedV0(
bytes32,
address,
bytes32,
address,
address
) external pure override returns (bool) {
function isAuthorizedV0(bytes32, address, bytes32, address, address)
external
pure
override
returns (bool)
{
return false;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,5 @@ interface ITemplateUtilsV0 {
function templates(bytes32 templateId)
external
view
returns (
address airnode,
bytes32 endpointId,
bytes memory parameters
);
returns (address airnode, bytes32 endpointId, bytes memory parameters);
}
Loading