Skip to content

Commit f12017f

Browse files
committed
chore(release): publish
- @ethereum-sourcify/bytecode-utils@1.3.8 - @ethereum-sourcify/compilers@1.0.5 - @ethereum-sourcify/compilers-types@1.0.4 - @ethereum-sourcify/lib-sourcify@2.1.4 - sourcify-database@2.5.3 - sourcify-monitor@1.3.14 - sourcify-server@3.2.0
1 parent 9319880 commit f12017f

File tree

8 files changed

+32
-32
lines changed

8 files changed

+32
-32
lines changed

package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/bytecode-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereum-sourcify/bytecode-utils",
3-
"version": "1.3.7",
3+
"version": "1.3.8",
44
"description": "Decode the CBOR encoded data at the end of an Ethereum contract's bytecode.",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",

packages/compilers-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereum-sourcify/compilers-types",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "TypeScript types for Sourcify compilers",
55
"main": "build/main/index.js",
66
"module": "build/module/index.js",

packages/compilers/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereum-sourcify/compilers",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Wrapper around multiple compilers to download the right version and invoke the compilation with a common interface.",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",
@@ -49,7 +49,7 @@
4949
"solc": "0.8.30"
5050
},
5151
"devDependencies": {
52-
"@ethereum-sourcify/compilers-types": "^1.0.3",
52+
"@ethereum-sourcify/compilers-types": "^1.0.4",
5353
"@types/chai": "4.3.20",
5454
"@types/mocha": "10.0.10",
5555
"@types/node": "22.15.32",

packages/lib-sourcify/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereum-sourcify/lib-sourcify",
3-
"version": "2.1.3",
3+
"version": "2.1.4",
44
"description": "Library for Sourcify's contract verification methods, contract validation, types, and interfaces.",
55
"main": "build/main/index.js",
66
"typings": "build/main/index.d.ts",
@@ -34,7 +34,7 @@
3434
"node": "22.5.1"
3535
},
3636
"dependencies": {
37-
"@ethereum-sourcify/bytecode-utils": "^1.3.7",
37+
"@ethereum-sourcify/bytecode-utils": "^1.3.8",
3838
"@ethereumjs/blockchain": "7.3.0",
3939
"@ethereumjs/common": "4.4.0",
4040
"@ethereumjs/evm": "3.1.1",
@@ -52,8 +52,8 @@
5252
"semver": "7.7.2"
5353
},
5454
"devDependencies": {
55-
"@ethereum-sourcify/compilers": "^1.0.4",
56-
"@ethereum-sourcify/compilers-types": "^1.0.3",
55+
"@ethereum-sourcify/compilers": "^1.0.5",
56+
"@ethereum-sourcify/compilers-types": "^1.0.4",
5757
"@types/chai": "4.3.20",
5858
"@types/chai-as-promised": "7.1.8",
5959
"@types/debug": "4.1.12",

services/database/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sourcify-database",
3-
"version": "2.5.2",
3+
"version": "2.5.3",
44
"private": true,
55
"description": "The Sourcify database",
66
"main": "index.js",

services/monitor/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sourcify-monitor",
3-
"version": "1.3.13",
3+
"version": "1.3.14",
44
"private": true,
55
"description": "A monitoring service to listen to chains and send detected new contracts to a Sourcify server",
66
"main": "index.js",
@@ -37,8 +37,8 @@
3737
},
3838
"homepage": "https://github.com/ethereum/sourcify#readme",
3939
"dependencies": {
40-
"@ethereum-sourcify/bytecode-utils": "^1.3.7",
41-
"@ethereum-sourcify/lib-sourcify": "^2.1.3",
40+
"@ethereum-sourcify/bytecode-utils": "^1.3.8",
41+
"@ethereum-sourcify/lib-sourcify": "^2.1.4",
4242
"chalk": "4.1.2",
4343
"commander": "12.1.0",
4444
"dotenv": "16.5.0",

services/server/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sourcify-server",
3-
"version": "3.1.3",
3+
"version": "3.2.0",
44
"description": "Solidity metadata-based re-compilation and source verification tool",
55
"main": "dist/server/server.js",
66
"types": "dist/server/server.d.ts",
@@ -50,9 +50,9 @@
5050
"homepage": "https://github.com/ethereum/sourcify#readme",
5151
"dependencies": {
5252
"@aws-sdk/client-s3": "3.830.0",
53-
"@ethereum-sourcify/bytecode-utils": "^1.3.7",
54-
"@ethereum-sourcify/compilers": "^1.0.4",
55-
"@ethereum-sourcify/lib-sourcify": "^2.1.3",
53+
"@ethereum-sourcify/bytecode-utils": "^1.3.8",
54+
"@ethereum-sourcify/compilers": "^1.0.5",
55+
"@ethereum-sourcify/lib-sourcify": "^2.1.4",
5656
"@google-cloud/cloud-sql-connector": "1.8.1",
5757
"@shazow/whatsabi": "0.22.2",
5858
"@solidity-parser/parser": "0.20.1",

0 commit comments

Comments
 (0)