Skip to content
View bkpleb's full-sized avatar
focusing
focusing

Block or report bkpleb

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 250 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. decode Alchemy calldata decode Alchemy calldata
    1
    import { parseAbi, decodeFunctionData } from "viem";
    2
    
                  
    3
    export interface Execution {
    4
        target: string;
    5
        value: bigint;
  2. A function selector calculator that ... A function selector calculator that helps identify different Account Abstraction (AA) implementations by their unique function signatures.
    1
    // calculate_function_selector.js
    2
    import { keccak256, toUtf8Bytes } from 'ethers';
    3
    
                  
    4
    function calculateFunctionSelector(functionSignature: string): string {
    5
        const fullHash = keccak256(toUtf8Bytes(functionSignature));
  3. decode ZeroDev/ERC7579 calldata decode ZeroDev/ERC7579 calldata
    1
    import { decodeFunctionData, hexToBytes, parseAbi, decodeAbiParameters } from "viem";
    2
    
                  
    3
    export interface Execution {
    4
        target: string;
    5
        value: bigint;