SC CODE: Function InitializePrivate() Uint64
10 IF init() == 0 THEN GOTO 30
20 RETURN 1
30 STORE("nameHdr", "style.css")
31 STORE("descrHdr", "style.css")
32 STORE("iconURLHdr", "")
33 STORE("dURL", "arcanesphere.hello.tela")
34 STORE("docType", "TELA-CSS-1")
35 STORE("subDir", "")
36 STORE("fileCheckC", "162d956b00e1f02dc2dccfad754a5afad818841efc33863d788893ef734e603f")
37 STORE("fileCheckS", "2a1a8b15023c3a50cb9f178fdc96032ca2e365ea16a8b249f3c6d652a468b215")
100 RETURN 0
End Function
Function init() Uint64
10 IF EXISTS("owner") == 0 THEN GOTO 30
20 RETURN 1
30 STORE("owner", address())
50 STORE("docVersion", "1.0.0")
60 STORE("hash", HEX(TXID()))
70 STORE("likes", 0)
80 STORE("dislikes", 0)
100 RETURN 0
End Function
Function address() String
10 DIM s as String
20 LET s = SIGNER()
30 IF IS_ADDRESS_VALID(s) THEN GOTO 50
40 RETURN "anon"
50 RETURN ADDRESS_STRING(s)
End Function
Function Rate(r Uint64) Uint64
10 DIM addr as String
15 LET addr = address()
16 IF r < 100 && EXISTS(addr) == 0 && addr != "anon" THEN GOTO 30
20 RETURN 1
30 STORE(addr, ""+r+"_"+BLOCK_HEIGHT())
40 IF r < 50 THEN GOTO 70
50 STORE("likes", LOAD("likes")+1)
60 RETURN 0
70 STORE("dislikes", LOAD("dislikes")+1)
100 RETURN 0
End Function
/*
body {
background-color: lightblue;
}
h1 {
font-family: monospace;
text-align: center;
}
p {
font-family: monospace;
font-size: 24px;
text-align: center;
}
p.small {
font-family: monospace;
font-size: 12px;
text-align: center;
}
.center {
margin: 10%;
position: relative;
}
.header {
height: 40px;
position:relative;
}
.content {
}
.footer {
height: 40px;
position:relative;
bottom: 0%;
}
*/ |
SC Arguments: [Name:SC_ACTION Type:uint64 Value:'1' Name:SC_CODE Type:string Value:'Function InitializePrivate() Uint64
10 IF init() == 0 THEN GOTO 30
20 RETURN 1
30 STORE("nameHdr", "style.css")
31 STORE("descrHdr", "style.css")
32 STORE("iconURLHdr", "")
33 STORE("dURL", "arcanesphere.hello.tela")
34 STORE("docType", "TELA-CSS-1")
35 STORE("subDir", "")
36 STORE("fileCheckC", "162d956b00e1f02dc2dccfad754a5afad818841efc33863d788893ef734e603f")
37 STORE("fileCheckS", "2a1a8b15023c3a50cb9f178fdc96032ca2e365ea16a8b249f3c6d652a468b215")
100 RETURN 0
End Function
Function init() Uint64
10 IF EXISTS("owner") == 0 THEN GOTO 30
20 RETURN 1
30 STORE("owner", address())
50 STORE("docVersion", "1.0.0")
60 STORE("hash", HEX(TXID()))
70 STORE("likes", 0)
80 STORE("dislikes", 0)
100 RETURN 0
End Function
Function address() String
10 DIM s as String
20 LET s = SIGNER()
30 IF IS_ADDRESS_VALID(s) THEN GOTO 50
40 RETURN "anon"
50 RETURN ADDRESS_STRING(s)
End Function
Function Rate(r Uint64) Uint64
10 DIM addr as String
15 LET addr = address()
16 IF r < 100 && EXISTS(addr) == 0 && addr != "anon" THEN GOTO 30
20 RETURN 1
30 STORE(addr, ""+r+"_"+BLOCK_HEIGHT())
40 IF r < 50 THEN GOTO 70
50 STORE("likes", LOAD("likes")+1)
60 RETURN 0
70 STORE("dislikes", LOAD("dislikes")+1)
100 RETURN 0
End Function
/*
body {
background-color: lightblue;
}
h1 {
font-family: monospace;
text-align: center;
}
p {
font-family: monospace;
font-size: 24px;
text-align: center;
}
p.small {
font-family: monospace;
font-size: 12px;
text-align: center;
}
.center {
margin: 10%;
position: relative;
}
.header {
height: 40px;
position:relative;
}
.content {
}
.footer {
height: 40px;
position:relative;
bottom: 0%;
}
*/'] |