forked from Militereum/Militereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.dfm
116 lines (116 loc) · 3.51 KB
/
demo.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
object dmDemo: TdmDemo
Height = 480
Width = 640
object AL: TActionList
Left = 304
Top = 224
object actApprove: TAction
Text = 'You allowing someone else to spend all your money'
OnExecute = actApproveExecute
OnUpdate = actUpdate
end
object actLimit: TAction
Text = 'You transferring more than 5k in US dollars'
OnExecute = actLimitExecute
OnUpdate = actUpdate
end
object actSanctioned: TAction
Text = 'You transacting with a sanctioned address'
OnExecute = actSanctionedExecute
OnUpdate = actUpdate
end
object actUnverified: TAction
Text =
'You transacting with a smart contract that has not been ethersca' +
'n-verified'
OnExecute = actUnverifiedExecute
OnUpdate = actUpdate
end
object actFirsttime: TAction
Text =
'You transacting with an address you have not transacted with bef' +
'ore'
OnExecute = actFirsttimeExecute
OnUpdate = actUpdate
end
object actPhisher: TAction
Text =
'You transacting with an address that has been identified as a ph' +
'isher'
OnExecute = actPhisherExecute
OnUpdate = actUpdate
end
object actSetApprovalForAll: TAction
Text =
'You trusting someone else to be able to transfer all your NFTs o' +
'ut of your wallet'
OnExecute = actSetApprovalForAllExecute
OnUpdate = actUpdate
end
object actSpam: TAction
Text = 'You buying a token that lies about its own token supply'
OnExecute = actSpamExecute
OnUpdate = actUpdate
end
object actHoneypot: TAction
Text =
'You buying a honeypot token that is designed to pump but you can' +
'not sell'
OnExecute = actHoneypotExecute
OnUpdate = actUpdate
end
object actUnsupported: TAction
Text = 'You buying a token that is unsupported by Uniswap'
OnExecute = actUnsupportedExecute
OnUpdate = actUpdate
end
object actNoDexPair: TAction
Text = 'You receiving a token without a DEX pair'
OnExecute = actNoDexPairExecute
OnUpdate = actUpdate
end
object actLowDexScore: TAction
Text = 'You receiving a low-DEX-score token'
OnExecute = actLowDexScoreExecute
OnUpdate = actUpdate
end
object actAirdrop: TAction
Text =
'You buying a suspicious token that is probably an unwarranted ai' +
'rdrop'
OnExecute = actAirdropExecute
OnUpdate = actUpdate
end
object actCensorable: TAction
Text = 'You buying a censorable token that can blacklist you'
OnExecute = actCensorableExecute
OnUpdate = actUpdate
end
object actPausable: TAction
Text =
'You buying a pausable token that can prevent you from swapping o' +
'r selling'
OnExecute = actPausableExecute
OnUpdate = actUpdate
end
object actDormant: TAction
Text =
'You transacting with a dormant contract where the last transacti' +
'on with the contract was more than 30 days ago'
OnExecute = actDormantExecute
OnUpdate = actUpdate
end
object actUnlock: TAction
Text = 'You buying a token with an unlock event coming up'
OnExecute = actUnlockExecute
OnUpdate = actUpdate
end
object actVault: TAction
Text =
'You depositing a token in a vault but another vault earns you hi' +
'gher yeild'
OnExecute = actVaultExecute
OnUpdate = actUpdate
end
end
end