Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Commit 5b19b4a

Browse files
authored
feat: support polygon amoy (#57)
* feat: support polygon amoy * chore: set config conventional to v17 to avoid header-trim new rule * chore: remove good pr name linter * chore: remove polygon mumbai
1 parent d604d25 commit 5b19b4a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/linters.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@ jobs:
2525
- uses: actions/checkout@v3
2626
- name: Install Commit Lint Dependencies
2727
run: npm install @commitlint/config-conventional
28-
- uses: JulienKode/pull-request-name-linter-action@v0.5.0

src/records/dnsTxt.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export enum EthereumNetworks {
1515
goerli = "5",
1616
sepolia = "11155111",
1717
polygon = "137",
18-
polygonMumbai = "80001",
18+
polygonAmoy = "80002",
1919
local = "1337",
2020
}
2121

@@ -26,7 +26,7 @@ export const EthereumNetworkIdT = Union(
2626
Literal(EthereumNetworks.goerli),
2727
Literal(EthereumNetworks.sepolia),
2828
Literal(EthereumNetworks.polygon),
29-
Literal(EthereumNetworks.polygonMumbai),
29+
Literal(EthereumNetworks.polygonAmoy),
3030
Literal(EthereumNetworks.local)
3131
);
3232

0 commit comments

Comments
 (0)