hoodchain - v0.1.0
    Preparing search index...

    Variable stockTokenAbiConst

    stockTokenAbi: readonly [
        {
            inputs: readonly [];
            name: "name";
            outputs: readonly [{ type: "string" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "symbol";
            outputs: readonly [{ type: "string" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "decimals";
            outputs: readonly [{ type: "uint8" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "totalSupply";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [{ name: "account"; type: "address" }];
            name: "balanceOf";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [
                { name: "owner"; type: "address" },
                { name: "spender"; type: "address" },
            ];
            name: "allowance";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [
                { name: "to"; type: "address" },
                { name: "amount"; type: "uint256" },
            ];
            name: "transfer";
            outputs: readonly [{ type: "bool" }];
            stateMutability: "nonpayable";
            type: "function";
        },
        {
            inputs: readonly [
                { name: "spender"; type: "address" },
                { name: "amount"; type: "uint256" },
            ];
            name: "approve";
            outputs: readonly [{ type: "bool" }];
            stateMutability: "nonpayable";
            type: "function";
        },
        {
            inputs: readonly [
                { name: "from"; type: "address" },
                { name: "to"; type: "address" },
                { name: "amount"; type: "uint256" },
            ];
            name: "transferFrom";
            outputs: readonly [{ type: "bool" }];
            stateMutability: "nonpayable";
            type: "function";
        },
        {
            inputs: readonly [
                { indexed: true; name: "from"; type: "address" },
                { indexed: true; name: "to"; type: "address" },
                { indexed: false; name: "value"; type: "uint256" },
            ];
            name: "Transfer";
            type: "event";
        },
        {
            inputs: readonly [
                { indexed: true; name: "owner"; type: "address" },
                { indexed: true; name: "spender"; type: "address" },
                { indexed: false; name: "value"; type: "uint256" },
            ];
            name: "Approval";
            type: "event";
        },
        {
            inputs: readonly [];
            name: "uiMultiplier";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "newUIMultiplier";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "effectiveAt";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [{ name: "account"; type: "address" }];
            name: "balanceOfUI";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "totalSupplyUI";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "paused";
            outputs: readonly [{ type: "bool" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "tokenPaused";
            outputs: readonly [{ type: "bool" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "oraclePaused";
            outputs: readonly [{ type: "bool" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "terms";
            outputs: readonly [{ type: "string" }];
            stateMutability: "pure";
            type: "function";
        },
        {
            inputs: readonly [];
            name: "uid";
            outputs: readonly [{ type: "bytes32" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [{ name: "owner"; type: "address" }];
            name: "nonces";
            outputs: readonly [{ type: "uint256" }];
            stateMutability: "view";
            type: "function";
        },
        {
            inputs: readonly [
                { name: "owner"; type: "address" },
                { name: "spender"; type: "address" },
                { name: "value"; type: "uint256" },
                { name: "deadline"; type: "uint256" },
                { name: "v"; type: "uint8" },
                { name: "r"; type: "bytes32" },
                { name: "s"; type: "bytes32" },
            ];
            name: "permit";
            outputs: readonly [];
            stateMutability: "nonpayable";
            type: "function";
        },
    ] = ...

    Canonical Stock Token surface (ERC-20 + ERC-8056 corporate-action fields + EIP-2612 permit). Read from the verified Stock implementation on Blockscout.