Skip to content

Commit c0b9600

Browse files
committed
Merge branch 'main' into feat/lodestar-prover
2 parents 1deb137 + 0d9dd35 commit c0b9600

File tree

14 files changed

+57
-25
lines changed

14 files changed

+57
-25
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,17 @@ jobs:
1313
EXTENSION_ID: lamobknkahhlgennggjjphcdfndjkafj
1414

1515
steps:
16-
- name: Build and upload extension to Chrome Web Store
16+
- name: Checkout
17+
uses: actions/checkout@v2
18+
19+
- name: Setup node
1720
uses: actions/setup-node@v2
1821
with:
1922
cache: 'npm'
2023
node-version: '18.12.1'
21-
- run: |
24+
25+
- name: Build and upload extension to Chrome Web Store
26+
run: |
2227
npm install
2328
initialTag=${{ github.event.release.tag_name }}
2429
tag="${initialTag//[v]/}"
@@ -36,10 +41,5 @@ jobs:
3641
git commit -m "Release $tag"
3742
npm run build
3843
npm install -g chrome-webstore-upload-cli
39-
chrome-webstore-upload upload \\
40-
--source dist \\
41-
--extension-id ${{ env.EXTENSION_ID }} \\
42-
--client-id ${{ secrets.CI_GOOGLE_CLIENT_ID }} \\
43-
--client-secret ${{ secrets.CI_GOOGLE_CLIENT_SECRET }} \\
44-
--refresh-token ${{ secrets.CI_GOOGLE_REFRESH_TOKEN }}
44+
chrome-webstore-upload upload --source dist --client-id ${{ secrets.CI_GOOGLE_CLIENT_ID }} --client-secret ${{ secrets.CI_GOOGLE_CLIENT_SECRET }} --refresh-token ${{ secrets.CI_GOOGLE_REFRESH_TOKEN }}
4545
git push

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
### Changelog
2+
3+
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4+
5+
#### [v0.0.7](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/compare/v0.0.1...v0.0.7)
6+
7+
> 16 November 2023
8+
9+
- Make `chrome-webstore-upload` one-liner [`f637ed5`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/commit/f637ed58c2b33b0956f405cc255db80dd79614e4)
10+
11+
#### v0.0.1
12+
13+
> 29 October 2023
14+
15+
- Add CI/CD GitHub Action Workflows [`#3`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/pull/3)
16+
- Fix etherscan address page ENS resolution. Solves issue #1 [`#2`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/pull/2)
17+
- Initial commit [`9cd38c0`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/commit/9cd38c0f24006a078e126f7fda4ff77e7f45642f)
18+
- Reduce manifest permissions, load css localy [`d5aab2f`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/commit/d5aab2fa9d08dedc36dfb4fd777469bede106bfa)
19+
- Initial commit [`6b4fa74`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/commit/6b4fa74edf91113e81740de929c349f5c428d0b6)
20+
- Fix parsing eth balance in etherscan/address page, added diff to balance mismatch message [`27030a7`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/commit/27030a7e20e52d67a434f76210f29d0456b7ad24)
21+
- Fix etherscan address page ENS resolution [`7937853`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/commit/7937853a93881410d5ee66d14c363644df282f9e)
22+
- Rename `getAddressFromUrl` to `getAddress` [`8c0c7e7`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/commit/8c0c7e7fb6713b09c5af2f519798b1cfa668ad7e)
23+
- Change failure to send message log to informational [`9929551`](https://github.com/fireblocks-labs/trustless-blockchain-data-verifier/commit/99295519a82c951cb21adc447199fffca65cf02b)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 fireblocks-labs
3+
Copyright (c) 2023 Fireblocks
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "light-client-verifier",
33
"type": "module",
4-
"version": "0.0.2",
4+
"version": "0.0.7",
55
"description": "",
66
"main": "index.js",
77
"engines": {

public/icon128.png

5.64 KB
Loading

public/icon16.png

-357 Bytes
Loading

public/icon32.png

323 Bytes
Loading

public/icon48.png

946 Bytes
Loading

public/manifest.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 3,
33
"name": "Trustless Blockchain Data Verifier (Beta)",
44
"description": "Verify blockchain data presented at popular websites using Light Client technology",
5-
"version": "0.0.2",
5+
"version": "0.0.7",
66
"action": {
77
"default_popup": "popup.html"
88
},
@@ -17,12 +17,20 @@
1717
},
1818
"content_scripts": [
1919
{
20-
"js": ["content.js"],
21-
"matches": ["https://etherscan.io/tokenholdings*", "https://etherscan.io/address*", "https://portfolio.metamask.io/"]
20+
"js": [
21+
"content.js"
22+
],
23+
"matches": [
24+
"https://etherscan.io/tokenholdings*",
25+
"https://etherscan.io/address*",
26+
"https://portfolio.metamask.io/"
27+
]
2228
}
2329
],
24-
"permissions": ["storage"],
30+
"permissions": [
31+
"storage"
32+
],
2533
"background": {
2634
"service_worker": "background.js"
2735
}
28-
}
36+
}

0 commit comments

Comments
 (0)