Project is not actively developed or maintained.

Address and transaction explorer for TON: The Open Network

Extended, but raw transaction information can be accessed via test-explorer.toncoin.org/

Lt and hash 32492782000001:0bec3ed1ac3250d697baf4b808d146d654ce7669c5f6ac0f365575de7c88a085
Other explorers ⚙️ 🐱 🅰️🐋
Fee 0.000396687 = 2.87e-7 storage + 0.0003964 gas
VM ✓ Compute succeed; Gas used 991; Vm steps 29; ✓ Actions succeed; Total/skipped actions 0/0
Description ➡️💸 Receiving TONs with comment from EQBEnWwMs5_qyXfPRsZ89FJ0dOBy_UODmMFgw_LQFO0a1uFr
Incoming message
Description➡️💸 Receiving TONs with comment from EQBEnWwMs5_qyXfPRsZ89FJ0dOBy_UODmMFgw_LQFO0a1uFr
sourceEQBEnWwMs5_qyXfPRsZ89FJ0dOBy_UODmMFgw_LQFO0a1uFr
destinationEQD6FGUpuOJp_816Xqz5RztkHjU4nDAtfow99W6z3px_AeLH
value0.02 TON 🪨
fwd_fee0.001943482 TON
created_lt32492780000002
message#include <stdio.h>
#include <stdlib.h>

int main() {
    int *ptr = malloc(2 * sizeof(int));  // Allocate memory for 2 integers
    if (ptr == NULL) return 1;

    ptr[0] = 10;
    ptr[1] = 20;

    // Resize memory to store 4 integers
    int *new_ptr = realloc(ptr, 4 * sizeof(int));
    if (new_ptr == NULL) {
        free(ptr);
        printf("Memory reallocation failed!\n");
        return 1;
    }

    ptr = new_ptr;  // Update pointer reference
    ptr[2] = 30;
    ptr[3] = 40;

    for (int i = 0; i < 4; i++) {
        printf("ptr[%d] = %d\n", i, ptr[i]);
    }

    free(ptr);
    ptr = NULL;

    return 0;
}
Source transaction Link