Skip to content

Commit eee6918

Browse files
committed
fix: compile error + 2.17.0 release
1 parent 31c09f6 commit eee6918

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ethereum-multicall",
3-
"version": "2.16.1",
3+
"version": "2.17.0",
44
"description": "Multicall allows multiple smart contract constant function calls to be grouped into a single call and the results aggregated into a single result",
55
"main": "dist/cjs/index.js",
66
"module": "./dist/esm/index.js",

src/enums/networks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ export enum Networks {
4848
milkomeda = 2001,
4949
kcc = 321,
5050
etherlite = 111,
51-
linea-testnet = 59140
51+
lineaTestnet = 59140,
5252
}

src/multicall.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ export class Multicall {
594594
case Networks.klatyn:
595595
case Networks.milkomeda:
596596
case Networks.kcc:
597-
case Networks.linea-testnet:
597+
case Networks.lineaTestnet:
598598
return '0xcA11bde05977b3631167028862bE2a173976CA11';
599599
case Networks.etherlite:
600600
return '0x21681750D7ddCB8d1240eD47338dC984f94AF2aC';

0 commit comments

Comments
 (0)