We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d46c7d5 commit 0668d65Copy full SHA for 0668d65
README.md
@@ -98,7 +98,7 @@ yarn test --network lensTestnet
98
99
### Deploy <!-- omit in toc -->
100
101
-```text
+```bash
102
yarn deploy --script <deploy-script.ts> --network <network-name>
103
```
104
deploy/deploy-token.ts
@@ -1,10 +1,10 @@
1
-import { deployTransparentProxy, getWallet } from "./utils";
+import { deployContract, getWallet } from "./utils";
2
import { HardhatRuntimeEnvironment } from "hardhat/types";
3
4
export default async function (hre: HardhatRuntimeEnvironment) {
5
const wallet = getWallet();
6
7
- await deployTransparentProxy("Token", [wallet.address], {
+ await deployContract("Token", [], {
8
hre,
9
wallet,
10
verify: true,
0 commit comments