bobcat-interfaces 0.8.1

bobcat-sdk utilities for generating signautres on Arbitrum Stylus.
Documentation
use bobcat_maths::U;

use bobcat_cd::leftpad_addr;

use crate::selectors;

use array_concat::concat_arrays;

selectors! {
    SEL_TOTAL_SUPPLY = b"totalSupply()",
    SEL_BALANCE_OF = b"balanceOf(address)",
    SEL_ALLOWANCE = b"allowance(address,address)",
    SEL_TRANSFER = b"transfer(address,uint256)",
    SEL_TRANSFER_FROM = b"transferFrom(address,address,uint256)",
    SEL_APPROVE = b"approve(address,uint256)",
}

type Address = [u8; 20];

pub const fn make_fn_total_supply() -> [u8; 4] {
    SEL_TOTAL_SUPPLY
}

pub const fn make_fn_balance_of(user: Address) -> [u8; 4 + 32] {
    concat_arrays!(SEL_BALANCE_OF, leftpad_addr(user))
}

pub const fn make_fn_allowance(owner: Address, spender: Address) -> [u8; 4 + 32 * 2] {
    concat_arrays!(SEL_ALLOWANCE, leftpad_addr(owner), leftpad_addr(spender))
}

pub const fn make_fn_transfer(recipient: Address, amt: &U) -> [u8; 4 + 32 * 2] {
    concat_arrays!(SEL_TRANSFER, leftpad_addr(recipient), amt.0)
}

pub const fn make_fn_transfer_from(from: Address, to: Address, amt: &U) -> [u8; 4 + 32 * 3] {
    concat_arrays!(
        SEL_TRANSFER_FROM,
        leftpad_addr(from),
        leftpad_addr(to),
        amt.0
    )
}

pub const fn make_fn_approve(spender: Address, amt: &U) -> [u8; 4 + 32 * 2] {
    concat_arrays!(SEL_APPROVE, leftpad_addr(spender), amt.0)
}

#[test]
fn test_allowance() {
    assert_eq!(
        const_hex::const_decode_to_array::<{ 4 + 32 * 2 }>(b"dd62ed3e0000000000000000000000006221a9c005f6e47eb398fd867784cacfdcfff4e7000000000000000000000000feb6034fc7df27df18a3a6bad5fb94c0d3dcb6d5").unwrap(),
        make_fn_allowance(
            const_hex::const_decode_to_array::<20>(b"6221a9c005f6e47eb398fd867784cacfdcfff4e7").unwrap(),
            const_hex::const_decode_to_array::<20>(b"feb6034fc7df27df18a3a6bad5fb94c0d3dcb6d5").unwrap(),
        )
    )
}