Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
7866168c
Unverified
Commit
7866168c
authored
Mar 03, 2023
by
mergify[bot]
Committed by
GitHub
Mar 03, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5038 from ethereum-optimism/willc/help-ori-feedback
fix(atst): Fix help text
parents
cf02d753
60e171b0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
cli.ts
packages/atst/src/cli.ts
+6
-6
No files found.
packages/atst/src/cli.ts
View file @
7866168c
...
...
@@ -15,13 +15,13 @@ cli
.
option
(
'
--creator <string>
'
,
readOptionsValidators
.
creator
.
description
!
)
.
option
(
'
--about <string>
'
,
readOptionsValidators
.
about
.
description
!
)
.
option
(
'
--key <string>
'
,
readOptionsValidators
.
key
.
description
!
)
.
option
(
'
--data-type
[string]
'
,
readOptionsValidators
.
dataType
.
description
!
,
{
.
option
(
'
--data-type
<string>
'
,
readOptionsValidators
.
dataType
.
description
!
,
{
default
:
readOptionsValidators
.
dataType
.
parse
(
undefined
),
})
.
option
(
'
--rpc-url
[url]
'
,
readOptionsValidators
.
rpcUrl
.
description
!
,
{
.
option
(
'
--rpc-url
<url>
'
,
readOptionsValidators
.
rpcUrl
.
description
!
,
{
default
:
readOptionsValidators
.
rpcUrl
.
parse
(
undefined
),
})
.
option
(
'
--contract
[address]
'
,
readOptionsValidators
.
contract
.
description
!
,
{
.
option
(
'
--contract
<address>
'
,
readOptionsValidators
.
contract
.
description
!
,
{
default
:
readOptionsValidators
.
contract
.
parse
(
undefined
),
})
.
example
(
...
...
@@ -52,17 +52,17 @@ cli
'
--private-key <string>
'
,
writeOptionsValidators
.
privateKey
.
description
!
)
.
option
(
'
--data-type
[string]
'
,
readOptionsValidators
.
dataType
.
description
!
,
{
.
option
(
'
--data-type
<string>
'
,
readOptionsValidators
.
dataType
.
description
!
,
{
default
:
writeOptionsValidators
.
dataType
.
parse
(
undefined
),
})
.
option
(
'
--about <string>
'
,
writeOptionsValidators
.
about
.
description
!
)
.
option
(
'
--key <string>
'
,
writeOptionsValidators
.
key
.
description
!
)
.
option
(
'
--value <string>
'
,
writeOptionsValidators
.
value
.
description
!
)
.
option
(
'
--rpc-url
[url]
'
,
writeOptionsValidators
.
rpcUrl
.
description
!
,
{
.
option
(
'
--rpc-url
<url>
'
,
writeOptionsValidators
.
rpcUrl
.
description
!
,
{
default
:
writeOptionsValidators
.
rpcUrl
.
parse
(
undefined
),
})
.
option
(
'
--contract
[address]
'
,
'
--contract
<address>
'
,
writeOptionsValidators
.
contract
.
description
!
,
{
default
:
writeOptionsValidators
.
contract
.
parse
(
undefined
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment