Skip to content

Commit 74c7dc1

Browse files
fix: adding back missing arg (#492)
1 parent a7cc19e commit 74c7dc1

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

cmd/ulxly/ulxly.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1419,6 +1419,7 @@ or if it's actually an intermediate hash.`,
14191419
inputUlxlyArgs.destNetwork = ulxlyBridgeCmd.PersistentFlags().Uint32(ArgDestNetwork, 0, "the rollup id of the destination network")
14201420
inputUlxlyArgs.tokenAddress = ulxlyBridgeCmd.PersistentFlags().String(ArgTokenAddress, "0x0000000000000000000000000000000000000000", "the address of an ERC20 token to be used")
14211421
inputUlxlyArgs.callData = ulxlyBridgeCmd.PersistentFlags().String(ArgCallData, "0x", "call data to be passed directly with bridge-message or as an ERC20 Permit")
1422+
inputUlxlyArgs.callDataFile = ulxlyBridgeCmd.PersistentFlags().String(ArgCallDataFile, "", "a file containing hex encoded call data")
14221423
fatalIfError(ulxlyBridgeCmd.MarkPersistentFlagRequired(ArgDestNetwork))
14231424

14241425
// Claim specific args

doc/polycli_ulxly__bridge.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Commands for moving funds and sending messages from one chain to another
1717

1818
```bash
1919
--call-data string call data to be passed directly with bridge-message or as an ERC20 Permit (default "0x")
20+
--call-data-file string a file containing hex encoded call data
2021
--destination-network uint32 the rollup id of the destination network
2122
--force-update-root indicates if the new global exit root is updated or not (default true)
2223
-h, --help help for bridge

doc/polycli_ulxly__bridge_asset.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ The command also inherits flags from parent commands.
100100
```bash
101101
--bridge-address string the address of the lxly bridge
102102
--call-data string call data to be passed directly with bridge-message or as an ERC20 Permit (default "0x")
103+
--call-data-file string a file containing hex encoded call data
103104
--chain-id string set the chain id to be used in the transaction
104105
--config string config file (default is $HOME/.polygon-cli.yaml)
105106
--destination-address string the address where the bridge will be sent to

doc/polycli_ulxly__bridge_message.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ The command also inherits flags from parent commands.
9797
```bash
9898
--bridge-address string the address of the lxly bridge
9999
--call-data string call data to be passed directly with bridge-message or as an ERC20 Permit (default "0x")
100+
--call-data-file string a file containing hex encoded call data
100101
--chain-id string set the chain id to be used in the transaction
101102
--config string config file (default is $HOME/.polygon-cli.yaml)
102103
--destination-address string the address where the bridge will be sent to

doc/polycli_ulxly__bridge_weth.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ The command also inherits flags from parent commands.
6666
```bash
6767
--bridge-address string the address of the lxly bridge
6868
--call-data string call data to be passed directly with bridge-message or as an ERC20 Permit (default "0x")
69+
--call-data-file string a file containing hex encoded call data
6970
--chain-id string set the chain id to be used in the transaction
7071
--config string config file (default is $HOME/.polygon-cli.yaml)
7172
--destination-address string the address where the bridge will be sent to

0 commit comments

Comments
 (0)