@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.
@@ -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,uint256)": EventFragment;
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
- tokenId: BigNumber;
171
+ data: string;
172
172
  }
173
173
  export type TipSentEvent = TypedEvent<
174
- [string, string, number, string, BigNumber, 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,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
- tokenId?: null
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
- tokenId?: null
367
+ data?: null
368
368
  ): TipSentEventFilter;
369
369
  };
370
370