--- title: Client sidebar_label: Client sidebar_position: 9 slug: /apps/transfer/ics20-v1/client --- # Client ## CLI A user can query and interact with the `transfer` module using the CLI. Use the `--help` flag to discover the available commands: ### Query The `query` commands allow users to query `transfer` state. ```shell simd query ibc-transfer --help ``` #### Transactions The `tx` commands allow users to interact with the controller submodule. ```shell simd tx ibc-transfer --help ``` #### `transfer` The `transfer` command allows users to execute cross-chain token transfers from the source port ID and channel ID on the sending chain. ```shell simd tx ibc-transfer transfer [src-port] [src-channel] [receiver] [coins] [flags] ``` The `coins` parameter accepts the amount and denomination (e.g. `100uatom`) of the tokens to be transferred. The additional flags that can be used with the command are: - `--packet-timeout-height` to specify the timeout block height in the format `{revision}-{height}`. The default value is `0-0`, which effectively disables the timeout. Timeout height can only be absolute, therefore this option must be used in combination with `--absolute-timeouts` set to true. On IBC v1 protocol, either `--packet-timeout-height` or `--packet-timeout-timestamp` must be set. On IBC v2 protocol `--packet-timeout-timestamp` must be set. - `--packet-timeout-timestamp` to specify the timeout timestamp in nanoseconds. The timeout can be either relative (from the current UTC time) or absolute. The default value is 10 minutes (and thus relative). On IBC v1 protocol, either `--packet-timeout-height` or `--packet-timeout-timestamp` must be set. On IBC v2 protocol `--packet-timeout-timestamp` must be set. - `--absolute-timeouts` to interpret the timeout timestamp as an absolute value (when set to true). The default value is false (and thus the timeout is considered relative to current UTC time). - `--memo` to specify the memo string to be sent along with the transfer packet. If forwarding is used, then the memo string will be carried through the intermediary chains to the final destination. #### `total-escrow` The `total-escrow` command allows users to query the total amount in escrow for a particular coin denomination regardless of the transfer channel from where the coins were sent out. ```shell simd query ibc-transfer total-escrow [denom] [flags] ``` Example: ```shell simd query ibc-transfer total-escrow samoleans ``` Example Output: ```shell amount: "100" ``` ## gRPC A user can query the `transfer` module using gRPC endpoints. ### `TotalEscrowForDenom` The `TotalEscrowForDenom` endpoint allows users to query the total amount in escrow for a particular coin denomination regardless of the transfer channel from where the coins were sent out. ```shell ibc.applications.transfer.v1.Query/TotalEscrowForDenom ``` Example: ```shell grpcurl -plaintext \ -d '{"denom":"samoleans"}' \ localhost:9090 \ ibc.applications.transfer.v1.Query/TotalEscrowForDenom ``` Example output: ```shell { "amount": "100" } ```