Skip to content
Alchemy Logo

MultiOwnerPluginExecutionFunctionAbi

const MultiOwnerPluginExecutionFunctionAbi: readonly [
  {
    inputs: readonly [
      {
        internalType: "address[]";
        name: "ownersToAdd";
        type: "address[]";
      },
      {
        internalType: "address[]";
        name: "ownersToRemove";
        type: "address[]";
      },
    ];
    name: "updateOwners";
    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/multi-owner/plugin.ts:340

Was this page helpful?