@metatrongg/sdk 0.8.0-dev.bf445a4 → 0.8.0-dev.e892968

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.
@@ -773,6 +773,8 @@ type ActivityRowTronPot = {
773
773
  role: "incoming" | "outgoing";
774
774
  leg: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
775
775
  amountCents: number;
776
+ usdCents: number;
777
+ status: "settled";
776
778
  app: {
777
779
  id: string;
778
780
  name: string;
@@ -780,8 +782,16 @@ type ActivityRowTronPot = {
780
782
  slug: string | null;
781
783
  bannerUrl: string | null;
782
784
  } | null;
785
+ involvedUsers?: Array<ActivityTronInvolvedUser> | null;
783
786
  metadata?: PaymentMetadata | null;
784
787
  };
788
+ type ActivityTronInvolvedUser = {
789
+ userId: string;
790
+ handle: string | null;
791
+ displayName: string | null;
792
+ role: "stake" | "payout" | "dev_cut" | "purchase" | "referral";
793
+ amountCents: number;
794
+ };
785
795
  type ActivityRowTronCashout = {
786
796
  kind: "tron_cashout";
787
797
  groupId: string | null;