G is the base point of the Ed25519 elliptic curve. The x coordinate is not written explicitly because it can be found back using the y coordinate, the sign of x and the equation of the curve (x is positive for G).
Points on the Ed25519 curve are represented by 32 bytes. These 32 bytes are in fact the little-endian representation of a 256-bit number.
- bits 0 to 254 for the
y coordinate
- bit 255 indicates the sign of the
x coordinate
Therefore the hex string representing G is 0x5866666666666666666666666666666666666666666666666666666666666666.
There is more information about this base point at https://crypto.stackexchange.com/questions/27392/base-point-in-ed25519