Skip to content

Commit

Permalink
style: apply prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Oct 18, 2023
1 parent 2bdac5d commit 8cf16a7
Show file tree
Hide file tree
Showing 186 changed files with 1,411 additions and 1,612 deletions.
17 changes: 9 additions & 8 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ about: Create a bug report to help us
title: 'Bug: <add-text-here>'
labels: bug
assignees: ''

---

**Describe the bug**
A short summary of what the bug is. Please be clear and concise.

**To Reproduce (please complete the following information)**

- Config and flags: [e.g. variable="xyz"]
- Steps to reproduce the behavior:
1. node '...'
2. make request with '....'
3. '...'
4. See error
1. node '...'
2. make request with '....'
3. '...'
4. See error

**Current behavior**
In depth explanation, if required, or a clear and concise description of what actually happens.
Expand All @@ -25,9 +25,10 @@ In depth explanation, if required, or a clear and concise description of what ac
A clear and concise description of what you expected to happen.

**System (please complete the following information):**
- OS: [e.g. Fedora 35]
- Software version [e.g. Docker 8, Node 14.19.1]
- Commit hash [e.g. e84617d]

- OS: [e.g. Fedora 35]
- Software version [e.g. Docker 8, Node 14.19.1]
- Commit hash [e.g. e84617d]

**Additional context**
Add any other context about the problem here.
74 changes: 37 additions & 37 deletions .github/helpers/contracts/register-ens-subdomain.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function main() {
resolver,
0
);
console.log(`Creation tx hash ${creationTx.hash}`)
console.log(`Creation tx hash ${creationTx.hash}`);
await creationTx.wait();
console.log('Created');
} else {
Expand All @@ -58,7 +58,7 @@ async function main() {
labelHash,
wallet.address
);
console.log(`Ownership transfer tx hash ${ownerTx.hash}`)
console.log(`Ownership transfer tx hash ${ownerTx.hash}`);
await ownerTx.wait();
} else {
console.log('Already owner.');
Expand All @@ -76,7 +76,7 @@ const RegistryAbi = [
inputs: [{internalType: 'contract ENS', name: '_old', type: 'address'}],
payable: false,
stateMutability: 'nonpayable',
type: 'constructor'
type: 'constructor',
},
{
anonymous: false,
Expand All @@ -86,22 +86,22 @@ const RegistryAbi = [
indexed: true,
internalType: 'address',
name: 'operator',
type: 'address'
type: 'address',
},
{indexed: false, internalType: 'bool', name: 'approved', type: 'bool'}
{indexed: false, internalType: 'bool', name: 'approved', type: 'bool'},
],
name: 'ApprovalForAll',
type: 'event'
type: 'event',
},
{
anonymous: false,
inputs: [
{indexed: true, internalType: 'bytes32', name: 'node', type: 'bytes32'},
{indexed: true, internalType: 'bytes32', name: 'label', type: 'bytes32'},
{indexed: false, internalType: 'address', name: 'owner', type: 'address'}
{indexed: false, internalType: 'address', name: 'owner', type: 'address'},
],
name: 'NewOwner',
type: 'event'
type: 'event',
},
{
anonymous: false,
Expand All @@ -111,41 +111,41 @@ const RegistryAbi = [
indexed: false,
internalType: 'address',
name: 'resolver',
type: 'address'
}
type: 'address',
},
],
name: 'NewResolver',
type: 'event'
type: 'event',
},
{
anonymous: false,
inputs: [
{indexed: true, internalType: 'bytes32', name: 'node', type: 'bytes32'},
{indexed: false, internalType: 'uint64', name: 'ttl', type: 'uint64'}
{indexed: false, internalType: 'uint64', name: 'ttl', type: 'uint64'},
],
name: 'NewTTL',
type: 'event'
type: 'event',
},
{
anonymous: false,
inputs: [
{indexed: true, internalType: 'bytes32', name: 'node', type: 'bytes32'},
{indexed: false, internalType: 'address', name: 'owner', type: 'address'}
{indexed: false, internalType: 'address', name: 'owner', type: 'address'},
],
name: 'Transfer',
type: 'event'
type: 'event',
},
{
constant: true,
inputs: [
{internalType: 'address', name: 'owner', type: 'address'},
{internalType: 'address', name: 'operator', type: 'address'}
{internalType: 'address', name: 'operator', type: 'address'},
],
name: 'isApprovedForAll',
outputs: [{internalType: 'bool', name: '', type: 'bool'}],
payable: false,
stateMutability: 'view',
type: 'function'
type: 'function',
},
{
constant: true,
Expand All @@ -154,7 +154,7 @@ const RegistryAbi = [
outputs: [{internalType: 'contract ENS', name: '', type: 'address'}],
payable: false,
stateMutability: 'view',
type: 'function'
type: 'function',
},
{
constant: true,
Expand All @@ -163,7 +163,7 @@ const RegistryAbi = [
outputs: [{internalType: 'address', name: '', type: 'address'}],
payable: false,
stateMutability: 'view',
type: 'function'
type: 'function',
},
{
constant: true,
Expand All @@ -172,7 +172,7 @@ const RegistryAbi = [
outputs: [{internalType: 'bool', name: '', type: 'bool'}],
payable: false,
stateMutability: 'view',
type: 'function'
type: 'function',
},
{
constant: true,
Expand All @@ -181,70 +181,70 @@ const RegistryAbi = [
outputs: [{internalType: 'address', name: '', type: 'address'}],
payable: false,
stateMutability: 'view',
type: 'function'
type: 'function',
},
{
constant: false,
inputs: [
{internalType: 'address', name: 'operator', type: 'address'},
{internalType: 'bool', name: 'approved', type: 'bool'}
{internalType: 'bool', name: 'approved', type: 'bool'},
],
name: 'setApprovalForAll',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function'
type: 'function',
},
{
constant: false,
inputs: [
{internalType: 'bytes32', name: 'node', type: 'bytes32'},
{internalType: 'address', name: 'owner', type: 'address'}
{internalType: 'address', name: 'owner', type: 'address'},
],
name: 'setOwner',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function'
type: 'function',
},
{
constant: false,
inputs: [
{internalType: 'bytes32', name: 'node', type: 'bytes32'},
{internalType: 'address', name: 'owner', type: 'address'},
{internalType: 'address', name: 'resolver', type: 'address'},
{internalType: 'uint64', name: 'ttl', type: 'uint64'}
{internalType: 'uint64', name: 'ttl', type: 'uint64'},
],
name: 'setRecord',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function'
type: 'function',
},
{
constant: false,
inputs: [
{internalType: 'bytes32', name: 'node', type: 'bytes32'},
{internalType: 'address', name: 'resolver', type: 'address'}
{internalType: 'address', name: 'resolver', type: 'address'},
],
name: 'setResolver',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function'
type: 'function',
},
{
constant: false,
inputs: [
{internalType: 'bytes32', name: 'node', type: 'bytes32'},
{internalType: 'bytes32', name: 'label', type: 'bytes32'},
{internalType: 'address', name: 'owner', type: 'address'}
{internalType: 'address', name: 'owner', type: 'address'},
],
name: 'setSubnodeOwner',
outputs: [{internalType: 'bytes32', name: '', type: 'bytes32'}],
payable: false,
stateMutability: 'nonpayable',
type: 'function'
type: 'function',
},
{
constant: false,
Expand All @@ -253,25 +253,25 @@ const RegistryAbi = [
{internalType: 'bytes32', name: 'label', type: 'bytes32'},
{internalType: 'address', name: 'owner', type: 'address'},
{internalType: 'address', name: 'resolver', type: 'address'},
{internalType: 'uint64', name: 'ttl', type: 'uint64'}
{internalType: 'uint64', name: 'ttl', type: 'uint64'},
],
name: 'setSubnodeRecord',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function'
type: 'function',
},
{
constant: false,
inputs: [
{internalType: 'bytes32', name: 'node', type: 'bytes32'},
{internalType: 'uint64', name: 'ttl', type: 'uint64'}
{internalType: 'uint64', name: 'ttl', type: 'uint64'},
],
name: 'setTTL',
outputs: [],
payable: false,
stateMutability: 'nonpayable',
type: 'function'
type: 'function',
},
{
constant: true,
Expand All @@ -280,6 +280,6 @@ const RegistryAbi = [
outputs: [{internalType: 'uint64', name: '', type: 'uint64'}],
payable: false,
stateMutability: 'view',
type: 'function'
}
type: 'function',
},
];
8 changes: 4 additions & 4 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
contracts:
- packages/contracts/**/*
- packages/contracts/*
- packages/contracts/**/*
- packages/contracts/*

subgraph:
- packages/subgraph/**/*
- packages/subgraph/*
- packages/subgraph/**/*
- packages/subgraph/*
2 changes: 2 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ Please include a summary of the change and be sure you follow the contributions
Task ID: [OS-?](https://aragonassociation.atlassian.net/browse/OS-?)

## Type of change

See the framework lifecylce in `packages/contracts/docs/framework-lifecycle` to decide what kind of change this pull request is.

<!--- Please delete options that are not relevant. -->

- [ ] Bug fix (non-breaking change which fixes an issue)
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/comment-triggers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
issue_comment:
types: [created]

jobs:
jobs:
check_user_permission:
runs-on: ubuntu-latest
name: A job to check user's permission level
Expand Down Expand Up @@ -82,8 +82,6 @@ jobs:
mode: ${{ needs.mythx_full.outputs.mode }}
secrets: inherit



release_label:
needs: [check_user_permission]
runs-on: ubuntu-latest
Expand Down Expand Up @@ -134,4 +132,4 @@ jobs:
if: steps.check.outputs.triggered == 'true'
uses: actions-ecosystem/action-add-labels@v1
with:
labels: subgraph:${{ steps.type.outputs.type }}
labels: subgraph:${{ steps.type.outputs.type }}
4 changes: 2 additions & 2 deletions .github/workflows/contracts-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v3
with:
cache: "yarn"
cache: 'yarn'
node-version: 16
- name: Install dependencies
run: yarn install --pure-lockfile
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v3
with:
cache: "yarn"
cache: 'yarn'
node-version: 16
- name: Install dependencies
run: yarn install --pure-lockfile
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/mythx-changed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
required: true
type: string
mode:
description: "Mythx scan mode (quick|standard|deep)"
description: 'Mythx scan mode (quick|standard|deep)'
required: true
type: string
secrets:
Expand All @@ -22,7 +22,7 @@ on:
required: true
type: string
mode:
description: "Mythx scan mode (quick|standard|deep)"
description: 'Mythx scan mode (quick|standard|deep)'
required: true
default: standard
type: choice
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v3
with:
cache: "yarn"
cache: 'yarn'
node-version: 16
- uses: actions/setup-python@v4
- name: Install mythx-cli
Expand Down Expand Up @@ -85,4 +85,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: SEE HERE FOR DASHBOARD LINK
run: |
echo 'Scan started in group https://dashboard.mythx.io/#/console/analyses/groups/${{ needs.mythx.outputs.group_id }}'
echo 'Scan started in group https://dashboard.mythx.io/#/console/analyses/groups/${{ needs.mythx.outputs.group_id }}'
Loading

0 comments on commit 8cf16a7

Please sign in to comment.