@@ -594,7 +594,7 @@ pub enum CastSubcommand {
594
594
/// Decode event data.
595
595
#[ command( visible_aliases = & [ "event-decode" , "--event-decode" , "ed" ] ) ]
596
596
DecodeEvent {
597
- /// The event signature. If none provided then tries to decode from local cache or <https://api.openchain.xyz >.
597
+ /// The event signature. If none provided then tries to decode from local cache or <https://docs.sourcify.dev/docs/api/ >.
598
598
#[ arg( long, visible_alias = "event-sig" ) ]
599
599
sig : Option < String > ,
600
600
/// The event data to decode.
@@ -604,7 +604,7 @@ pub enum CastSubcommand {
604
604
/// Decode custom error data.
605
605
#[ command( visible_aliases = & [ "error-decode" , "--error-decode" , "erd" ] ) ]
606
606
DecodeError {
607
- /// The error signature. If none provided then tries to decode from local cache or <https://api.openchain.xyz >.
607
+ /// The error signature. If none provided then tries to decode from local cache or <https://docs.sourcify.dev/docs/api/ >.
608
608
#[ arg( long, visible_alias = "error-sig" ) ]
609
609
sig : Option < String > ,
610
610
/// The error data to decode.
@@ -719,29 +719,29 @@ pub enum CastSubcommand {
719
719
rpc : RpcOpts ,
720
720
} ,
721
721
722
- /// Get the function signatures for the given selector from <https://openchain.xyz >.
722
+ /// Get the function signatures for the given selector from <https://docs.sourcify.dev/docs/api/ >.
723
723
#[ command( name = "4byte" , visible_aliases = & [ "4" , "4b" ] ) ]
724
724
FourByte {
725
725
/// The function selector.
726
726
selector : Option < Selector > ,
727
727
} ,
728
728
729
- /// Decode ABI-encoded calldata using <https://openchain.xyz >.
729
+ /// Decode ABI-encoded calldata using <https://docs.sourcify.dev/docs/api/ >.
730
730
#[ command( name = "4byte-calldata" , aliases = & [ "4byte-decode" , "4d" , "4bd" ] , visible_aliases = & [ "4c" , "4bc" ] ) ]
731
731
FourByteCalldata {
732
732
/// The ABI-encoded calldata.
733
733
calldata : Option < String > ,
734
734
} ,
735
735
736
- /// Get the event signature for a given topic 0 from <https://openchain.xyz >.
736
+ /// Get the event signature for a given topic 0 from <https://docs.sourcify.dev/docs/api/ >.
737
737
#[ command( name = "4byte-event" , visible_aliases = & [ "4e" , "4be" , "topic0-event" , "t0e" ] ) ]
738
738
FourByteEvent {
739
739
/// Topic 0
740
740
#[ arg( value_name = "TOPIC_0" ) ]
741
741
topic : Option < B256 > ,
742
742
} ,
743
743
744
- /// Upload the given signatures to <https://openchain.xyz >.
744
+ /// Upload the given signatures to <https://docs.sourcify.dev/docs/api/ >.
745
745
///
746
746
/// Example inputs:
747
747
/// - "transfer(address,uint256)"
@@ -759,13 +759,13 @@ pub enum CastSubcommand {
759
759
760
760
/// Pretty print calldata.
761
761
///
762
- /// Tries to decode the calldata using <https://openchain.xyz > unless --offline is passed.
762
+ /// Tries to decode the calldata using <https://docs.sourcify.dev/docs/api/ > unless --offline is passed.
763
763
#[ command( visible_alias = "pc" ) ]
764
764
PrettyCalldata {
765
765
/// The calldata.
766
766
calldata : Option < String > ,
767
767
768
- /// Skip the <https://openchain.xyz > lookup.
768
+ /// Skip the <https://docs.sourcify.dev/docs/api/ > lookup.
769
769
#[ arg( long, short) ]
770
770
offline : bool ,
771
771
} ,
@@ -1125,7 +1125,7 @@ pub enum CastSubcommand {
1125
1125
/// The hex-encoded bytecode.
1126
1126
bytecode : Option < String > ,
1127
1127
1128
- /// Resolve the function signatures for the extracted selectors using <https://openchain.xyz >
1128
+ /// Resolve the function signatures for the extracted selectors using <https://docs.sourcify.dev/docs/api/ >
1129
1129
#[ arg( long, short) ]
1130
1130
resolve : bool ,
1131
1131
} ,
0 commit comments