@wttp/site
Version:
Web3 Transfer Protocol (WTTP) - Site Contracts and deployment tools
1,176 lines (1,075 loc) • 32.7 kB
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import type {
BaseContract,
BigNumberish,
BytesLike,
FunctionFragment,
Result,
Interface,
EventFragment,
AddressLike,
ContractRunner,
ContractMethod,
Listener,
} from "ethers";
import type {
TypedContractEvent,
TypedDeferredTopicFilter,
TypedEventLog,
TypedLogDescription,
TypedListener,
TypedContractMethod,
} from "../common";
export type CacheControlStruct = {
immutableFlag: boolean;
preset: BigNumberish;
custom: string;
};
export type CacheControlStructOutput = [
immutableFlag: boolean,
preset: bigint,
custom: string
] & { immutableFlag: boolean; preset: bigint; custom: string };
export type CORSPolicyStruct = {
methods: BigNumberish;
origins: BytesLike[];
preset: BigNumberish;
custom: string;
};
export type CORSPolicyStructOutput = [
methods: bigint,
origins: string[],
preset: bigint,
custom: string
] & { methods: bigint; origins: string[]; preset: bigint; custom: string };
export type RedirectStruct = { code: BigNumberish; location: string };
export type RedirectStructOutput = [code: bigint, location: string] & {
code: bigint;
location: string;
};
export type HeaderInfoStruct = {
cache: CacheControlStruct;
cors: CORSPolicyStruct;
redirect: RedirectStruct;
};
export type HeaderInfoStructOutput = [
cache: CacheControlStructOutput,
cors: CORSPolicyStructOutput,
redirect: RedirectStructOutput
] & {
cache: CacheControlStructOutput;
cors: CORSPolicyStructOutput;
redirect: RedirectStructOutput;
};
export type ResourcePropertiesStruct = {
mimeType: BytesLike;
charset: BytesLike;
encoding: BytesLike;
language: BytesLike;
};
export type ResourcePropertiesStructOutput = [
mimeType: string,
charset: string,
encoding: string,
language: string
] & { mimeType: string; charset: string; encoding: string; language: string };
export type ResourceMetadataStruct = {
properties: ResourcePropertiesStruct;
size: BigNumberish;
version: BigNumberish;
lastModified: BigNumberish;
header: BytesLike;
};
export type ResourceMetadataStructOutput = [
properties: ResourcePropertiesStructOutput,
size: bigint,
version: bigint,
lastModified: bigint,
header: string
] & {
properties: ResourcePropertiesStructOutput;
size: bigint;
version: bigint;
lastModified: bigint;
header: string;
};
export type HEADResponseStruct = {
status: BigNumberish;
headerInfo: HeaderInfoStruct;
metadata: ResourceMetadataStruct;
etag: BytesLike;
};
export type HEADResponseStructOutput = [
status: bigint,
headerInfo: HeaderInfoStructOutput,
metadata: ResourceMetadataStructOutput,
etag: string
] & {
status: bigint;
headerInfo: HeaderInfoStructOutput;
metadata: ResourceMetadataStructOutput;
etag: string;
};
export type DEFINEResponseStruct = {
head: HEADResponseStruct;
headerAddress: BytesLike;
};
export type DEFINEResponseStructOutput = [
head: HEADResponseStructOutput,
headerAddress: string
] & { head: HEADResponseStructOutput; headerAddress: string };
export type ResourceResponseStruct = {
dataPoints: BytesLike[];
totalChunks: BigNumberish;
};
export type ResourceResponseStructOutput = [
dataPoints: string[],
totalChunks: bigint
] & { dataPoints: string[]; totalChunks: bigint };
export type LOCATEResponseStruct = {
head: HEADResponseStruct;
resource: ResourceResponseStruct;
};
export type LOCATEResponseStructOutput = [
head: HEADResponseStructOutput,
resource: ResourceResponseStructOutput
] & { head: HEADResponseStructOutput; resource: ResourceResponseStructOutput };
export type HEADRequestStruct = {
path: string;
ifModifiedSince: BigNumberish;
ifNoneMatch: BytesLike;
};
export type HEADRequestStructOutput = [
path: string,
ifModifiedSince: bigint,
ifNoneMatch: string
] & { path: string; ifModifiedSince: bigint; ifNoneMatch: string };
export type DEFINERequestStruct = {
head: HEADRequestStruct;
data: HeaderInfoStruct;
};
export type DEFINERequestStructOutput = [
head: HEADRequestStructOutput,
data: HeaderInfoStructOutput
] & { head: HEADRequestStructOutput; data: HeaderInfoStructOutput };
export type RangeStruct = { start: BigNumberish; end: BigNumberish };
export type RangeStructOutput = [start: bigint, end: bigint] & {
start: bigint;
end: bigint;
};
export type LOCATERequestStruct = {
head: HEADRequestStruct;
rangeChunks: RangeStruct;
};
export type LOCATERequestStructOutput = [
head: HEADRequestStructOutput,
rangeChunks: RangeStructOutput
] & { head: HEADRequestStructOutput; rangeChunks: RangeStructOutput };
export type OPTIONSResponseStruct = {
status: BigNumberish;
allow: BigNumberish;
};
export type OPTIONSResponseStructOutput = [status: bigint, allow: bigint] & {
status: bigint;
allow: bigint;
};
export type DataRegistrationStruct = {
data: BytesLike;
chunkIndex: BigNumberish;
publisher: AddressLike;
};
export type DataRegistrationStructOutput = [
data: string,
chunkIndex: bigint,
publisher: string
] & { data: string; chunkIndex: bigint; publisher: string };
export type PATCHRequestStruct = {
head: HEADRequestStruct;
data: DataRegistrationStruct[];
};
export type PATCHRequestStructOutput = [
head: HEADRequestStructOutput,
data: DataRegistrationStructOutput[]
] & { head: HEADRequestStructOutput; data: DataRegistrationStructOutput[] };
export type PUTRequestStruct = {
head: HEADRequestStruct;
properties: ResourcePropertiesStruct;
data: DataRegistrationStruct[];
};
export type PUTRequestStructOutput = [
head: HEADRequestStructOutput,
properties: ResourcePropertiesStructOutput,
data: DataRegistrationStructOutput[]
] & {
head: HEADRequestStructOutput;
properties: ResourcePropertiesStructOutput;
data: DataRegistrationStructOutput[];
};
export interface Web3SiteInterface extends Interface {
getFunction(
nameOrSignature:
| "DEFAULT_ADMIN_ROLE"
| "DEFINE"
| "DELETE"
| "DPR"
| "DPS"
| "GET"
| "HEAD"
| "OPTIONS"
| "PATCH"
| "PUT"
| "changeSiteAdmin"
| "createResourceRole"
| "getRoleAdmin"
| "getSiteAdminRole"
| "grantRole"
| "hasRole"
| "renounceRole"
| "revokeRole"
| "supportsInterface"
): FunctionFragment;
getEvent(
nameOrSignatureOrTopic:
| "DEFINESuccess"
| "DELETESuccess"
| "HeaderCreated"
| "HeaderUpdated"
| "MetadataDeleted"
| "MetadataUpdated"
| "PATCHSuccess"
| "PUTSuccess"
| "ResourceCreated"
| "ResourceDeleted"
| "ResourceRoleCreated"
| "ResourceUpdated"
| "RoleAdminChanged"
| "RoleGranted"
| "RoleRevoked"
| "SiteAdminChanged"
): EventFragment;
encodeFunctionData(
functionFragment: "DEFAULT_ADMIN_ROLE",
values?: undefined
): string;
encodeFunctionData(
functionFragment: "DEFINE",
values: [DEFINERequestStruct]
): string;
encodeFunctionData(
functionFragment: "DELETE",
values: [HEADRequestStruct]
): string;
encodeFunctionData(functionFragment: "DPR", values?: undefined): string;
encodeFunctionData(functionFragment: "DPS", values?: undefined): string;
encodeFunctionData(
functionFragment: "GET",
values: [LOCATERequestStruct]
): string;
encodeFunctionData(
functionFragment: "HEAD",
values: [HEADRequestStruct]
): string;
encodeFunctionData(functionFragment: "OPTIONS", values: [string]): string;
encodeFunctionData(
functionFragment: "PATCH",
values: [PATCHRequestStruct]
): string;
encodeFunctionData(
functionFragment: "PUT",
values: [PUTRequestStruct]
): string;
encodeFunctionData(
functionFragment: "changeSiteAdmin",
values: [BytesLike]
): string;
encodeFunctionData(
functionFragment: "createResourceRole",
values: [BytesLike]
): string;
encodeFunctionData(
functionFragment: "getRoleAdmin",
values: [BytesLike]
): string;
encodeFunctionData(
functionFragment: "getSiteAdminRole",
values?: undefined
): string;
encodeFunctionData(
functionFragment: "grantRole",
values: [BytesLike, AddressLike]
): string;
encodeFunctionData(
functionFragment: "hasRole",
values: [BytesLike, AddressLike]
): string;
encodeFunctionData(
functionFragment: "renounceRole",
values: [BytesLike, AddressLike]
): string;
encodeFunctionData(
functionFragment: "revokeRole",
values: [BytesLike, AddressLike]
): string;
encodeFunctionData(
functionFragment: "supportsInterface",
values: [BytesLike]
): string;
decodeFunctionResult(
functionFragment: "DEFAULT_ADMIN_ROLE",
data: BytesLike
): Result;
decodeFunctionResult(functionFragment: "DEFINE", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "DELETE", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "DPR", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "DPS", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "GET", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "HEAD", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "OPTIONS", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "PATCH", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "PUT", data: BytesLike): Result;
decodeFunctionResult(
functionFragment: "changeSiteAdmin",
data: BytesLike
): Result;
decodeFunctionResult(
functionFragment: "createResourceRole",
data: BytesLike
): Result;
decodeFunctionResult(
functionFragment: "getRoleAdmin",
data: BytesLike
): Result;
decodeFunctionResult(
functionFragment: "getSiteAdminRole",
data: BytesLike
): Result;
decodeFunctionResult(functionFragment: "grantRole", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "hasRole", data: BytesLike): Result;
decodeFunctionResult(
functionFragment: "renounceRole",
data: BytesLike
): Result;
decodeFunctionResult(functionFragment: "revokeRole", data: BytesLike): Result;
decodeFunctionResult(
functionFragment: "supportsInterface",
data: BytesLike
): Result;
}
export namespace DEFINESuccessEvent {
export type InputTuple = [
account: AddressLike,
response: DEFINEResponseStruct
];
export type OutputTuple = [
account: string,
response: DEFINEResponseStructOutput
];
export interface OutputObject {
account: string;
response: DEFINEResponseStructOutput;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace DELETESuccessEvent {
export type InputTuple = [account: AddressLike, response: HEADResponseStruct];
export type OutputTuple = [
account: string,
response: HEADResponseStructOutput
];
export interface OutputObject {
account: string;
response: HEADResponseStructOutput;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace HeaderCreatedEvent {
export type InputTuple = [headerAddress: BytesLike];
export type OutputTuple = [headerAddress: string];
export interface OutputObject {
headerAddress: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace HeaderUpdatedEvent {
export type InputTuple = [headerAddress: BytesLike];
export type OutputTuple = [headerAddress: string];
export interface OutputObject {
headerAddress: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace MetadataDeletedEvent {
export type InputTuple = [path: string];
export type OutputTuple = [path: string];
export interface OutputObject {
path: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace MetadataUpdatedEvent {
export type InputTuple = [path: string];
export type OutputTuple = [path: string];
export interface OutputObject {
path: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace PATCHSuccessEvent {
export type InputTuple = [
account: AddressLike,
response: LOCATEResponseStruct
];
export type OutputTuple = [
account: string,
response: LOCATEResponseStructOutput
];
export interface OutputObject {
account: string;
response: LOCATEResponseStructOutput;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace PUTSuccessEvent {
export type InputTuple = [
account: AddressLike,
response: LOCATEResponseStruct
];
export type OutputTuple = [
account: string,
response: LOCATEResponseStructOutput
];
export interface OutputObject {
account: string;
response: LOCATEResponseStructOutput;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace ResourceCreatedEvent {
export type InputTuple = [path: string];
export type OutputTuple = [path: string];
export interface OutputObject {
path: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace ResourceDeletedEvent {
export type InputTuple = [path: string];
export type OutputTuple = [path: string];
export interface OutputObject {
path: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace ResourceRoleCreatedEvent {
export type InputTuple = [role: BytesLike];
export type OutputTuple = [role: string];
export interface OutputObject {
role: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace ResourceUpdatedEvent {
export type InputTuple = [path: string, chunkIndex: BigNumberish];
export type OutputTuple = [path: string, chunkIndex: bigint];
export interface OutputObject {
path: string;
chunkIndex: bigint;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace RoleAdminChangedEvent {
export type InputTuple = [
role: BytesLike,
previousAdminRole: BytesLike,
newAdminRole: BytesLike
];
export type OutputTuple = [
role: string,
previousAdminRole: string,
newAdminRole: string
];
export interface OutputObject {
role: string;
previousAdminRole: string;
newAdminRole: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace RoleGrantedEvent {
export type InputTuple = [
role: BytesLike,
account: AddressLike,
sender: AddressLike
];
export type OutputTuple = [role: string, account: string, sender: string];
export interface OutputObject {
role: string;
account: string;
sender: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace RoleRevokedEvent {
export type InputTuple = [
role: BytesLike,
account: AddressLike,
sender: AddressLike
];
export type OutputTuple = [role: string, account: string, sender: string];
export interface OutputObject {
role: string;
account: string;
sender: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace SiteAdminChangedEvent {
export type InputTuple = [oldSiteAdmin: BytesLike, newSiteAdmin: BytesLike];
export type OutputTuple = [oldSiteAdmin: string, newSiteAdmin: string];
export interface OutputObject {
oldSiteAdmin: string;
newSiteAdmin: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export interface Web3Site extends BaseContract {
connect(runner?: ContractRunner | null): Web3Site;
waitForDeployment(): Promise<this>;
interface: Web3SiteInterface;
queryFilter<TCEvent extends TypedContractEvent>(
event: TCEvent,
fromBlockOrBlockhash?: string | number | undefined,
toBlock?: string | number | undefined
): Promise<Array<TypedEventLog<TCEvent>>>;
queryFilter<TCEvent extends TypedContractEvent>(
filter: TypedDeferredTopicFilter<TCEvent>,
fromBlockOrBlockhash?: string | number | undefined,
toBlock?: string | number | undefined
): Promise<Array<TypedEventLog<TCEvent>>>;
on<TCEvent extends TypedContractEvent>(
event: TCEvent,
listener: TypedListener<TCEvent>
): Promise<this>;
on<TCEvent extends TypedContractEvent>(
filter: TypedDeferredTopicFilter<TCEvent>,
listener: TypedListener<TCEvent>
): Promise<this>;
once<TCEvent extends TypedContractEvent>(
event: TCEvent,
listener: TypedListener<TCEvent>
): Promise<this>;
once<TCEvent extends TypedContractEvent>(
filter: TypedDeferredTopicFilter<TCEvent>,
listener: TypedListener<TCEvent>
): Promise<this>;
listeners<TCEvent extends TypedContractEvent>(
event: TCEvent
): Promise<Array<TypedListener<TCEvent>>>;
listeners(eventName?: string): Promise<Array<Listener>>;
removeAllListeners<TCEvent extends TypedContractEvent>(
event?: TCEvent
): Promise<this>;
DEFAULT_ADMIN_ROLE: TypedContractMethod<[], [string], "view">;
DEFINE: TypedContractMethod<
[defineRequest: DEFINERequestStruct],
[DEFINEResponseStructOutput],
"nonpayable"
>;
DELETE: TypedContractMethod<
[deleteRequest: HEADRequestStruct],
[HEADResponseStructOutput],
"nonpayable"
>;
DPR: TypedContractMethod<[], [string], "view">;
DPS: TypedContractMethod<[], [string], "view">;
GET: TypedContractMethod<
[getRequest: LOCATERequestStruct],
[LOCATEResponseStructOutput],
"view"
>;
HEAD: TypedContractMethod<
[headRequest: HEADRequestStruct],
[HEADResponseStructOutput],
"view"
>;
OPTIONS: TypedContractMethod<
[_path: string],
[OPTIONSResponseStructOutput],
"view"
>;
PATCH: TypedContractMethod<
[patchRequest: PATCHRequestStruct],
[LOCATEResponseStructOutput],
"payable"
>;
PUT: TypedContractMethod<
[putRequest: PUTRequestStruct],
[LOCATEResponseStructOutput],
"payable"
>;
changeSiteAdmin: TypedContractMethod<
[_newSiteAdmin: BytesLike],
[void],
"nonpayable"
>;
createResourceRole: TypedContractMethod<
[_role: BytesLike],
[void],
"nonpayable"
>;
getRoleAdmin: TypedContractMethod<[role: BytesLike], [string], "view">;
getSiteAdminRole: TypedContractMethod<[], [string], "view">;
grantRole: TypedContractMethod<
[role: BytesLike, account: AddressLike],
[void],
"nonpayable"
>;
hasRole: TypedContractMethod<
[role: BytesLike, account: AddressLike],
[boolean],
"view"
>;
renounceRole: TypedContractMethod<
[role: BytesLike, callerConfirmation: AddressLike],
[void],
"nonpayable"
>;
revokeRole: TypedContractMethod<
[role: BytesLike, account: AddressLike],
[void],
"nonpayable"
>;
supportsInterface: TypedContractMethod<
[interfaceId: BytesLike],
[boolean],
"view"
>;
getFunction<T extends ContractMethod = ContractMethod>(
key: string | FunctionFragment
): T;
getFunction(
nameOrSignature: "DEFAULT_ADMIN_ROLE"
): TypedContractMethod<[], [string], "view">;
getFunction(
nameOrSignature: "DEFINE"
): TypedContractMethod<
[defineRequest: DEFINERequestStruct],
[DEFINEResponseStructOutput],
"nonpayable"
>;
getFunction(
nameOrSignature: "DELETE"
): TypedContractMethod<
[deleteRequest: HEADRequestStruct],
[HEADResponseStructOutput],
"nonpayable"
>;
getFunction(
nameOrSignature: "DPR"
): TypedContractMethod<[], [string], "view">;
getFunction(
nameOrSignature: "DPS"
): TypedContractMethod<[], [string], "view">;
getFunction(
nameOrSignature: "GET"
): TypedContractMethod<
[getRequest: LOCATERequestStruct],
[LOCATEResponseStructOutput],
"view"
>;
getFunction(
nameOrSignature: "HEAD"
): TypedContractMethod<
[headRequest: HEADRequestStruct],
[HEADResponseStructOutput],
"view"
>;
getFunction(
nameOrSignature: "OPTIONS"
): TypedContractMethod<
[_path: string],
[OPTIONSResponseStructOutput],
"view"
>;
getFunction(
nameOrSignature: "PATCH"
): TypedContractMethod<
[patchRequest: PATCHRequestStruct],
[LOCATEResponseStructOutput],
"payable"
>;
getFunction(
nameOrSignature: "PUT"
): TypedContractMethod<
[putRequest: PUTRequestStruct],
[LOCATEResponseStructOutput],
"payable"
>;
getFunction(
nameOrSignature: "changeSiteAdmin"
): TypedContractMethod<[_newSiteAdmin: BytesLike], [void], "nonpayable">;
getFunction(
nameOrSignature: "createResourceRole"
): TypedContractMethod<[_role: BytesLike], [void], "nonpayable">;
getFunction(
nameOrSignature: "getRoleAdmin"
): TypedContractMethod<[role: BytesLike], [string], "view">;
getFunction(
nameOrSignature: "getSiteAdminRole"
): TypedContractMethod<[], [string], "view">;
getFunction(
nameOrSignature: "grantRole"
): TypedContractMethod<
[role: BytesLike, account: AddressLike],
[void],
"nonpayable"
>;
getFunction(
nameOrSignature: "hasRole"
): TypedContractMethod<
[role: BytesLike, account: AddressLike],
[boolean],
"view"
>;
getFunction(
nameOrSignature: "renounceRole"
): TypedContractMethod<
[role: BytesLike, callerConfirmation: AddressLike],
[void],
"nonpayable"
>;
getFunction(
nameOrSignature: "revokeRole"
): TypedContractMethod<
[role: BytesLike, account: AddressLike],
[void],
"nonpayable"
>;
getFunction(
nameOrSignature: "supportsInterface"
): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
getEvent(
key: "DEFINESuccess"
): TypedContractEvent<
DEFINESuccessEvent.InputTuple,
DEFINESuccessEvent.OutputTuple,
DEFINESuccessEvent.OutputObject
>;
getEvent(
key: "DELETESuccess"
): TypedContractEvent<
DELETESuccessEvent.InputTuple,
DELETESuccessEvent.OutputTuple,
DELETESuccessEvent.OutputObject
>;
getEvent(
key: "HeaderCreated"
): TypedContractEvent<
HeaderCreatedEvent.InputTuple,
HeaderCreatedEvent.OutputTuple,
HeaderCreatedEvent.OutputObject
>;
getEvent(
key: "HeaderUpdated"
): TypedContractEvent<
HeaderUpdatedEvent.InputTuple,
HeaderUpdatedEvent.OutputTuple,
HeaderUpdatedEvent.OutputObject
>;
getEvent(
key: "MetadataDeleted"
): TypedContractEvent<
MetadataDeletedEvent.InputTuple,
MetadataDeletedEvent.OutputTuple,
MetadataDeletedEvent.OutputObject
>;
getEvent(
key: "MetadataUpdated"
): TypedContractEvent<
MetadataUpdatedEvent.InputTuple,
MetadataUpdatedEvent.OutputTuple,
MetadataUpdatedEvent.OutputObject
>;
getEvent(
key: "PATCHSuccess"
): TypedContractEvent<
PATCHSuccessEvent.InputTuple,
PATCHSuccessEvent.OutputTuple,
PATCHSuccessEvent.OutputObject
>;
getEvent(
key: "PUTSuccess"
): TypedContractEvent<
PUTSuccessEvent.InputTuple,
PUTSuccessEvent.OutputTuple,
PUTSuccessEvent.OutputObject
>;
getEvent(
key: "ResourceCreated"
): TypedContractEvent<
ResourceCreatedEvent.InputTuple,
ResourceCreatedEvent.OutputTuple,
ResourceCreatedEvent.OutputObject
>;
getEvent(
key: "ResourceDeleted"
): TypedContractEvent<
ResourceDeletedEvent.InputTuple,
ResourceDeletedEvent.OutputTuple,
ResourceDeletedEvent.OutputObject
>;
getEvent(
key: "ResourceRoleCreated"
): TypedContractEvent<
ResourceRoleCreatedEvent.InputTuple,
ResourceRoleCreatedEvent.OutputTuple,
ResourceRoleCreatedEvent.OutputObject
>;
getEvent(
key: "ResourceUpdated"
): TypedContractEvent<
ResourceUpdatedEvent.InputTuple,
ResourceUpdatedEvent.OutputTuple,
ResourceUpdatedEvent.OutputObject
>;
getEvent(
key: "RoleAdminChanged"
): TypedContractEvent<
RoleAdminChangedEvent.InputTuple,
RoleAdminChangedEvent.OutputTuple,
RoleAdminChangedEvent.OutputObject
>;
getEvent(
key: "RoleGranted"
): TypedContractEvent<
RoleGrantedEvent.InputTuple,
RoleGrantedEvent.OutputTuple,
RoleGrantedEvent.OutputObject
>;
getEvent(
key: "RoleRevoked"
): TypedContractEvent<
RoleRevokedEvent.InputTuple,
RoleRevokedEvent.OutputTuple,
RoleRevokedEvent.OutputObject
>;
getEvent(
key: "SiteAdminChanged"
): TypedContractEvent<
SiteAdminChangedEvent.InputTuple,
SiteAdminChangedEvent.OutputTuple,
SiteAdminChangedEvent.OutputObject
>;
filters: {
"DEFINESuccess(address,tuple)": TypedContractEvent<
DEFINESuccessEvent.InputTuple,
DEFINESuccessEvent.OutputTuple,
DEFINESuccessEvent.OutputObject
>;
DEFINESuccess: TypedContractEvent<
DEFINESuccessEvent.InputTuple,
DEFINESuccessEvent.OutputTuple,
DEFINESuccessEvent.OutputObject
>;
"DELETESuccess(address,tuple)": TypedContractEvent<
DELETESuccessEvent.InputTuple,
DELETESuccessEvent.OutputTuple,
DELETESuccessEvent.OutputObject
>;
DELETESuccess: TypedContractEvent<
DELETESuccessEvent.InputTuple,
DELETESuccessEvent.OutputTuple,
DELETESuccessEvent.OutputObject
>;
"HeaderCreated(bytes32)": TypedContractEvent<
HeaderCreatedEvent.InputTuple,
HeaderCreatedEvent.OutputTuple,
HeaderCreatedEvent.OutputObject
>;
HeaderCreated: TypedContractEvent<
HeaderCreatedEvent.InputTuple,
HeaderCreatedEvent.OutputTuple,
HeaderCreatedEvent.OutputObject
>;
"HeaderUpdated(bytes32)": TypedContractEvent<
HeaderUpdatedEvent.InputTuple,
HeaderUpdatedEvent.OutputTuple,
HeaderUpdatedEvent.OutputObject
>;
HeaderUpdated: TypedContractEvent<
HeaderUpdatedEvent.InputTuple,
HeaderUpdatedEvent.OutputTuple,
HeaderUpdatedEvent.OutputObject
>;
"MetadataDeleted(string)": TypedContractEvent<
MetadataDeletedEvent.InputTuple,
MetadataDeletedEvent.OutputTuple,
MetadataDeletedEvent.OutputObject
>;
MetadataDeleted: TypedContractEvent<
MetadataDeletedEvent.InputTuple,
MetadataDeletedEvent.OutputTuple,
MetadataDeletedEvent.OutputObject
>;
"MetadataUpdated(string)": TypedContractEvent<
MetadataUpdatedEvent.InputTuple,
MetadataUpdatedEvent.OutputTuple,
MetadataUpdatedEvent.OutputObject
>;
MetadataUpdated: TypedContractEvent<
MetadataUpdatedEvent.InputTuple,
MetadataUpdatedEvent.OutputTuple,
MetadataUpdatedEvent.OutputObject
>;
"PATCHSuccess(address,tuple)": TypedContractEvent<
PATCHSuccessEvent.InputTuple,
PATCHSuccessEvent.OutputTuple,
PATCHSuccessEvent.OutputObject
>;
PATCHSuccess: TypedContractEvent<
PATCHSuccessEvent.InputTuple,
PATCHSuccessEvent.OutputTuple,
PATCHSuccessEvent.OutputObject
>;
"PUTSuccess(address,tuple)": TypedContractEvent<
PUTSuccessEvent.InputTuple,
PUTSuccessEvent.OutputTuple,
PUTSuccessEvent.OutputObject
>;
PUTSuccess: TypedContractEvent<
PUTSuccessEvent.InputTuple,
PUTSuccessEvent.OutputTuple,
PUTSuccessEvent.OutputObject
>;
"ResourceCreated(string)": TypedContractEvent<
ResourceCreatedEvent.InputTuple,
ResourceCreatedEvent.OutputTuple,
ResourceCreatedEvent.OutputObject
>;
ResourceCreated: TypedContractEvent<
ResourceCreatedEvent.InputTuple,
ResourceCreatedEvent.OutputTuple,
ResourceCreatedEvent.OutputObject
>;
"ResourceDeleted(string)": TypedContractEvent<
ResourceDeletedEvent.InputTuple,
ResourceDeletedEvent.OutputTuple,
ResourceDeletedEvent.OutputObject
>;
ResourceDeleted: TypedContractEvent<
ResourceDeletedEvent.InputTuple,
ResourceDeletedEvent.OutputTuple,
ResourceDeletedEvent.OutputObject
>;
"ResourceRoleCreated(bytes32)": TypedContractEvent<
ResourceRoleCreatedEvent.InputTuple,
ResourceRoleCreatedEvent.OutputTuple,
ResourceRoleCreatedEvent.OutputObject
>;
ResourceRoleCreated: TypedContractEvent<
ResourceRoleCreatedEvent.InputTuple,
ResourceRoleCreatedEvent.OutputTuple,
ResourceRoleCreatedEvent.OutputObject
>;
"ResourceUpdated(string,uint256)": TypedContractEvent<
ResourceUpdatedEvent.InputTuple,
ResourceUpdatedEvent.OutputTuple,
ResourceUpdatedEvent.OutputObject
>;
ResourceUpdated: TypedContractEvent<
ResourceUpdatedEvent.InputTuple,
ResourceUpdatedEvent.OutputTuple,
ResourceUpdatedEvent.OutputObject
>;
"RoleAdminChanged(bytes32,bytes32,bytes32)": TypedContractEvent<
RoleAdminChangedEvent.InputTuple,
RoleAdminChangedEvent.OutputTuple,
RoleAdminChangedEvent.OutputObject
>;
RoleAdminChanged: TypedContractEvent<
RoleAdminChangedEvent.InputTuple,
RoleAdminChangedEvent.OutputTuple,
RoleAdminChangedEvent.OutputObject
>;
"RoleGranted(bytes32,address,address)": TypedContractEvent<
RoleGrantedEvent.InputTuple,
RoleGrantedEvent.OutputTuple,
RoleGrantedEvent.OutputObject
>;
RoleGranted: TypedContractEvent<
RoleGrantedEvent.InputTuple,
RoleGrantedEvent.OutputTuple,
RoleGrantedEvent.OutputObject
>;
"RoleRevoked(bytes32,address,address)": TypedContractEvent<
RoleRevokedEvent.InputTuple,
RoleRevokedEvent.OutputTuple,
RoleRevokedEvent.OutputObject
>;
RoleRevoked: TypedContractEvent<
RoleRevokedEvent.InputTuple,
RoleRevokedEvent.OutputTuple,
RoleRevokedEvent.OutputObject
>;
"SiteAdminChanged(bytes32,bytes32)": TypedContractEvent<
SiteAdminChangedEvent.InputTuple,
SiteAdminChangedEvent.OutputTuple,
SiteAdminChangedEvent.OutputObject
>;
SiteAdminChanged: TypedContractEvent<
SiteAdminChangedEvent.InputTuple,
SiteAdminChangedEvent.OutputTuple,
SiteAdminChangedEvent.OutputObject
>;
};
}