@towns-protocol/generated 0.0.376 → 0.0.377
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dev/.contracts-hash +1 -1
- package/dev/abis/Channels.abi.json +1144 -153
- package/dev/abis/Channels.abi.ts +1144 -153
- package/dev/abis/EntitlementsManager.abi.json +1001 -10
- package/dev/abis/EntitlementsManager.abi.ts +1001 -10
- package/dev/abis/ITipping.abi.json +3 -3
- package/dev/abis/ITipping.abi.ts +3 -3
- package/dev/abis/ITippingBase.abi.json +3 -3
- package/dev/abis/ITippingBase.abi.ts +3 -3
- package/dev/abis/MembershipFacet.abi.json +1019 -28
- package/dev/abis/MembershipFacet.abi.ts +1019 -28
- package/dev/abis/PrepayFacet.abi.json +1012 -21
- package/dev/abis/PrepayFacet.abi.ts +1012 -21
- package/dev/abis/Roles.abi.json +991 -0
- package/dev/abis/Roles.abi.ts +991 -0
- package/dev/typings/Channels.ts +676 -0
- package/dev/typings/EntitlementsManager.ts +677 -0
- package/dev/typings/ITipping.ts +6 -6
- package/dev/typings/MembershipFacet.ts +676 -0
- package/dev/typings/PrepayFacet.ts +676 -0
- package/dev/typings/Roles.ts +676 -0
- package/dev/typings/factories/Channels__factory.ts +1146 -155
- package/dev/typings/factories/EntitlementsManager__factory.ts +1001 -10
- package/dev/typings/factories/ITipping__factory.ts +3 -3
- package/dev/typings/factories/MembershipFacet__factory.ts +1019 -28
- package/dev/typings/factories/PrepayFacet__factory.ts +1012 -21
- package/dev/typings/factories/Roles__factory.ts +992 -1
- package/package.json +3 -3
package/dev/typings/ITipping.ts
CHANGED
|
@@ -139,7 +139,7 @@ export interface ITippingInterface extends utils.Interface {
|
|
|
139
139
|
|
|
140
140
|
events: {
|
|
141
141
|
"Tip(uint256,address,address,address,uint256,bytes32,bytes32)": EventFragment;
|
|
142
|
-
"TipSent(address,address,uint8,address,uint256,
|
|
142
|
+
"TipSent(address,address,uint8,address,uint256,bytes)": EventFragment;
|
|
143
143
|
};
|
|
144
144
|
|
|
145
145
|
getEvent(nameOrSignatureOrTopic: "Tip"): EventFragment;
|
|
@@ -168,10 +168,10 @@ export interface TipSentEventObject {
|
|
|
168
168
|
recipientType: number;
|
|
169
169
|
currency: string;
|
|
170
170
|
amount: BigNumber;
|
|
171
|
-
|
|
171
|
+
data: string;
|
|
172
172
|
}
|
|
173
173
|
export type TipSentEvent = TypedEvent<
|
|
174
|
-
[string, string, number, string, BigNumber,
|
|
174
|
+
[string, string, number, string, BigNumber, string],
|
|
175
175
|
TipSentEventObject
|
|
176
176
|
>;
|
|
177
177
|
|
|
@@ -350,13 +350,13 @@ export interface ITipping extends BaseContract {
|
|
|
350
350
|
channelId?: null
|
|
351
351
|
): TipEventFilter;
|
|
352
352
|
|
|
353
|
-
"TipSent(address,address,uint8,address,uint256,
|
|
353
|
+
"TipSent(address,address,uint8,address,uint256,bytes)"(
|
|
354
354
|
sender?: string | null,
|
|
355
355
|
receiver?: string | null,
|
|
356
356
|
recipientType?: BigNumberish | null,
|
|
357
357
|
currency?: null,
|
|
358
358
|
amount?: null,
|
|
359
|
-
|
|
359
|
+
data?: null
|
|
360
360
|
): TipSentEventFilter;
|
|
361
361
|
TipSent(
|
|
362
362
|
sender?: string | null,
|
|
@@ -364,7 +364,7 @@ export interface ITipping extends BaseContract {
|
|
|
364
364
|
recipientType?: BigNumberish | null,
|
|
365
365
|
currency?: null,
|
|
366
366
|
amount?: null,
|
|
367
|
-
|
|
367
|
+
data?: null
|
|
368
368
|
): TipSentEventFilter;
|
|
369
369
|
};
|
|
370
370
|
|