Skip to content

Commit 08dc408

Browse files
committed
fix examples imports
1 parent 4612c37 commit 08dc408

File tree

6 files changed

+7
-10
lines changed

6 files changed

+7
-10
lines changed

examples/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ configuration for different environments. This is not meant to be an extensive
55
combination rather than a guide to kick start plugin usage.
66

77
To know more about how to configure the compiler, take a look at the configuration
8-
[type](/packages/hardhat-resolc/src/types.ts) and the `resolc` compiler's
8+
[type](/packages/hardhat-polkadot-resolc/src/types.ts) and the `resolc` compiler's
99
`--help` section.
1010

1111
To know more about how to configure the node, take a look at the configuration
12-
[type](/packages/hardhat-revive-node/src/types.ts) andor run `npx hardhat node-polkavm --help`.
12+
[type](/packages/hardhat-polkadot-node/src/types.ts) andor run `npx hardhat node-polkadot --help`.

examples/forkWithAdapter.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { HardhatUserConfig } from "hardhat/config"
2-
import "hardhat-resolc"
3-
import "hardhat-revive-node"
2+
import "@parity/hardhat-polkadot"
43

54
const config: HardhatUserConfig = {
65
solidity: "0.8.26",

examples/forkWithoutAdapter.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { HardhatUserConfig } from "hardhat/config"
2-
import "hardhat-resolc"
3-
import "hardhat-revive-node"
2+
import "@parity/hardhat-polkadot"
43

54
const config: HardhatUserConfig = {
65
solidity: "0.8.26",

examples/localNode.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { HardhatUserConfig } from "hardhat/config"
2-
import "../hardhat-revive/packages/hardhat-resolc/src/index"
3-
import "../hardhat-revive/packages/hardhat-revive-node/src/index"
2+
import "@parity/hardhat-polkadot"
43

54
const config: HardhatUserConfig = {
65
solidity: "0.8.28",

examples/npm.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { HardhatUserConfig } from "hardhat/config"
2-
import "hardhat-resolc"
2+
import "@parity/hardhat-polkadot"
33

44
const config: HardhatUserConfig = {
55
solidity: "0.8.28",

examples/npmWithoutOptimization.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { HardhatUserConfig } from "hardhat/config"
2-
import "@parity/hardhat-polkadot-resolc"
2+
import "@parity/hardhat-polkadot"
33

44
const config: HardhatUserConfig = {
55
solidity: "0.8.28",

0 commit comments

Comments
 (0)