SC CODE: Function InitializePrivate() Uint64
10 STORE("TXID", TXID())
20 STORE("SCID", SCID())
30 STORE("DERO", DERO())
40 STORE("BLID", BLID())
50 STORE("SIGNER", SIGNER())
60 DIM t as string
70 LET t = "testing"
80 STORE("SHA256", SHA256(t))
90 STORE("SHA3256", SHA3256(t))
100 STORE(TXID(), "TXID")
110 STORE(SCID(), "SCID")
120 STORE(BLID(), "BLID")
130 STORE(SIGNER(), "SIGNER")
140 STORE("test", "test")
150 DIM tx as string
160 LET tx = TXID()
170 STORE(tx, tx)
900 RETURN 0
End Function |
SC Arguments: [Name:SC_ACTION Type:uint64 Value:'1' Name:SC_CODE Type:string Value:'Function InitializePrivate() Uint64
10 STORE("TXID", TXID())
20 STORE("SCID", SCID())
30 STORE("DERO", DERO())
40 STORE("BLID", BLID())
50 STORE("SIGNER", SIGNER())
60 DIM t as string
70 LET t = "testing"
80 STORE("SHA256", SHA256(t))
90 STORE("SHA3256", SHA3256(t))
100 STORE(TXID(), "TXID")
110 STORE(SCID(), "SCID")
120 STORE(BLID(), "BLID")
130 STORE(SIGNER(), "SIGNER")
140 STORE("test", "test")
150 DIM tx as string
160 LET tx = TXID()
170 STORE(tx, tx)
900 RETURN 0
End Function'] |