Skip to content

Commit

Permalink
Merge pull request #1045 from ethereum/staging
Browse files Browse the repository at this point in the history
Release <version>
  • Loading branch information
kuzdogan authored Jun 2, 2023
2 parents 4f9e6ef + ea5f643 commit 4a8528c
Show file tree
Hide file tree
Showing 5 changed files with 740 additions and 112 deletions.
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@
<!-- Please check all items below by putting an x in the box -->

- [ ] I have bumped the versions of the packages under `packages/`, if necessary
- [ ] `lib-sourcify`
- [ ] `bytecode-utils`
- [ ] `contract-call-decoder`
- [ ] All tests are passing
2 changes: 1 addition & 1 deletion packages/lib-sourcify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereum-sourcify/lib-sourcify",
"version": "1.1.0",
"version": "1.1.1",
"description": "Library for Sourcify's contract verification methods, contract validation, types, and interfaces.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
Expand Down
4 changes: 3 additions & 1 deletion packages/lib-sourcify/src/lib/verification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ import semverSatisfies from 'semver/functions/satisfies';
import { defaultAbiCoder as abiCoder, ParamType } from '@ethersproject/abi';
import { AbiConstructor } from 'abitype';

const RPC_TIMEOUT = 5000;
const RPC_TIMEOUT = process.env.RPC_TIMEOUT
? parseInt(process.env.RPC_TIMEOUT)
: 5000;

export async function verifyDeployed(
checkedContract: CheckedContract,
Expand Down
Loading

0 comments on commit 4a8528c

Please sign in to comment.