Skip to content

Commit

Permalink
fix: prettier error
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeKinetex committed Nov 29, 2023
1 parent e89f718 commit d849576
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
15 changes: 12 additions & 3 deletions packages/evm/tasks/deploy/adapters/connext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ import { verify } from "../index"

task("deploy:adapter:ConnextAdapter")
.addParam("chainId", "chain id of the reporter contract")
.addParam("connextDomainId", "connext domain id (according to https://docs.connext.network/resources/supported-chains)")
.addParam(
"connextDomainId",
"connext domain id (according to https://docs.connext.network/resources/supported-chains)",
)
.addParam("reporter", "address of the reporter contract")
.addParam("connext", "address of the Connext contract")
.addFlag("verify", "whether to verify the contract on Etherscan")
Expand All @@ -38,7 +41,10 @@ task("deploy:adapter:ConnextAdapter")

task("deploy:adapter:ConnextHeaderReporter")
.addParam("chainId", "chain id of the adapter contract")
.addParam("connextDomainId", "connext domain id (according to https://docs.connext.network/resources/supported-chains)")
.addParam(
"connextDomainId",
"connext domain id (according to https://docs.connext.network/resources/supported-chains)",
)
.addParam("headerStorage", "address of the header storage contract")
.addParam("connext", "address of the Connext contract")
.addFlag("verify", "whether to verify the contract on Etherscan")
Expand All @@ -64,7 +70,10 @@ task("deploy:adapter:ConnextHeaderReporter")

task("deploy:adapter:ConnextMessageRelay")
.addParam("chainId", "chain id of the adapter contract")
.addParam("connextDomainId", "connext domain id (according to https://docs.connext.network/resources/supported-chains)")
.addParam(
"connextDomainId",
"connext domain id (according to https://docs.connext.network/resources/supported-chains)",
)
.addParam("yaho", "address of the Yaho contract")
.addParam("connext", "address of the Connext contract")
.addFlag("verify", "whether to verify the contract on Etherscan")
Expand Down
15 changes: 12 additions & 3 deletions packages/evm/tasks/deploy/adapters/layerzero.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ import { verify } from "../index"

task("deploy:adapter:LayerZeroAdapter")
.addParam("chainId", "chain id of the reporter contract")
.addParam("lzChainId", "layerzero chain id (according to https://layerzero.gitbook.io/docs/technical-reference/mainnet/supported-chain-ids)")
.addParam(
"lzChainId",
"layerzero chain id (according to https://layerzero.gitbook.io/docs/technical-reference/mainnet/supported-chain-ids)",
)
.addParam("reporter", "address of the reporter contract")
.addParam("lzEndpoint", "address of the LayerZero endpoint contract")
.addFlag("verify", "whether to verify the contract on Etherscan")
Expand All @@ -38,7 +41,10 @@ task("deploy:adapter:LayerZeroAdapter")

task("deploy:adapter:LayerZeroHeaderReporter")
.addParam("chainId", "chain id of the adapter contract")
.addParam("lzChainId", "layerzero chain id (according to https://layerzero.gitbook.io/docs/technical-reference/mainnet/supported-chain-ids)")
.addParam(
"lzChainId",
"layerzero chain id (according to https://layerzero.gitbook.io/docs/technical-reference/mainnet/supported-chain-ids)",
)
.addParam("headerStorage", "address of the header storage contract")
.addParam("lzEndpoint", "address of the LayerZero endpoint contract")
.addFlag("verify", "whether to verify the contract on Etherscan")
Expand All @@ -64,7 +70,10 @@ task("deploy:adapter:LayerZeroHeaderReporter")

task("deploy:adapter:LayerZeroMessageRelay")
.addParam("chainId", "chain id of the adapter contract")
.addParam("lzChainId", "layerzero chain id (according to https://layerzero.gitbook.io/docs/technical-reference/mainnet/supported-chain-ids)")
.addParam(
"lzChainId",
"layerzero chain id (according to https://layerzero.gitbook.io/docs/technical-reference/mainnet/supported-chain-ids)",
)
.addParam("yaho", "address of the Yaho contract")
.addParam("lzEndpoint", "address of the LayerZero endpoint contract")
.addFlag("verify", "whether to verify the contract on Etherscan")
Expand Down

0 comments on commit d849576

Please sign in to comment.