Every house
has an origin.
Ours begins with seven lines of code.
The name was already there.
Inside Circle’s public wallet-contracts repository, a test token returns the same thing for its name and symbol: “777”.
The source tests the ERC-777 token standard. The casino theme is our own interpretation. The test contract contains no lottery and does not establish Circle backing or affiliation.
Read the original sourcefunction name() external pure returns (string memory) {
return "777";
}
function symbol() external pure returns (string memory) {
return "777";
}
A test fixture for ERC-777. A reference, not an endorsement.