diff --git a/.prettierrc b/.prettierrc index 75a894a2..c8e7be8d 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,5 +1,6 @@ { "semi": false, "singleQuote": true, - "printWidth": 100 + "printWidth": 100, + "bracketSpacing": true } diff --git a/audit/smartdec/POA-Network-TokenBridge-Contracts-v2-3-2-Security-Assessment.pdf b/audit/smartdec/POA-Network-TokenBridge-Contracts-v2-3-2-Security-Assessment.pdf new file mode 100644 index 00000000..24a2a439 Binary files /dev/null and b/audit/smartdec/POA-Network-TokenBridge-Contracts-v2-3-2-Security-Assessment.pdf differ diff --git a/contracts b/contracts index bbb97a63..629af964 160000 --- a/contracts +++ b/contracts @@ -1 +1 @@ -Subproject commit bbb97a63c900f03a902d0e82358abac3b294e4d9 +Subproject commit 629af964f7eb83a4df346f80da74a644de454f54 diff --git a/package.json b/package.json index 426f0d91..28ac76e0 100644 --- a/package.json +++ b/package.json @@ -34,12 +34,12 @@ "scripts": { "initialize": "yarn clean && git submodule update --init && yarn install --unsafe-perm --frozen-lockfile && yarn install:deploy && yarn compile:contracts", "build": "yarn workspace ui run build", - "lint": "yarn wsrun --exclude poa-parity-bridge-contracts lint", + "lint": "yarn wsrun --exclude token-bridge-contracts lint", "test": "yarn wsrun --exclude monitor --exclude oracle-e2e --exclude ui-e2e test", "oracle-e2e": "./oracle-e2e/run-tests.sh", "ui-e2e": "./ui-e2e/run-tests.sh", "clean": "rm -rf ./node_modules ./**/node_modules ./**/**/node_modules ./**/build", - "compile:contracts": "yarn workspace poa-parity-bridge-contracts run compile", + "compile:contracts": "yarn workspace token-bridge-contracts run compile", "install:deploy": "cd contracts/deploy && npm install --unsafe-perm --silent", "postinstall": "ln -sf $(pwd)/node_modules/openzeppelin-solidity/ contracts/node_modules/openzeppelin-solidity" }