// FEED v0.2
// The Mind of the Decentralized Web
Function Initialize() Uint64
10 IF EXISTS("owner") THEN GOTO 99
20 STORE("owner", ADDRESS_STRING(SIGNER()))
21 STORE("population", 0)
22 STORE…
/*
FEED v0.1
The Mind of the Decentralized Web
*/
Function Initialize() Uint64
10 IF EXISTS("owner") THEN GOTO 99
20 STORE("owner", ADDRESS_STRING(SIGNER()))
21 STORE("population", 0)
…
Function InitializePrivate() Uint64
10 IF init() == 0 THEN GOTO 30
20 RETURN 1
30 STORE("var_header_name", "FEED")
31 STORE("var_header_description", "The Mind of the Decentralized Web")
32 STORE("var…
Function InitializePrivate() Uint64
10 IF init() == 0 THEN GOTO 30
20 RETURN 1
30 STORE("var_header_name", "FEED")
31 STORE("var_header_description", "The Mind of the Decentralized Web")
32 STORE("var…
/*
FEED v0.1
The Mind of the Decentralized Web
*/
Function Initialize() Uint64
10 IF EXISTS("owner") THEN GOTO 99
20 STORE("owner", ADDRESS_STRING(SIGNER()))
21 STORE("population", 0)
…