Skip to content
Alchemy Logo

MultisigPluginExecutionFunctionAbi

const MultisigPluginExecutionFunctionAbi: readonly [
  {
    inputs: readonly [
      {
        internalType: "address[]";
        name: "ownersToAdd";
        type: "address[]";
      },
      {
        internalType: "address[]";
        name: "ownersToRemove";
        type: "address[]";
      },
      {
        internalType: "uint128";
        name: "newThreshold";
        type: "uint128";
      },
    ];
    name: "updateOwnership";
    outputs: readonly [];
    stateMutability: "nonpayable";
    type: "function";
  },
  {
    inputs: readonly [];
    name: "eip712Domain";
    outputs: readonly [
      {
        internalType: "bytes1";
        name: "fields";
        type: "bytes1";
      },
      {
        internalType: "string";
        name: "name";
        type: "string";
      },
      {
        internalType: "string";
        name: "version";
        type: "string";
      },
      {
        internalType: "uint256";
        name: "chainId";
        type: "uint256";
      },
      {
        internalType: "address";
        name: "verifyingContract";
        type: "address";
      },
      {
        internalType: "bytes32";
        name: "salt";
        type: "bytes32";
      },
      {
        internalType: "uint256[]";
        name: "extensions";
        type: "uint256[]";
      },
    ];
    stateMutability: "view";
    type: "function";
  },
  {
    inputs: readonly [
      {
        internalType: "bytes32";
        name: "digest";
        type: "bytes32";
      },
      {
        internalType: "bytes";
        name: "signature";
        type: "bytes";
      },
    ];
    name: "isValidSignature";
    outputs: readonly [
      {
        internalType: "bytes4";
        name: "";
        type: "bytes4";
      },
    ];
    stateMutability: "view";
    type: "function";
  },
];

Defined in: account-kit/smart-contracts/src/msca/plugins/multisig/plugin.ts:337

Was this page helpful?