@indexing/jiti 0.1.21 → 0.1.22

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/dist/types.d.ts CHANGED
@@ -2109,6 +2109,16 @@ export const TON_JETTON_NAMESPACE = "ton-jetton-wallet";
2109
2109
  export function resolveJettonWalletData(wallet: string): Promise<JettonWalletData | null>;
2110
2110
  /** Enrich a TON jetton wallet (any address form) → { owner, master } via the cache. */
2111
2111
  export function lookupJettonWallet(storage: CacheStorage, wallet: string): Promise<JettonWalletData | null>;
2112
+ export interface TronTrc10Transfer {
2113
+ hash: string;
2114
+ token: string;
2115
+ amount: string;
2116
+ from: string;
2117
+ to: string;
2118
+ }
2119
+ export interface TronBlock extends EvmBlock {
2120
+ _trc10?: TronTrc10Transfer[];
2121
+ }
2112
2122
  type PgPool = {
2113
2123
  query: (text: string, values?: unknown[]) => Promise<{
2114
2124
  rows: Record<string, unknown>[];