Skip to content

Commit

Permalink
feat: add version display
Browse files Browse the repository at this point in the history
  • Loading branch information
Luisfc68 committed Aug 9, 2024
1 parent 6ba5f92 commit cd5d19a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions contracts/BtcUtils.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ library BtcUtils {
uint256 totalSize;
}

function version() external pure returns (string memory) {
return "0.2.1";
}

/// @notice Parse a raw transaction to get an array of its outputs in a structured representation
/// @param rawTx the raw transaction
/// @return An array of `TxRawOutput` with the outputs of the transaction
Expand Down

0 comments on commit cd5d19a

Please sign in to comment.