You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Derives smart contract addresses from contract indices (contract index in lower 32 bits of the 256-bit public key, remaining bits zeroed).
88
88
3. Gets current epoch tick bounds from status-service (`GetTickIntervals`), cached with configurable TTL.
89
89
4. For each identity, queries archive-query-service (`GetTransactionsForIdentity`) with destination = SC address, tick range = current epoch, amount = 0.
90
-
5. Filters results by `input_size == 10` and `amount == 0` to isolate IPO bid transactions.
91
-
6. Parses `input_data` (base64) as `ContractIPOBid`: price (int64 LE, 8 bytes) + quantity (uint16 LE, 2 bytes).
90
+
5. Filters results by `input_size == 16` and `amount == 0` to isolate IPO bid transactions.
91
+
6. Parses `input_data` (base64) as `ContractIPOBid`: price (int64 LE, 8 bytes) + quantity (uint16 LE, 2 bytes) + padding (6 bytes).
0 commit comments