# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# Functions

No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
* * * @param user User address * @param odyssey_from Odyssey ID that the user is removing stake * @param odyssey_to Odyssey ID that the user is staking into * @param amount Amount that's being restaked * @param token Token used (MOM or DAD) * @param total_staked_from Total amount of tokens that remains staked on the `odyssey_from` * @param total_staked_to Total amount of tokens staked on `odyssey_to` */event Restake(address user,bytes16 odyssey_from,bytes16 odyssey_to,uint256 amount,Token token,uint256 total_staked_from,uint256 total_staked_to);.
No description provided by the author
* * * @param user User address * @param odyssey Odyssey ID that's being staked * @param amount_staked Amount being staked * @param token Token used (MOM or DAD) * @param total_staked Total being staked by the user on the Odyssey */event Stake(address user, bytes16 odyssey, uint256 amount_staked, Token token, uint256 total_staked);.
No description provided by the author
No description provided by the author
* * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
No description provided by the author
No description provided by the author
* * * @param user User address * @param odyssey Odyssey ID that's being unstaked * @param amount_unstaked Amount unstaked * @param token Token used (MOM or DAD) * @param total_staked Total remained staked by the user on that Odyssey */event Unstake(address user, bytes16 odyssey, uint256 amount_unstaked, Token token, uint256 total_staked);.
No description provided by the author

# Interfaces

No description provided by the author

# Type aliases

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author