Skip to content

Commit 0668d65

Browse files
committed
chore: updates deploy script and README
1 parent d46c7d5 commit 0668d65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ yarn test --network lensTestnet
9898
9999
### Deploy <!-- omit in toc -->
100100

101-
```text
101+
```bash
102102
yarn deploy --script <deploy-script.ts> --network <network-name>
103103
```
104104

deploy/deploy-token.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { deployTransparentProxy, getWallet } from "./utils";
1+
import { deployContract, getWallet } from "./utils";
22
import { HardhatRuntimeEnvironment } from "hardhat/types";
33

44
export default async function (hre: HardhatRuntimeEnvironment) {
55
const wallet = getWallet();
66

7-
await deployTransparentProxy("Token", [wallet.address], {
7+
await deployContract("Token", [], {
88
hre,
99
wallet,
1010
verify: true,

0 commit comments

Comments
 (0)