Smart Contracts

Help
  • You can enter multiple Creator IDs separated by commas (e.g., 1,2,3).
  • The Code filter requires a minimum of 3 characters.
Reset Filter
Date
2.9 years ago
Creator
claptest (+4 more) (268)
/// dReam Tables Holdero Poker Contract v1.0.0 Function InitializePrivate() Uint64 10 IF EXISTS("owner:") == 0 THEN GOTO 30 20 RETURN 1 30 STORE("owner:", SIGNER()) 40 STORE("Deck Count:", 52) 50 …
Length
19 881
Date
3.4 years ago
Creator
claptest (+4 more) (268)
// Issue tokens after depositing DERO (Convert DERO to TOKENX) Function IssueTOKENX() Uint64 10 SEND_ASSET_TO_ADDRESS(SIGNER(), DEROVALUE(),SCID()) // Increment balance of user, without kn…
Length
2 281
Date
3.4 years ago
Creator
claptest (+4 more) (268)
// Issue tokens after depositing DERO (Convert DERO to TOKENX) Function IssueTOKENX() Uint64 10 SEND_ASSET_TO_ADDRESS(SIGNER(), DEROVALUE(),SCID()) // Increment balance of user, without kn…
Length
2 269
Date
3.4 years ago
Creator
claptest (+4 more) (268)
// Issue Asset after depositing DERO (Convert DERO to TOKENX) Function IssueAsset() Uint64 10 SEND_ASSET_TO_ADDRESS(SIGNER(), 100000000(),SCID()) // send asset without knowing original bal…
Length
476
Date
3.4 years ago
Creator
claptest (+4 more) (268)
/* Private Token Smart Contract Example in DVM-BASIC. DERO Smart Contracts Tokens privacy can be understood just like banks handle cash. Once cash is out from the bank, bank is not aware about it (wh…
Length
1 192