Skip to content

Commit

Permalink
Merge branch 'main' into feat/bridge-ui--integrate-thrirdparty-nft-su…
Browse files Browse the repository at this point in the history
…pport
  • Loading branch information
KorbinianK authored Apr 30, 2024
2 parents 2e0b552 + 0f6b6b5 commit 614b127
Show file tree
Hide file tree
Showing 374 changed files with 24,392 additions and 2,150 deletions.
5 changes: 4 additions & 1 deletion .github/_typos.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[default.extend-words]
TGE = "TGE"
TKO = "TKO"
Ethereum = "Ethereum"
Ethereum = "Ethereum"

[files]
extend-exclude = ["packages/protocol/audit"]
38 changes: 38 additions & 0 deletions .github/workflows/taikoon-ui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Taikoon UI

on:
push:
branches: [main]
paths:
- "packages/taikoon-ui/**"
pull_request:
paths:
- "packages/taikoon-ui/**"

jobs:
build:
runs-on: [taiko-runner]
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

- name: Install pnpm dependencies
uses: ./.github/actions/install-pnpm-dependencies

- name: Check formatting
working-directory: ./packages/taikoon-ui
run: pnpm lint

- name: Frontend build
working-directory: ./packages/taikoon-ui
run: |
export PUBLIC_WALLETCONNECT_PROJECT_ID="fake_project_id"
export PUBLIC_IPFS_GATEWAY="https://ipfs.io/ipfs/"
pnpm build
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ If you find a bug or have a feature request, please [open an issue](https://gith

## Contributing

Check out [CONTRIBUTING.md](./CONTRIBUTING.md) for details on how to contribute.
Check out [CONTRIBUTING.md](./CONTRIBUTING.md) for details on how to contribute. You can also check out our grants cycle at [grants.taiko.xyz](https://grants.taiko.xyz).

You can also check out our grants cycle at [grants.taiko.xyz](https://grants.taiko.xyz).
⚠️ Please refrain from submitting typo/comment-only pull requests with the expectation of receiving TKO airdrops.

## Getting support

Expand Down
4 changes: 2 additions & 2 deletions packages/bridge-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-svelte": "^2.38.0",
"ethereum-address": "^0.0.4",
"jsdom": "^24.0.0",
"lokijs": "^1.5.12",
Expand All @@ -62,7 +62,7 @@
"dependencies": {
"@moralisweb3/common-evm-utils": "^2.26.1",
"@wagmi/connectors": "^4.1.18",
"@wagmi/core": "^2.6.9",
"@wagmi/core": "^2.8.0",
"@walletconnect/ethereum-provider": "^2.12.2",
"@walletconnect/modal": "^2.6.2",
"@web3modal/wagmi": "^4.1.11",
Expand Down
4 changes: 2 additions & 2 deletions packages/guardian-prover-health-check-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"daisyui": "^4.10.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-svelte": "^2.38.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.0",
Expand All @@ -47,7 +47,7 @@
},
"type": "module",
"dependencies": {
"@wagmi/core": "^2.6.9",
"@wagmi/core": "^2.8.0",
"axios": "^1.6.7",
"svelte-i18n": "^4.0.0",
"viem": "^2.9.16"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func InitFromConfig(ctx context.Context, h *HealthChecker, cfg *Config) (err err

guardianProvers = append(guardianProvers, guardianproverhealthcheck.GuardianProver{
Address: guardianAddress,
ID: guardianId,
ID: new(big.Int).Sub(guardianId, common.Big1),
HealthCheckCounter: promauto.NewCounter(prometheus.CounterOpts{
Name: fmt.Sprintf("guardian_prover_%v_health_checks_ops_total", guardianId.Uint64()),
Help: "The total number of health checks",
Expand Down
Loading

0 comments on commit 614b127

Please sign in to comment.