Skip to content

Commit

Permalink
rgb20: support all iterface ids
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Aug 2, 2024
1 parent afe224f commit 68196f0
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 16 deletions.
42 changes: 28 additions & 14 deletions src/rgb20/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ use strict_types::TypeLib;
use self::iface::{burnable, fixed, inflatable, replaceable, rgb20_base, rgb20_renamable};
pub use self::info::{Rgb20Info, SupplyEvent, SupplyInfo};
pub use self::issuer::{IssuerError, PrimaryIssue};
pub use self::wrapper::{Rgb20Wrapper, RGB20_FIXED_IFACE_ID, RGB20_IFACE_ID};
pub use self::wrapper::{Rgb20Wrapper, RGB20_FIXED_IFACE_ID, RGB20_FULL_IFACE_ID};
use crate::rgb20::wrapper::{
RGB20_BURNABLE_IFACE_ID, RGB20_INFLATABLE_BURNABLE_IFACE_ID, RGB20_INFLATABLE_IFACE_ID,
RGB20_RENAMABLE_BURNABLE_IFACE_ID, RGB20_RENAMABLE_IFACE_ID,
RGB20_RENAMABLE_INFLATABLE_BURNABLE_IFACE_ID, RGB20_RENAMABLE_INFLATABLE_IFACE_ID,
RGB20_REPLACABLE_IFACE_ID,
};

pub const LIB_NAME_RGB20: &str = "RGB20";

Expand Down Expand Up @@ -109,17 +115,17 @@ impl Rgb20 {
// reserves: false,
inflation: Inflation::Replaceable,
};
pub const INFLATABLE_RENAMABLE: Self = Rgb20 {
pub const RENAMABLE_INFLATABLE: Self = Rgb20 {
renaming: true,
// reserves: false,
inflation: Inflation::Inflatable,
};
pub const BURNABLE_RENAMABLE: Self = Rgb20 {
pub const RENAMABLE_BURNABLE: Self = Rgb20 {
renaming: true,
// reserves: false,
inflation: Inflation::Burnable,
};
pub const INFLATABLE_BURNABLE_RENAMABLE: Self = Rgb20 {
pub const RENAMABLE_INFLATABLE_BURNABLE: Self = Rgb20 {
renaming: true,
// reserves: false,
inflation: Inflation::InflatableBurnable,
Expand All @@ -136,9 +142,9 @@ impl Rgb20 {
Self::BURNABLE,
Self::INFLATABLE_BURNABLE,
Self::REPLACEABLE,
Self::INFLATABLE_RENAMABLE,
Self::BURNABLE_RENAMABLE,
Self::INFLATABLE_BURNABLE_RENAMABLE,
Self::RENAMABLE_INFLATABLE,
Self::RENAMABLE_BURNABLE,
Self::RENAMABLE_INFLATABLE_BURNABLE,
Self::ALL,
];

Expand All @@ -164,7 +170,15 @@ impl IfaceClass for Rgb20 {
const IFACE_NAME: &'static str = LIB_NAME_RGB20;
const IFACE_IDS: &'static [IfaceId] = &[
RGB20_FIXED_IFACE_ID,
RGB20_IFACE_ID, // TODO: Add other iface ids
RGB20_RENAMABLE_IFACE_ID,
RGB20_INFLATABLE_IFACE_ID,
RGB20_BURNABLE_IFACE_ID,
RGB20_INFLATABLE_BURNABLE_IFACE_ID,
RGB20_REPLACABLE_IFACE_ID,
RGB20_RENAMABLE_INFLATABLE_IFACE_ID,
RGB20_RENAMABLE_BURNABLE_IFACE_ID,
RGB20_RENAMABLE_INFLATABLE_BURNABLE_IFACE_ID,
RGB20_FULL_IFACE_ID,
];
type Wrapper<S: ContractStateRead> = Rgb20Wrapper<S>;

Expand Down Expand Up @@ -227,12 +241,12 @@ mod test {

#[test]
fn iface_id_all() {
let iface_id = Rgb20::FIXED.iface_id();
eprintln!("{:#04x?}", iface_id.to_byte_array());
assert_eq!(Rgb20::IFACE_IDS[0], iface_id);
let iface_id = Rgb20::ALL.iface_id();
eprintln!("{:#04x?}", iface_id.to_byte_array());
assert_eq!(Rgb20::IFACE_IDS[1], iface_id);
for (iface, iface_id) in Rgb20::ENUMERATE.iter().zip(Rgb20::IFACE_IDS) {
if iface.iface_id() != *iface_id {
eprintln!("{}: {:#04x?}", iface.iface().name, iface.iface_id().to_byte_array());
}
assert_eq!(iface.iface_id(), *iface_id);
}
}

#[test]
Expand Down
36 changes: 34 additions & 2 deletions src/rgb20/wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,39 @@ pub const RGB20_FIXED_IFACE_ID: IfaceId = IfaceId::from_array([
0xfe, 0x25, 0x27, 0x3b, 0xd6, 0x8e, 0xd7, 0x18, 0x6a, 0x51, 0xde, 0xb5, 0x26, 0x6e, 0x52, 0xe7,
0xec, 0x0c, 0xde, 0x78, 0x1b, 0xcb, 0x91, 0x95, 0x13, 0x29, 0x50, 0x65, 0x30, 0x0c, 0x60, 0x39,
]);
pub const RGB20_IFACE_ID: IfaceId = IfaceId::from_array([
pub const RGB20_RENAMABLE_IFACE_ID: IfaceId = IfaceId::from_array([
0x99, 0xe1, 0xeb, 0xb5, 0x54, 0xd9, 0xeb, 0x10, 0x1d, 0x77, 0x4c, 0x2b, 0x8c, 0x3b, 0x6d, 0x2e,
0x17, 0x2c, 0xda, 0x7e, 0xf3, 0x9e, 0xc6, 0x41, 0xcd, 0xfc, 0x33, 0x15, 0xc5, 0x3e, 0x8b, 0x6e,
]);
pub const RGB20_INFLATABLE_IFACE_ID: IfaceId = IfaceId::from_array([
0x60, 0xba, 0x66, 0x6e, 0x76, 0x36, 0xc9, 0x99, 0xff, 0x25, 0xd1, 0xa0, 0x86, 0x3c, 0x28, 0x08,
0xfc, 0xe3, 0xdb, 0x5e, 0x72, 0xd3, 0xf5, 0xee, 0xc0, 0x0f, 0x74, 0xa3, 0xf0, 0x8f, 0xfe, 0x98,
]);
pub const RGB20_INFLATABLE_BURNABLE_IFACE_ID: IfaceId = IfaceId::from_array([
0x05, 0x6c, 0xb6, 0x1f, 0x43, 0x5d, 0xca, 0x48, 0x1a, 0x9d, 0xda, 0xe6, 0x47, 0x97, 0xf2, 0x76,
0x25, 0x3f, 0xee, 0xd1, 0x54, 0xd9, 0x1f, 0xb3, 0xd4, 0x5f, 0x41, 0x31, 0x95, 0xb4, 0xb4, 0xaa,
]);
pub const RGB20_BURNABLE_IFACE_ID: IfaceId = IfaceId::from_array([
0xcb, 0x14, 0x11, 0x70, 0xd2, 0x78, 0xc8, 0xc9, 0xc9, 0xd3, 0xf7, 0x20, 0x2e, 0x3c, 0x29, 0x75,
0x2f, 0x03, 0xb8, 0x98, 0xc5, 0x9e, 0x95, 0x90, 0xe2, 0x2e, 0x42, 0x4e, 0x8d, 0x91, 0xfd, 0x4e,
]);
pub const RGB20_RENAMABLE_INFLATABLE_IFACE_ID: IfaceId = IfaceId::from_array([
0x1b, 0x37, 0x77, 0x0f, 0x05, 0x72, 0x4e, 0xd1, 0x77, 0x67, 0xa5, 0x61, 0xf7, 0xcd, 0x6a, 0x8d,
0x45, 0x95, 0xf5, 0x09, 0x9b, 0x4b, 0xf4, 0x81, 0xe5, 0x3c, 0xa0, 0xeb, 0x2e, 0x4f, 0x2c, 0xf7,
]);
pub const RGB20_REPLACABLE_IFACE_ID: IfaceId = IfaceId::from_array([
0xc3, 0x46, 0x75, 0x65, 0xad, 0xa3, 0x92, 0x5a, 0x5f, 0x5b, 0x24, 0xf8, 0x72, 0x83, 0x81, 0xfb,
0xaf, 0x74, 0xa9, 0xa9, 0x16, 0xe4, 0x07, 0xe3, 0x98, 0x87, 0x3d, 0x7a, 0x36, 0x5b, 0x29, 0x95,
]);
pub const RGB20_RENAMABLE_BURNABLE_IFACE_ID: IfaceId = IfaceId::from_array([
0x14, 0x57, 0xcf, 0x3d, 0x60, 0xc7, 0xe3, 0xf0, 0x56, 0x06, 0x7e, 0xf7, 0x42, 0x71, 0x3c, 0x59,
0x59, 0xc7, 0x8f, 0xdf, 0x04, 0xf0, 0x8a, 0x00, 0x21, 0x9b, 0xed, 0xe2, 0x48, 0x97, 0xed, 0x80,
]);
pub const RGB20_RENAMABLE_INFLATABLE_BURNABLE_IFACE_ID: IfaceId = IfaceId::from_array([
0x32, 0x44, 0xae, 0xbe, 0xfc, 0xf6, 0x4a, 0xd1, 0xb3, 0xb9, 0x5f, 0x07, 0x7b, 0x0a, 0xb4, 0x7e,
0x88, 0x4c, 0x8a, 0x05, 0xa6, 0xfd, 0x43, 0x31, 0x5e, 0xd7, 0x4f, 0x44, 0x29, 0xd9, 0xc9, 0xe7,
]);
pub const RGB20_FULL_IFACE_ID: IfaceId = IfaceId::from_array([
0xaf, 0xaf, 0xdd, 0x2d, 0xe5, 0x72, 0x1f, 0x41, 0xd0, 0xa5, 0x4c, 0x85, 0xd9, 0x76, 0xd7, 0xd8,
0x43, 0xf6, 0x26, 0xa6, 0xc7, 0xa7, 0x0b, 0x08, 0x48, 0x3e, 0x1f, 0xc5, 0x41, 0x1a, 0x38, 0xa4,
]);
Expand All @@ -51,7 +83,7 @@ impl<S: ContractStateRead> IfaceWrapper<S> for Rgb20Wrapper<S> {

fn with(iface: ContractIface<S>) -> Self {
if !Rgb20::IFACE_IDS.contains(&iface.iface.iface_id) {
panic!("the provided interface is not RGB21 interface");
panic!("the provided interface is not RGB20 interface");
}
Self(iface)
}
Expand Down

0 comments on commit 68196f0

Please sign in to comment.