We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc4b0d6 commit b35c0f9Copy full SHA for b35c0f9
CHANGELOG.md
@@ -1,4 +1,7 @@
1
-# v0.4.12 (unreleased)
+# v0.4.13
2
+- fix: import chains from esm.sh instead of using npm: directive
3
+
4
+# v0.4.12
5
- fix: version number
6
- feat: validate manifest when building and deploying
7
cli.ts
@@ -14,7 +14,7 @@ import {
14
} from './cli/mod.ts'
15
import 'https://deno.land/std@0.179.0/dotenv/load.ts'
16
17
-export const version = 'v0.4.12'
+export const version = 'v0.4.13'
18
19
const command = new Command()
20
.name('arkiver')
src/chains.ts
@@ -9,7 +9,7 @@ import {
9
polygon,
10
polygonMumbai,
11
sepolia,
12
-} from 'npm:viem/chains'
+} from 'https://esm.sh/viem@0.3.44/chains'
13
export const supportedChains = {
arbitrum,
0 commit comments