Skip to content

Commit

Permalink
Merge branch 'main' into invalid_block_tx
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored Dec 24, 2022
2 parents 8681baf + 552cd22 commit 2b2da46
Show file tree
Hide file tree
Showing 47 changed files with 1,886 additions and 1,980 deletions.
142 changes: 0 additions & 142 deletions .all-contributorsrc

This file was deleted.

3 changes: 2 additions & 1 deletion packages/bridge-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@taiko/ui",
"name": "@taiko/bridge-ui",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "pnpm run dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/protocol/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ module.exports = {
"node/no-missing-require": "off",
"no-unused-expressions": "off",
},
}
};
1 change: 0 additions & 1 deletion packages/protocol/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"semi": false,
"overrides": [
{
"files": ["*.sol", "*.ts"],
Expand Down
6 changes: 3 additions & 3 deletions packages/protocol/.solcover.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
"test/libs/TestLibReceiptDecoder.sol", //integration tests
"test/thirdparty/TestLibBlockHeaderDecoder.sol", // assembly too long
],
mocha:{
grep: '^[^integration]'
}
mocha: {
grep: "^[^integration]",
},
};
32 changes: 16 additions & 16 deletions packages/protocol/hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import "@nomiclabs/hardhat-etherscan"
import "@nomiclabs/hardhat-waffle"
import "@openzeppelin/hardhat-upgrades"
import "@typechain/hardhat"
import "hardhat-abi-exporter"
import "hardhat-gas-reporter"
import "hardhat-preprocessor"
import { HardhatUserConfig } from "hardhat/config"
import "solidity-coverage"
import "solidity-docgen"
import "./tasks/deploy_L1"
import "@nomiclabs/hardhat-etherscan";
import "@nomiclabs/hardhat-waffle";
import "@openzeppelin/hardhat-upgrades";
import "@typechain/hardhat";
import "hardhat-abi-exporter";
import "hardhat-gas-reporter";
import "hardhat-preprocessor";
import { HardhatUserConfig } from "hardhat/config";
import "solidity-coverage";
import "solidity-docgen";
import "./tasks/deploy_L1";

const hardhatMnemonic =
"test test test test test test test test test test test taik"
"test test test test test test test test test test test taik";
const config: HardhatUserConfig = {
docgen: {
exclude: [
Expand Down Expand Up @@ -114,15 +114,15 @@ const config: HardhatUserConfig = {
) {
return `${line.slice(0, line.indexOf(" ="))} = ${
process.env[constantName]
};`
};`;
}
}

return line
return line;
},
files: "libs/LibConstants.sol",
}),
},
}
};

export default config
export default config;
6 changes: 3 additions & 3 deletions packages/protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@taiko/proto",
"version": "1.0.0",
"description": "Taiko L2 Protocol",
"name": "@taiko/protocol",
"version": "0.0.0",
"private": true,
"scripts": {
"compile": "pnpm hardhat preprocess && pnpm hardhat compile",
"export:abi": "pnpm hardhat clear-abi && pnpm hardhat export-abi",
Expand Down
4 changes: 2 additions & 2 deletions packages/protocol/tasks/config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// https://github.com/ethereum-lists/chains/pull/1611
export const K_CHAIN_ID = 167
export const K_DEPLOY_CONFIRMATIONS = 12
export const K_CHAIN_ID = 167;
export const K_DEPLOY_CONFIRMATIONS = 12;
Loading

0 comments on commit 2b2da46

Please sign in to comment.