diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 04c2e8a..bee83f4 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -25,4 +25,3 @@ jobs: - uses: actions/checkout@v3 - name: Install Commit Lint Dependencies run: npm install @commitlint/config-conventional - - uses: JulienKode/pull-request-name-linter-action@v0.5.0 diff --git a/src/records/dnsTxt.ts b/src/records/dnsTxt.ts index e4d5bc0..5c833c3 100644 --- a/src/records/dnsTxt.ts +++ b/src/records/dnsTxt.ts @@ -15,7 +15,7 @@ export enum EthereumNetworks { goerli = "5", sepolia = "11155111", polygon = "137", - polygonMumbai = "80001", + polygonAmoy = "80002", local = "1337", } @@ -26,7 +26,7 @@ export const EthereumNetworkIdT = Union( Literal(EthereumNetworks.goerli), Literal(EthereumNetworks.sepolia), Literal(EthereumNetworks.polygon), - Literal(EthereumNetworks.polygonMumbai), + Literal(EthereumNetworks.polygonAmoy), Literal(EthereumNetworks.local) );