Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(poh-signer-api): POH API URL #288

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/workflows/linea-ccip-gateway-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ on:
- main
paths:
- "packages/linea-ccip-gateway/**"
pull_request:
branches:
- main
paths:
- "packages/linea-ccip-gateway/**"
- ".github/workflows/linea-ccip-gateway-build-publish.yml"
release:
types:
- released
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/linea-ccip-gateway-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ on:
- main
paths:
- "packages/linea-ccip-gateway/**"
- ".github/workflows/linea-ccip-gateway-tests.yml"
push:
branches:
- main
paths:
- "packages/linea-ccip-gateway/**"
- ".github/workflows/linea-ccip-gateway-tests.yml"

jobs:
linea-ccip-gateway-tests:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/linea-ens-app-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ on:
- main
paths:
- "packages/linea-ens-app/**"
pull_request:
branches:
- main
paths:
- "packages/linea-ens-app/**"
- ".github/workflows/linea-ens-app-build-publish.yml"
release:
types:
- released
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/linea-ens-contracts-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ on:
- main
paths:
- "packages/linea-ens-contracts/**"
- ".github/workflows/linea-ens-contracts-tests.yml"
push:
branches:
- main
paths:
- "packages/linea-ens-contracts/**"
- ".github/workflows/linea-ens-contracts-tests.yml"

jobs:
linea-ens-contracts-tests:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/linea-ens-resolver-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ on:
- main
paths:
- "packages/linea-ens-resolver/**"
- ".github/workflows/linea-ens-resolver-tests.yml"
push:
branches:
- main
paths:
- "packages/linea-ens-app/**"
- ".github/workflows/linea-ens-resolver-tests.yml"

jobs:
linea-ens-resolver-tests:
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/poh-signer-api-build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ on:
- main
paths:
- "packages/poh-signer-api/**"
pull_request:
branches:
- main
paths:
- "packages/poh-signer-api/**"
- ".github/workflows/poh-signer-api-build-publish.yml"
release:
types:
- released
Expand Down
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# IntelliJ
# IDE
.idea
.vscode

node_modules

# hardhat
Expand All @@ -9,4 +11,4 @@ typechain-types
coverage
coverage.json

.env
.env
5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion packages/poh-signer-api/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PORT=4000
VERIFIER_CONTRACT_ADDRESS=0x677df0cb865368207999F2862Ece576dC56D8dF6

# Poh API
POH_API_URL=https://linea-xp-poh-api.linea.build
POH_API_URL=http://linea-poh-api-generic-app

# Web3Signer
WEB3SIGNER_BASE_URL=http://localhost:9000
Expand Down
2 changes: 1 addition & 1 deletion packages/poh-signer-api/.env.mainnet
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PORT=3000
VERIFIER_CONTRACT_ADDRESS=0xBf14cFAFD7B83f6de881ae6dc10796ddD7220831

# Poh API
POH_API_URL=https://linea-xp-poh-api.linea.build
POH_API_URL=http://linea-poh-api-generic-app

CHAIN_ID=59144

Expand Down
2 changes: 1 addition & 1 deletion packages/poh-signer-api/.env.sepolia
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PORT=3000
VERIFIER_CONTRACT_ADDRESS=0x576754D133C02B2E229F2630Baa2F06110cE9a9A

# Poh API
POH_API_URL=https://linea-xp-poh-api.sepolia.linea.build
POH_API_URL=http://linea-poh-api-generic-app

CHAIN_ID=59141

Expand Down
4 changes: 2 additions & 2 deletions packages/poh-signer-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "poh-signer-api",
"version": "1.0.0",
"version": "1.0.1",
"description": "API to get a signature for an address that has a POH",
"author": "Consensys",
"private": true,
Expand Down Expand Up @@ -77,4 +77,4 @@
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}
}
Loading