Reading Bond Details
Bonding Details
/**
* @dev Retrieves the details of a bond token.
* @param token The address of the bond token.
* @return detail The BondDetail struct containing the royalty, bond info, and steps of the bond token.
*/
function getDetail(
address token
) external view returns (BondDetail memory detail);
Bond Status
/**
* @notice Current lifecycle status of a bond.
*/
enum BondStatus {
Active,
Finalized,
Migrated
}
Value
Status
Description
Bond Information
Integration Notes
Last updated