Most tokenized stocks on EVM chains do not contain the code that makes them work. The contract at the address holds the balances. The code lives somewhere else, and the token finds it by reading a pointer.
That arrangement is called a proxy. EIP-1967 is the standard that says where the pointer is kept.
The problem the standard solves
A proxy has to store the address of its code somewhere. If it stores it in a normal contract variable, that variable sits in the first storage slots, which is exactly where the code being pointed at also puts its own variables. The two then write over each other.
EIP-1967 fixes this by putting the pointer in one specific, distant slot. For a beacon proxy the slot is:
0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50
That number is the hash of the text eip1967.proxy.beacon, minus one. The
subtraction is deliberate: it leaves a slot with no known preimage. Nobody knows
what to hash to arrive at it, so no mapping or array can be arranged to land there,
by accident or on purpose.
Because the slot is fixed by the standard, anything can read it. A block explorer that shows contract storage will show the value at that slot without the contract having to offer a function for it.
What the beacon adds
There are two common shapes. In the simpler one, each proxy stores the address of its code directly. In the beacon shape, each proxy stores the address of a beacon, and the beacon holds the code address.
The extra step gives one advantage: many tokens can share one beacon. An issuer with several hundred stock tokens on a chain points all of them at a single beacon. To change the code for all of them, the issuer changes one value in one contract. Without a beacon, the same change is one transaction per token.
This is the same argument that produced ERC-8056: a corporate action or an upgrade that has to touch every holder or every token one at a time is not practical at this scale.
Why it is a verification test
Anyone can deploy a token, call it AAPL, and give it the right name and decimals. The chain treats a symbol as a label, not as an identity. This is the problem checking a tokenized stock is real starts from.
A beacon changes what is being compared. The question stops being "does this token say the right things" and becomes "does this token point at the contract the issuer controls". A copy can set every label. It cannot get itself served by a beacon that belongs to somebody else.
For the issuers on this site that publish a beacon, the addresses are on the contracts page for developers, read from our registry rather than typed into this entry. The same test runs in our own pipeline before a new token is proposed for the registry at all.
One detail decides how strong the test is. The beacon has to be known independently, from the issuer or from tokens that were checked earlier. A beacon taken from the same list that is being checked proves nothing, because then the list is checking itself.
What it does not tell you
The test has narrow scope, and it is worth being exact about the edges.
It shows that a token was deployed by whoever controls the beacon. It does not say the token is a good thing to hold, that the issuer is solvent, or that the shares behind it exist. We do not grade contracts, and this is not a grade.
The same design also works against the holder. The beacon owner can point every token at different code whenever they choose. Holders are not asked. An upgradeable token is a token whose behaviour can change after you receive it, and the beacon is what makes that one transaction instead of hundreds.
And the test does not exist everywhere. Solana mints are Token-2022 accounts with extensions, not proxies, so there is no slot to read. Where a beacon test is not available, matching the mint address against the issuer's published list is what is left. A chain with no test is not the same as a token that failed one, and we say which applies where.
The short version
The token contract holds the balances. The code is in a different contract. EIP-1967 fixes the storage slot that records where to look, a beacon lets many tokens share one of those records, and that slot can be read by anyone. A copy can match every label on a token. It cannot match where the token points.