{
  "contractName": "IERC1155CreatorExtensionBurnable",
  "abi": [
    {
      "inputs": [
        {
          "internalType": "bytes4",
          "name": "interfaceId",
          "type": "bytes4"
        }
      ],
      "name": "supportsInterface",
      "outputs": [
        {
          "internalType": "bool",
          "name": "",
          "type": "bool"
        }
      ],
      "stateMutability": "view",
      "type": "function"
    },
    {
      "inputs": [
        {
          "internalType": "address",
          "name": "owner",
          "type": "address"
        },
        {
          "internalType": "uint256[]",
          "name": "tokenIds",
          "type": "uint256[]"
        },
        {
          "internalType": "uint256[]",
          "name": "amounts",
          "type": "uint256[]"
        }
      ],
      "name": "onBurn",
      "outputs": [],
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "metadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"uint256[]\",\"name\":\"tokenIds\",\"type\":\"uint256[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"onBurn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Your extension is required to implement this interface if it wishes to receive the onBurn callback whenever a token the extension created is burned\",\"kind\":\"dev\",\"methods\":{\"onBurn(address,uint256[],uint256[])\":{\"details\":\"callback handler for burn events\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"project:/contracts/extensions/ERC1155/IERC1155CreatorExtensionBurnable.sol\":\"IERC1155CreatorExtensionBurnable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":25},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]},\"project:/contracts/extensions/ERC1155/IERC1155CreatorExtensionBurnable.sol\":{\"keccak256\":\"0xc274a67fd639f490659aae3c188b7eaef5f819367f61b058e547681c1410e22f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2862472b3f417e447faa442cf27a1ea33cea678ff4f64b4cc99102d5d1e6bfb8\",\"dweb:/ipfs/QmepVRQniqf5hpSWgptfoxbYw546s9L6uo9PiobsStxJ7D\"]}},\"version\":1}",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "immutableReferences": {},
  "generatedSources": [],
  "deployedGeneratedSources": [],
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/// @author: manifold.xyz\n\nimport \"@openzeppelin/contracts/utils/introspection/IERC165.sol\";\n\n/**\n * @dev Your extension is required to implement this interface if it wishes\n * to receive the onBurn callback whenever a token the extension created is\n * burned\n */\ninterface IERC1155CreatorExtensionBurnable is IERC165 {\n    /**\n     * @dev callback handler for burn events\n     */\n    function onBurn(address owner, uint256[] calldata tokenIds, uint256[] calldata amounts) external;\n}",
  "sourcePath": "/Users/chung/git/manifoldxyz/solidity/creator-core-solidity/contracts/extensions/ERC1155/IERC1155CreatorExtensionBurnable.sol",
  "ast": {
    "absolutePath": "project:/contracts/extensions/ERC1155/IERC1155CreatorExtensionBurnable.sol",
    "exportedSymbols": {
      "IERC1155CreatorExtensionBurnable": [
        16074
      ],
      "IERC165": [
        2338
      ]
    },
    "id": 16075,
    "license": "MIT",
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 16057,
        "literals": [
          "solidity",
          "^",
          "0.8",
          ".0"
        ],
        "nodeType": "PragmaDirective",
        "src": "33:23:47"
      },
      {
        "absolutePath": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
        "file": "@openzeppelin/contracts/utils/introspection/IERC165.sol",
        "id": 16058,
        "nameLocation": "-1:-1:-1",
        "nodeType": "ImportDirective",
        "scope": 16075,
        "sourceUnit": 2339,
        "src": "85:65:47",
        "symbolAliases": [],
        "unitAlias": ""
      },
      {
        "abstract": false,
        "baseContracts": [
          {
            "baseName": {
              "id": 16060,
              "name": "IERC165",
              "nameLocations": [
                "368:7:47"
              ],
              "nodeType": "IdentifierPath",
              "referencedDeclaration": 2338,
              "src": "368:7:47"
            },
            "id": 16061,
            "nodeType": "InheritanceSpecifier",
            "src": "368:7:47"
          }
        ],
        "canonicalName": "IERC1155CreatorExtensionBurnable",
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": {
          "id": 16059,
          "nodeType": "StructuredDocumentation",
          "src": "152:169:47",
          "text": " @dev Your extension is required to implement this interface if it wishes\n to receive the onBurn callback whenever a token the extension created is\n burned"
        },
        "fullyImplemented": false,
        "id": 16074,
        "linearizedBaseContracts": [
          16074,
          2338
        ],
        "name": "IERC1155CreatorExtensionBurnable",
        "nameLocation": "332:32:47",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "documentation": {
              "id": 16062,
              "nodeType": "StructuredDocumentation",
              "src": "382:56:47",
              "text": " @dev callback handler for burn events"
            },
            "functionSelector": "7b8deca0",
            "id": 16073,
            "implemented": false,
            "kind": "function",
            "modifiers": [],
            "name": "onBurn",
            "nameLocation": "452:6:47",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 16071,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 16064,
                  "mutability": "mutable",
                  "name": "owner",
                  "nameLocation": "467:5:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 16073,
                  "src": "459:13:47",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 16063,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "459:7:47",
                    "stateMutability": "nonpayable",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 16067,
                  "mutability": "mutable",
                  "name": "tokenIds",
                  "nameLocation": "493:8:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 16073,
                  "src": "474:27:47",
                  "stateVariable": false,
                  "storageLocation": "calldata",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                    "typeString": "uint256[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 16065,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "474:7:47",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "id": 16066,
                    "nodeType": "ArrayTypeName",
                    "src": "474:9:47",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                      "typeString": "uint256[]"
                    }
                  },
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 16070,
                  "mutability": "mutable",
                  "name": "amounts",
                  "nameLocation": "522:7:47",
                  "nodeType": "VariableDeclaration",
                  "scope": 16073,
                  "src": "503:26:47",
                  "stateVariable": false,
                  "storageLocation": "calldata",
                  "typeDescriptions": {
                    "typeIdentifier": "t_array$_t_uint256_$dyn_calldata_ptr",
                    "typeString": "uint256[]"
                  },
                  "typeName": {
                    "baseType": {
                      "id": 16068,
                      "name": "uint256",
                      "nodeType": "ElementaryTypeName",
                      "src": "503:7:47",
                      "typeDescriptions": {
                        "typeIdentifier": "t_uint256",
                        "typeString": "uint256"
                      }
                    },
                    "id": 16069,
                    "nodeType": "ArrayTypeName",
                    "src": "503:9:47",
                    "typeDescriptions": {
                      "typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
                      "typeString": "uint256[]"
                    }
                  },
                  "visibility": "internal"
                }
              ],
              "src": "458:72:47"
            },
            "returnParameters": {
              "id": 16072,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "539:0:47"
            },
            "scope": 16074,
            "src": "443:97:47",
            "stateMutability": "nonpayable",
            "virtual": false,
            "visibility": "external"
          }
        ],
        "scope": 16075,
        "src": "322:220:47",
        "usedErrors": []
      }
    ],
    "src": "33:509:47"
  },
  "compiler": {
    "name": "solc",
    "version": "0.8.19+commit.7dd6d404.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.4.12",
  "updatedAt": "2023-03-22T17:07:39.762Z",
  "devdoc": {
    "details": "Your extension is required to implement this interface if it wishes to receive the onBurn callback whenever a token the extension created is burned",
    "kind": "dev",
    "methods": {
      "onBurn(address,uint256[],uint256[])": {
        "details": "callback handler for burn events"
      },
      "supportsInterface(bytes4)": {
        "details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
      }
    },
    "version": 1
  },
  "userdoc": {
    "kind": "user",
    "methods": {},
    "version": 1
  }
}