miden_objects/assets/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
use super::{
accounts::{AccountId, AccountType, ACCOUNT_ISFAUCET_MASK},
utils::serde::{ByteReader, ByteWriter, Deserializable, DeserializationError, Serializable},
AssetError, Felt, Hasher, Word, ZERO,
};
mod fungible;
pub use fungible::FungibleAsset;
mod nonfungible;
pub use nonfungible::{NonFungibleAsset, NonFungibleAssetDetails};
mod token_symbol;
pub use token_symbol::TokenSymbol;
mod vault;
pub use vault::AssetVault;
// ASSET
// ================================================================================================
/// A fungible or a non-fungible asset.
///
/// All assets are encoded using a single word (4 elements) such that it is easy to determine the
/// type of an asset both inside and outside Miden VM. Specifically:
///
/// Element 1 will be:
/// - ZERO for a fungible asset.
/// - non-ZERO for a non-fungible asset.
///
/// The 3rd most significant bit will be:
/// - 1 for a fungible asset.
/// - 0 for a non-fungible asset.
///
/// The above properties guarantee that there can never be a collision between a fungible and a
/// non-fungible asset.
///
/// The methodology for constructing fungible and non-fungible assets is described below.
///
/// # Fungible assets
/// The most significant element of a fungible asset is set to the ID of the faucet which issued
/// the asset. This guarantees the properties described above (the 3rd most significant bit is ONE).
///
/// The least significant element is set to the amount of the asset. This amount cannot be greater
/// than 2^63 - 1 and thus requires 63-bits to store.
///
/// Elements 1 and 2 are set to ZERO.
///
/// It is impossible to find a collision between two fungible assets issued by different faucets as
/// the faucet_id is included in the description of the asset and this is guaranteed to be different
/// for each faucet as per the faucet creation logic.
///
/// # Non-fungible assets
/// The 4 elements of non-fungible assets are computed as follows:
/// - First the asset data is hashed. This compresses an asset of an arbitrary length to 4 field
/// elements: [d0, d1, d2, d3].
/// - d1 is then replaced with the faucet_id which issues the asset: [d0, faucet_id, d2, d3].
/// - Lastly, the 3rd most significant bit of d3 is set to ZERO.
///
/// It is impossible to find a collision between two non-fungible assets issued by different faucets
/// as the faucet_id is included in the description of the non-fungible asset and this is guaranteed
/// to be different as per the faucet creation logic. Collision resistance for non-fungible assets
/// issued by the same faucet is ~2^95.
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum Asset {
Fungible(FungibleAsset),
NonFungible(NonFungibleAsset),
}
impl Asset {
/// Creates a new [Asset] without checking its validity.
pub(crate) fn new_unchecked(value: Word) -> Asset {
if is_not_a_non_fungible_asset(value) {
Asset::Fungible(FungibleAsset::new_unchecked(value))
} else {
Asset::NonFungible(unsafe { NonFungibleAsset::new_unchecked(value) })
}
}
/// Returns true if this asset is the same as the specified asset.
///
/// Two assets are defined to be the same if:
/// - For fungible assets, if they were issued by the same faucet.
/// - For non-fungible assets, if the assets are identical.
pub fn is_same(&self, other: &Self) -> bool {
use Asset::*;
match (self, other) {
(Fungible(l), Fungible(r)) => l.is_from_same_faucet(r),
(NonFungible(l), NonFungible(r)) => l == r,
_ => false,
}
}
/// Returns true if this asset is a fungible asset.
pub const fn is_fungible(&self) -> bool {
matches!(self, Self::Fungible(_))
}
/// Returns ID of the faucet which issued this asset.
pub fn faucet_id(&self) -> AccountId {
match self {
Self::Fungible(asset) => asset.faucet_id(),
Self::NonFungible(asset) => asset.faucet_id(),
}
}
/// Returns the key which is used to store this asset in the account vault.
pub fn vault_key(&self) -> Word {
match self {
Self::Fungible(asset) => asset.vault_key(),
Self::NonFungible(asset) => asset.vault_key(),
}
}
/// Returns the inner fungible asset, or panics if the asset is not fungible.
pub fn unwrap_fungible(&self) -> FungibleAsset {
match self {
Asset::Fungible(asset) => *asset,
Asset::NonFungible(_) => panic!("the asset is non-fungible"),
}
}
/// Returns the inner non-fungible asset, or panics if the asset is fungible.
pub fn unwrap_non_fungible(&mut self) -> NonFungibleAsset {
match self {
Asset::Fungible(_) => panic!("the asset is fungible"),
Asset::NonFungible(asset) => *asset,
}
}
}
impl From<Asset> for Word {
fn from(asset: Asset) -> Self {
match asset {
Asset::Fungible(asset) => asset.into(),
Asset::NonFungible(asset) => asset.into(),
}
}
}
impl From<&Asset> for Word {
fn from(value: &Asset) -> Self {
(*value).into()
}
}
impl TryFrom<&Word> for Asset {
type Error = AssetError;
fn try_from(value: &Word) -> Result<Self, Self::Error> {
(*value).try_into()
}
}
impl TryFrom<Word> for Asset {
type Error = AssetError;
fn try_from(value: Word) -> Result<Self, Self::Error> {
if is_not_a_non_fungible_asset(value) {
FungibleAsset::try_from(value).map(Asset::from)
} else {
NonFungibleAsset::try_from(value).map(Asset::from)
}
}
}
// SERIALIZATION
// ================================================================================================
impl Serializable for Asset {
fn write_into<W: ByteWriter>(&self, target: &mut W) {
match self {
Asset::Fungible(fungible_asset) => fungible_asset.write_into(target),
Asset::NonFungible(non_fungible_asset) => non_fungible_asset.write_into(target),
}
}
fn get_size_hint(&self) -> usize {
match self {
Asset::Fungible(fungible_asset) => fungible_asset.get_size_hint(),
Asset::NonFungible(non_fungible_asset) => non_fungible_asset.get_size_hint(),
}
}
}
impl Deserializable for Asset {
fn read_from<R: ByteReader>(source: &mut R) -> Result<Self, DeserializationError> {
// Both asset types have their faucet ID as the first element, so we can use it to inspect
// what type of asset it is.
let account_id: AccountId = source.read()?;
let account_type = account_id.account_type();
match account_type {
AccountType::FungibleFaucet => {
FungibleAsset::deserialize_with_account_id(account_id, source).map(Asset::from)
},
AccountType::NonFungibleFaucet => {
NonFungibleAsset::deserialize_with_account_id(account_id, source).map(Asset::from)
},
other_type => {
Err(DeserializationError::InvalidValue(format!(
"failed to deserialize asset: expected an account ID of type faucet, found {other_type:?}"
)))
},
}
}
}
// HELPER FUNCTIONS
// ================================================================================================
/// Returns `true` if asset in [Word] is not a non-fungible asset.
///
/// Note: this does not mean that the word is a fungible asset as the word may contain an value
/// which is not a valid asset.
fn is_not_a_non_fungible_asset(asset: Word) -> bool {
// For fungible assets, the position `3` contains the faucet's account id, in which case the
// bit is set. For non-fungible assets have the bit always set to `0`.
(asset[3].as_int() & ACCOUNT_ISFAUCET_MASK) == ACCOUNT_ISFAUCET_MASK
}
// TESTS
// ================================================================================================
#[cfg(test)]
mod tests {
use miden_crypto::{
utils::{Deserializable, Serializable},
Word,
};
use super::{Asset, FungibleAsset, NonFungibleAsset, NonFungibleAssetDetails};
use crate::accounts::{
account_id::testing::{
ACCOUNT_ID_FUNGIBLE_FAUCET_OFF_CHAIN, ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_1, ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_2,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_3, ACCOUNT_ID_NON_FUNGIBLE_FAUCET_OFF_CHAIN,
ACCOUNT_ID_NON_FUNGIBLE_FAUCET_ON_CHAIN, ACCOUNT_ID_NON_FUNGIBLE_FAUCET_ON_CHAIN_1,
},
AccountId,
};
#[test]
fn test_asset_serde() {
for fungible_account_id in [
ACCOUNT_ID_FUNGIBLE_FAUCET_OFF_CHAIN,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_1,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_2,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_3,
] {
let account_id = AccountId::try_from(fungible_account_id).unwrap();
let fungible_asset: Asset = FungibleAsset::new(account_id, 10).unwrap().into();
assert_eq!(fungible_asset, Asset::read_from_bytes(&fungible_asset.to_bytes()).unwrap());
}
for non_fungible_account_id in [
ACCOUNT_ID_NON_FUNGIBLE_FAUCET_OFF_CHAIN,
ACCOUNT_ID_NON_FUNGIBLE_FAUCET_ON_CHAIN,
ACCOUNT_ID_NON_FUNGIBLE_FAUCET_ON_CHAIN_1,
] {
let account_id = AccountId::try_from(non_fungible_account_id).unwrap();
let details = NonFungibleAssetDetails::new(account_id, vec![1, 2, 3]).unwrap();
let non_fungible_asset: Asset = NonFungibleAsset::new(&details).unwrap().into();
assert_eq!(
non_fungible_asset,
Asset::read_from_bytes(&non_fungible_asset.to_bytes()).unwrap()
);
}
}
#[test]
fn test_new_unchecked() {
for fungible_account_id in [
ACCOUNT_ID_FUNGIBLE_FAUCET_OFF_CHAIN,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_1,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_2,
ACCOUNT_ID_FUNGIBLE_FAUCET_ON_CHAIN_3,
] {
let account_id = AccountId::try_from(fungible_account_id).unwrap();
let fungible_asset: Asset = FungibleAsset::new(account_id, 10).unwrap().into();
assert_eq!(fungible_asset, Asset::new_unchecked(Word::from(&fungible_asset)));
}
for non_fungible_account_id in [
ACCOUNT_ID_NON_FUNGIBLE_FAUCET_OFF_CHAIN,
ACCOUNT_ID_NON_FUNGIBLE_FAUCET_ON_CHAIN,
ACCOUNT_ID_NON_FUNGIBLE_FAUCET_ON_CHAIN_1,
] {
let account_id = AccountId::try_from(non_fungible_account_id).unwrap();
let details = NonFungibleAssetDetails::new(account_id, vec![1, 2, 3]).unwrap();
let non_fungible_asset: Asset = NonFungibleAsset::new(&details).unwrap().into();
assert_eq!(non_fungible_asset, Asset::new_unchecked(Word::from(non_fungible_asset)));
}
}
}