@lukso/lsp17contractextension-contracts
Version:
Package for the LSP17 Contract Extension standard
31 lines (28 loc) • 806 B
JavaScript
;
const lsp17ExtendableAbi = [
{
type: "function",
inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
name: "supportsInterface",
outputs: [{ name: "", internalType: "bool", type: "bool" }],
stateMutability: "view"
}
];
const lsp17ExtensionAbi = [
{
type: "function",
inputs: [],
name: "VERSION",
outputs: [{ name: "", internalType: "string", type: "string" }],
stateMutability: "view"
},
{
type: "function",
inputs: [{ name: "interfaceId", internalType: "bytes4", type: "bytes4" }],
name: "supportsInterface",
outputs: [{ name: "", internalType: "bool", type: "bool" }],
stateMutability: "view"
}
];
exports.lsp17ExtendableAbi = lsp17ExtendableAbi;
exports.lsp17ExtensionAbi = lsp17ExtensionAbi;