@@ -38,31 +38,32 @@ var assetsCommands = []cli.Command{
3838}
3939
4040var (
41- assetTypeName = "type"
42- assetTagName = "name"
43- assetSupplyName = "supply"
44- assetMetaBytesName = "meta_bytes"
45- assetMetaFilePathName = "meta_file_path"
46- assetMetaTypeName = "meta_type"
47- assetDecimalDisplayName = "decimal_display"
48- assetNewGroupedAssetName = "new_grouped_asset"
49- assetGroupedAssetName = "grouped_asset"
50- assetShowWitnessName = "show_witness"
51- assetShowSpentName = "show_spent"
52- assetShowLeasedName = "show_leased"
53- assetIncludeLeasedName = "include_leased"
54- assetShowUnconfMintsName = "show_unconfirmed_mints"
55- assetGroupKeyName = "group_key"
56- assetGroupAnchorName = "group_anchor"
57- anchorTxidName = "anchor_txid"
58- batchKeyName = "batch_key"
59- groupByGroupName = "by_group"
60- assetIDName = "asset_id"
61- shortResponseName = "short"
62- universeCommitmentsName = "universe_commitments"
63- feeRateName = "sat_per_vbyte"
64- assetAmountName = "amount"
65- burnOverrideConfirmationName = "override_confirmation_destroy_assets"
41+ assetTypeName = "type"
42+ assetTagName = "name"
43+ assetSupplyName = "supply"
44+ assetMetaBytesName = "meta_bytes"
45+ assetMetaFilePathName = "meta_file_path"
46+ assetMetaTypeName = "meta_type"
47+ assetDecimalDisplayName = "decimal_display"
48+ assetNewGroupedAssetName = "new_grouped_asset"
49+ assetGroupedAssetName = "grouped_asset"
50+ assetShowWitnessName = "show_witness"
51+ assetShowSpentName = "show_spent"
52+ assetShowLeasedName = "show_leased"
53+ assetIncludeLeasedName = "include_leased"
54+ assetShowUnconfMintsName = "show_unconfirmed_mints"
55+ assetGroupKeyName = "group_key"
56+ assetGroupAnchorName = "group_anchor"
57+ anchorTxidName = "anchor_txid"
58+ batchKeyName = "batch_key"
59+ groupByGroupName = "by_group"
60+ assetIDName = "asset_id"
61+ shortResponseName = "short"
62+ universeCommitmentsName = "universe_commitments"
63+ feeRateName = "sat_per_vbyte"
64+ skipProofCourierPingCheckName = "skip-proof-courier-ping-check"
65+ assetAmountName = "amount"
66+ burnOverrideConfirmationName = "override_confirmation_destroy_assets"
6667)
6768
6869var mintAssetCommand = cli.Command {
@@ -824,6 +825,10 @@ var sendAssetsCommand = cli.Command{
824825 Usage : "if set, the fee rate in sat/vB to use for " +
825826 "the anchor transaction" ,
826827 },
828+ cli.BoolFlag {
829+ Name : skipProofCourierPingCheckName ,
830+ Usage : "if set, skip the proof courier ping check" ,
831+ },
827832 // TODO(roasbeef): add arg for file name to write sender proof
828833 // blob
829834 },
@@ -848,6 +853,9 @@ func sendAssets(ctx *cli.Context) error {
848853 resp , err := client .SendAsset (ctxc , & taprpc.SendAssetRequest {
849854 TapAddrs : addrs ,
850855 FeeRate : feeRate ,
856+ SkipProofCourierPingCheck : ctx .Bool (
857+ skipProofCourierPingCheckName ,
858+ ),
851859 })
852860 if err != nil {
853861 return fmt .Errorf ("unable to send assets: %w" , err )
0 commit comments