Skip to content

Commit

Permalink
Automatic release v0.9.29
Browse files Browse the repository at this point in the history
  • Loading branch information
UNS Release bot committed Sep 10, 2024
1 parent d43ca42 commit d2752df
Show file tree
Hide file tree
Showing 13 changed files with 1,047 additions and 11 deletions.
2 changes: 1 addition & 1 deletion dist/sandbox/state.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/src/types.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

98 changes: 97 additions & 1 deletion dist/types/contracts/marketplace/ISeaportProxyBuyer.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,77 @@
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common";
export declare type SpentItemStruct = {
itemType: BigNumberish;
token: AddressLike;
identifier: BigNumberish;
amount: BigNumberish;
};
export declare type SpentItemStructOutput = [
itemType: bigint,
token: string,
identifier: bigint,
amount: bigint
] & {
itemType: bigint;
token: string;
identifier: bigint;
amount: bigint;
};
export declare type ReceivedItemStruct = {
itemType: BigNumberish;
token: AddressLike;
identifier: BigNumberish;
amount: BigNumberish;
recipient: AddressLike;
};
export declare type ReceivedItemStructOutput = [
itemType: bigint,
token: string,
identifier: bigint,
amount: bigint,
recipient: string
] & {
itemType: bigint;
token: string;
identifier: bigint;
amount: bigint;
recipient: string;
};
export declare type ZoneParametersStruct = {
orderHash: BytesLike;
fulfiller: AddressLike;
offerer: AddressLike;
offer: SpentItemStruct[];
consideration: ReceivedItemStruct[];
extraData: BytesLike;
orderHashes: BytesLike[];
startTime: BigNumberish;
endTime: BigNumberish;
zoneHash: BytesLike;
};
export declare type ZoneParametersStructOutput = [
orderHash: string,
fulfiller: string,
offerer: string,
offer: SpentItemStructOutput[],
consideration: ReceivedItemStructOutput[],
extraData: string,
orderHashes: string[],
startTime: bigint,
endTime: bigint,
zoneHash: string
] & {
orderHash: string;
fulfiller: string;
offerer: string;
offer: SpentItemStructOutput[];
consideration: ReceivedItemStructOutput[];
extraData: string;
orderHashes: string[];
startTime: bigint;
endTime: bigint;
zoneHash: string;
};
export declare type OfferItemStruct = {
itemType: BigNumberish;
token: AddressLike;
Expand Down Expand Up @@ -122,8 +194,9 @@ export declare type CriteriaResolverStructOutput = [
criteriaProof: string[];
};
export interface ISeaportProxyBuyerInterface extends Interface {
getFunction(nameOrSignature: "approve" | "fulfillAdvancedOrder" | "pause" | "unpause" | "withdraw"): FunctionFragment;
getFunction(nameOrSignature: "approve" | "authorizeOrder" | "fulfillAdvancedOrder" | "pause" | "unpause" | "validateOrder" | "withdraw"): FunctionFragment;
encodeFunctionData(functionFragment: "approve", values: [AddressLike]): string;
encodeFunctionData(functionFragment: "authorizeOrder", values: [ZoneParametersStruct]): string;
encodeFunctionData(functionFragment: "fulfillAdvancedOrder", values: [
AdvancedOrderStruct,
CriteriaResolverStruct[],
Expand All @@ -132,11 +205,14 @@ export interface ISeaportProxyBuyerInterface extends Interface {
]): string;
encodeFunctionData(functionFragment: "pause", values?: undefined): string;
encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
encodeFunctionData(functionFragment: "validateOrder", values: [ZoneParametersStruct]): string;
encodeFunctionData(functionFragment: "withdraw", values: [AddressLike, AddressLike, BigNumberish]): string;
decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "authorizeOrder", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "fulfillAdvancedOrder", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "pause", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "validateOrder", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
}
export interface ISeaportProxyBuyer extends BaseContract {
Expand All @@ -153,6 +229,11 @@ export interface ISeaportProxyBuyer extends BaseContract {
listeners(eventName?: string): Promise<Array<Listener>>;
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
approve: TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
authorizeOrder: TypedContractMethod<[
zoneParameters: ZoneParametersStruct
], [
string
], "view">;
fulfillAdvancedOrder: TypedContractMethod<[
advancedOrder: AdvancedOrderStruct,
criteriaResolvers: CriteriaResolverStruct[],
Expand All @@ -163,6 +244,11 @@ export interface ISeaportProxyBuyer extends BaseContract {
], "nonpayable">;
pause: TypedContractMethod<[], [void], "nonpayable">;
unpause: TypedContractMethod<[], [void], "nonpayable">;
validateOrder: TypedContractMethod<[
zoneParameters: ZoneParametersStruct
], [
string
], "nonpayable">;
withdraw: TypedContractMethod<[
token: AddressLike,
recipient: AddressLike,
Expand All @@ -172,6 +258,11 @@ export interface ISeaportProxyBuyer extends BaseContract {
], "nonpayable">;
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
getFunction(nameOrSignature: "approve"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
getFunction(nameOrSignature: "authorizeOrder"): TypedContractMethod<[
zoneParameters: ZoneParametersStruct
], [
string
], "view">;
getFunction(nameOrSignature: "fulfillAdvancedOrder"): TypedContractMethod<[
advancedOrder: AdvancedOrderStruct,
criteriaResolvers: CriteriaResolverStruct[],
Expand All @@ -182,6 +273,11 @@ export interface ISeaportProxyBuyer extends BaseContract {
], "nonpayable">;
getFunction(nameOrSignature: "pause"): TypedContractMethod<[], [void], "nonpayable">;
getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
getFunction(nameOrSignature: "validateOrder"): TypedContractMethod<[
zoneParameters: ZoneParametersStruct
], [
string
], "nonpayable">;
getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[
token: AddressLike,
recipient: AddressLike,
Expand Down

Large diffs are not rendered by default.

90 changes: 89 additions & 1 deletion dist/types/contracts/marketplace/SeaportProxyBuyer.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,77 @@
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 declare type SpentItemStruct = {
itemType: BigNumberish;
token: AddressLike;
identifier: BigNumberish;
amount: BigNumberish;
};
export declare type SpentItemStructOutput = [
itemType: bigint,
token: string,
identifier: bigint,
amount: bigint
] & {
itemType: bigint;
token: string;
identifier: bigint;
amount: bigint;
};
export declare type ReceivedItemStruct = {
itemType: BigNumberish;
token: AddressLike;
identifier: BigNumberish;
amount: BigNumberish;
recipient: AddressLike;
};
export declare type ReceivedItemStructOutput = [
itemType: bigint,
token: string,
identifier: bigint,
amount: bigint,
recipient: string
] & {
itemType: bigint;
token: string;
identifier: bigint;
amount: bigint;
recipient: string;
};
export declare type ZoneParametersStruct = {
orderHash: BytesLike;
fulfiller: AddressLike;
offerer: AddressLike;
offer: SpentItemStruct[];
consideration: ReceivedItemStruct[];
extraData: BytesLike;
orderHashes: BytesLike[];
startTime: BigNumberish;
endTime: BigNumberish;
zoneHash: BytesLike;
};
export declare type ZoneParametersStructOutput = [
orderHash: string,
fulfiller: string,
offerer: string,
offer: SpentItemStructOutput[],
consideration: ReceivedItemStructOutput[],
extraData: string,
orderHashes: string[],
startTime: bigint,
endTime: bigint,
zoneHash: string
] & {
orderHash: string;
fulfiller: string;
offerer: string;
offer: SpentItemStructOutput[];
consideration: ReceivedItemStructOutput[];
extraData: string;
orderHashes: string[];
startTime: bigint;
endTime: bigint;
zoneHash: string;
};
export declare type OfferItemStruct = {
itemType: BigNumberish;
token: AddressLike;
Expand Down Expand Up @@ -141,7 +213,7 @@ export declare namespace IForwarder {
};
}
export interface SeaportProxyBuyerInterface extends Interface {
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE" | "MINTER_ROLE" | "NAME" | "VERSION" | "addMinter" | "addMinters" | "approve" | "closeMinter" | "execute" | "fulfillAdvancedOrder" | "getRoleAdmin" | "grantRole" | "hasRole" | "initialize" | "isMinter" | "isTrustedForwarder" | "nonceOf" | "owner" | "pause" | "paused" | "removeMinter" | "removeMinters" | "renounceMinter" | "renounceOwnership" | "renounceRole" | "revokeRole" | "rotateMinter" | "supportsInterface" | "transferOwnership" | "unpause" | "verify" | "withdraw"): FunctionFragment;
getFunction(nameOrSignature: "DEFAULT_ADMIN_ROLE" | "MINTER_ROLE" | "NAME" | "VERSION" | "addMinter" | "addMinters" | "approve" | "authorizeOrder" | "closeMinter" | "execute" | "fulfillAdvancedOrder" | "getRoleAdmin" | "grantRole" | "hasRole" | "initialize" | "isMinter" | "isTrustedForwarder" | "nonceOf" | "owner" | "pause" | "paused" | "removeMinter" | "removeMinters" | "renounceMinter" | "renounceOwnership" | "renounceRole" | "revokeRole" | "rotateMinter" | "supportsInterface" | "transferOwnership" | "unpause" | "validateOrder" | "verify" | "withdraw"): FunctionFragment;
getEvent(nameOrSignatureOrTopic: "Initialized" | "OwnershipTransferred" | "Paused" | "RoleAdminChanged" | "RoleGranted" | "RoleRevoked" | "Unpaused"): EventFragment;
encodeFunctionData(functionFragment: "DEFAULT_ADMIN_ROLE", values?: undefined): string;
encodeFunctionData(functionFragment: "MINTER_ROLE", values?: undefined): string;
Expand All @@ -150,6 +222,7 @@ export interface SeaportProxyBuyerInterface extends Interface {
encodeFunctionData(functionFragment: "addMinter", values: [AddressLike]): string;
encodeFunctionData(functionFragment: "addMinters", values: [AddressLike[]]): string;
encodeFunctionData(functionFragment: "approve", values: [AddressLike]): string;
encodeFunctionData(functionFragment: "authorizeOrder", values: [ZoneParametersStruct]): string;
encodeFunctionData(functionFragment: "closeMinter", values: [AddressLike]): string;
encodeFunctionData(functionFragment: "execute", values: [IForwarder.ForwardRequestStruct, BytesLike]): string;
encodeFunctionData(functionFragment: "fulfillAdvancedOrder", values: [
Expand Down Expand Up @@ -178,6 +251,7 @@ export interface SeaportProxyBuyerInterface extends Interface {
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
encodeFunctionData(functionFragment: "transferOwnership", values: [AddressLike]): string;
encodeFunctionData(functionFragment: "unpause", values?: undefined): string;
encodeFunctionData(functionFragment: "validateOrder", values: [ZoneParametersStruct]): string;
encodeFunctionData(functionFragment: "verify", values: [IForwarder.ForwardRequestStruct, BytesLike]): string;
encodeFunctionData(functionFragment: "withdraw", values: [AddressLike, AddressLike, BigNumberish]): string;
decodeFunctionResult(functionFragment: "DEFAULT_ADMIN_ROLE", data: BytesLike): Result;
Expand All @@ -187,6 +261,7 @@ export interface SeaportProxyBuyerInterface extends Interface {
decodeFunctionResult(functionFragment: "addMinter", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "addMinters", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "approve", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "authorizeOrder", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "closeMinter", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "execute", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "fulfillAdvancedOrder", data: BytesLike): Result;
Expand All @@ -210,6 +285,7 @@ export interface SeaportProxyBuyerInterface extends Interface {
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "transferOwnership", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "unpause", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "validateOrder", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "verify", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
}
Expand Down Expand Up @@ -337,6 +413,11 @@ export interface SeaportProxyBuyer extends BaseContract {
void
], "nonpayable">;
approve: TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
authorizeOrder: TypedContractMethod<[
arg0: ZoneParametersStruct
], [
string
], "view">;
closeMinter: TypedContractMethod<[receiver: AddressLike], [void], "payable">;
execute: TypedContractMethod<[
req: IForwarder.ForwardRequestStruct,
Expand Down Expand Up @@ -412,6 +493,11 @@ export interface SeaportProxyBuyer extends BaseContract {
void
], "nonpayable">;
unpause: TypedContractMethod<[], [void], "nonpayable">;
validateOrder: TypedContractMethod<[
arg0: ZoneParametersStruct
], [
string
], "view">;
verify: TypedContractMethod<[
req: IForwarder.ForwardRequestStruct,
signature: BytesLike
Expand All @@ -433,6 +519,7 @@ export interface SeaportProxyBuyer extends BaseContract {
getFunction(nameOrSignature: "addMinter"): TypedContractMethod<[account: AddressLike], [void], "nonpayable">;
getFunction(nameOrSignature: "addMinters"): TypedContractMethod<[accounts: AddressLike[]], [void], "nonpayable">;
getFunction(nameOrSignature: "approve"): TypedContractMethod<[token: AddressLike], [void], "nonpayable">;
getFunction(nameOrSignature: "authorizeOrder"): TypedContractMethod<[arg0: ZoneParametersStruct], [string], "view">;
getFunction(nameOrSignature: "closeMinter"): TypedContractMethod<[receiver: AddressLike], [void], "payable">;
getFunction(nameOrSignature: "execute"): TypedContractMethod<[
req: IForwarder.ForwardRequestStruct,
Expand Down Expand Up @@ -488,6 +575,7 @@ export interface SeaportProxyBuyer extends BaseContract {
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
getFunction(nameOrSignature: "transferOwnership"): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
getFunction(nameOrSignature: "unpause"): TypedContractMethod<[], [void], "nonpayable">;
getFunction(nameOrSignature: "validateOrder"): TypedContractMethod<[arg0: ZoneParametersStruct], [string], "view">;
getFunction(nameOrSignature: "verify"): TypedContractMethod<[
req: IForwarder.ForwardRequestStruct,
signature: BytesLike
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit d2752df

Please sign in to comment.