@enscribe/hardhat-enscribe 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -15
  2. package/package.json +27 -27
package/README.md CHANGED
@@ -9,7 +9,7 @@ hardhat-enscribe allows developers to automatically assign ENS names to their sm
9
9
  - **Subname Creation**: Creates ENS subnames for your contracts
10
10
  - **Forward Resolution**: Maps ENS names to contract addresses
11
11
  - **Reverse Resolution**: Maps contract addresses back to ENS names
12
- - **Multi-chain Support**: Works across multiple networks including Ethereum, Sepolia, Linea, and more
12
+ - **Multi-chain Support**: Works across multiple networks including Ethereum, Sepolia
13
13
 
14
14
  ## Features
15
15
 
@@ -57,11 +57,6 @@ npx hardhat enscribe name <ENS_NAME> --contract <CONTRACT_ADDRESS>
57
57
  npx hardhat enscribe name mycontract.mydomain.eth --contract 0x1234...5678
58
58
  ```
59
59
 
60
- #### Name a contract on Linea
61
- ```bash
62
- npx hardhat enscribe name mycontract.mydomain.eth --contract 0x1234...5678 --chain linea
63
- ```
64
-
65
60
  ### Command Options
66
61
 
67
62
  - `name` (required): The ENS name to assign (e.g., `mycontract.mydomain.eth`)
@@ -74,8 +69,6 @@ The plugin supports the following networks:
74
69
 
75
70
  - **Ethereum Mainnet** (`mainnet`)
76
71
  - **Sepolia Testnet** (`sepolia`) - Default
77
- - **Linea Mainnet** (`linea`)
78
- - **Linea Sepolia** (`linea-sepolia`)
79
72
 
80
73
  ## Contract Requirements
81
74
 
@@ -142,13 +135,7 @@ networks: {
142
135
  chainType: "l1",
143
136
  url: configVariable("SEPOLIA_RPC_URL"),
144
137
  accounts: [configVariable("SEPOLIA_PRIVATE_KEY")],
145
- },
146
- linea: {
147
- type: "http",
148
- chainType: "l2",
149
- url: configVariable("LINEA_RPC_URL"),
150
- accounts: [configVariable("LINEA_PRIVATE_KEY")],
151
- },
138
+ }
152
139
  }
153
140
  ```
154
141
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enscribe/hardhat-enscribe",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "A Hardhat v3 plugin to name smart contracts",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -28,32 +28,32 @@
28
28
  "peerDependencies": {
29
29
  "hardhat": "^3.0.0"
30
30
  },
31
- "devDependencies": {
32
- "@nomicfoundation/hardhat-viem": "^3.0.0",
33
- "@nomicfoundation/hardhat-network-helpers": "^1.0.0",
34
- "@types/chai": "^4.3.11",
35
- "@types/mocha": "^10.0.6",
36
- "@types/node": "^20.0.0",
37
- "chai": "^4.3.11",
38
- "eslint": "^9.0.0",
39
- "hardhat": "3.0.0",
40
- "prettier": "^3.0.0",
41
- "rimraf": "^6.0.0",
42
- "ts-node": "^10.9.2",
43
- "typescript": "^5.0.0",
44
- "vitest": "^1.6.0"
45
- },
46
- "scripts": {
47
- "build": "rimraf dist && tsc -p tsconfig.json",
48
- "lint": "eslint . --ext .ts",
49
- "format": "prettier --write .",
50
- "test": "vitest run",
51
- "test:unit": "vitest run src/internal/tasks/name.test.ts",
52
- "test:integration": "vitest run test/enscribe.integration.test.ts",
53
- "test:hardhat": "vitest run test/enscribe.hardhat.test.ts",
54
- "test:all": "pnpm run test:unit && pnpm run test:integration"
55
- },
31
+ "devDependencies": {
32
+ "@nomicfoundation/hardhat-viem": "^3.0.0",
33
+ "@nomicfoundation/hardhat-network-helpers": "^1.0.0",
34
+ "@types/chai": "^4.3.11",
35
+ "@types/mocha": "^10.0.6",
36
+ "@types/node": "^20.0.0",
37
+ "chai": "^4.3.11",
38
+ "eslint": "^9.0.0",
39
+ "hardhat": "3.0.0",
40
+ "prettier": "^3.0.0",
41
+ "rimraf": "^6.0.0",
42
+ "ts-node": "^10.9.2",
43
+ "typescript": "^5.0.0",
44
+ "vitest": "^1.6.0"
45
+ },
56
46
  "publishConfig": {
57
47
  "access": "public"
48
+ },
49
+ "scripts": {
50
+ "build": "rimraf dist && tsc -p tsconfig.json",
51
+ "lint": "eslint . --ext .ts",
52
+ "format": "prettier --write .",
53
+ "test": "vitest run",
54
+ "test:unit": "vitest run src/internal/tasks/name.test.ts",
55
+ "test:integration": "vitest run test/enscribe.integration.test.ts",
56
+ "test:hardhat": "vitest run test/enscribe.hardhat.test.ts",
57
+ "test:all": "pnpm run test:unit && pnpm run test:integration"
58
58
  }
59
- }
59
+ }