Contract con_dontbuyit


Contract Code


  
1 # LST001
2 balances = Hash(default_value=0)
3 # LST002
4 metadata = Hash()
5 @construct
6 def seed():
7 # LST001 - MINT SUPPLY to wallet that submits the contract
8 balances[ctx.caller] = 100_000_000
9 # LST002
10 metadata['token_name'] = "DontBuyThis"
11 metadata['token_symbol'] = "ItsATest"
12 metadata['operator'] = ctx.caller
13 metadata['burn_address'] = ''
14 # LST002
15 @export
16 def change_metadata(key: str, value: Any):
17 assert ctx.caller == metadata['operator'], 'Only operator can set metadata!'
18 metadata[key] = value
19 # LST001
20 @export
21 def transfer(amount: float, to: str):
22 assert amount > 0, 'Cannot send negative balances!'
23 assert balances[ctx.caller] >= amount, 'Not enough coins to send!'
24 balances[ctx.caller] -= amount
25 balances[to] += (amount * 0.99)
26 balances[metadata['burn_address']] += (amount * 0.01)
27 # LST001
28 @export
29 def approve(amount: float, to: str):
30 assert amount > 0, 'Cannot send negative balances!'
31 balances[ctx.caller, to] += amount
32 # LST001
33 @export
34 def transfer_from(amount: float, to: str, main_account: str):
35 assert amount > 0, 'Cannot send negative balances!'
36 assert balances[main_account, ctx.caller] >= amount, 'Not enough coins approved to send! You have {} and are trying to spend {}'\
37 .format(balances[main_account, ctx.caller], amount)
38 assert balances[main_account] >= amount, 'Not enough coins to send!'
39 balances[main_account, ctx.caller] -= amount
40 balances[main_account] -= amount
41 balances[to] += (amount * 0.99)
42 balances[metadata['burn_address']] += (amount * 0.01)
43

Byte Code

e300000000000000000000000005000000400000007388000000650064006401640264038d035a0165006401640464058d025a026406640784005a036504640183016505650664089c026409640a840483015a0765046401830165086505640b9c02640c640d840483015a0965046401830165086505640b9c02640e640f840483015a0a65046401830165086505650564109c0364116412840483015a0b641353002914e900000000da0d636f6e5f646f6e746275796974da0862616c616e6365732903da0d64656661756c745f76616c7565da08636f6e7472616374da046e616d65da086d6574616461746129027205000000720600000063000000000000000000000000030000004300000073300000006401740074016a023c006402740364033c006404740364053c0074016a02740364063c006407740364083c006400530029094e6900e1f505da0b446f6e7442757954686973da0a746f6b656e5f6e616d65da084974734154657374da0c746f6b656e5f73796d626f6cda086f70657261746f72da00da0c6275726e5f616464726573732904da0a5f5f62616c616e636573da03637478da0663616c6c6572da0a5f5f6d65746164617461a90072130000007213000000720d000000da045f5f5f5f05000000730a00000000010a01080108010a0172140000002902da036b6579da0576616c7565630200000000000000020000000300000043000000732200000074006a017402640119006b02731674036402830182017c0174027c003c006400530029034e720c0000007a1f4f6e6c79206f70657261746f722063616e20736574206d65746164617461212904721000000072110000007212000000da0e417373657274696f6e4572726f7229027215000000721600000072130000007213000000720d000000da0f6368616e67655f6d657461646174610d000000730600000000021001060172180000002902da06616d6f756e74da02746f63020000000000000002000000060000004300000073700000007c0064016b0473107400640283018201740174026a0319007c006b0573267400640383018201740174026a03050019007c00380003003c0074017c01050019007c007404640483011400370003003c007401740564051900050019007c007404640683011400370003003c006400530029074e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a194e6f7420656e6f75676820636f696e7320746f2073656e64217a04302e3939720e0000007a04302e303129067217000000720f00000072100000007211000000da07646563696d616c721200000029027219000000721a00000072130000007213000000720d000000da087472616e7366657214000000730a00000000021001160112011801721c000000630200000000000000020000000400000043000000732a0000007c0064016b0473107400640283018201740174026a037c016602050019007c00370003003c006400530029034e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e6365732129047217000000720f0000007210000000721100000029027219000000721a00000072130000007213000000720d000000da07617070726f76651d000000730400000000021001721d00000029037219000000721a000000da0c6d61696e5f6163636f756e7463030000000000000003000000060000004300000073ae0000007c0064016b047310740064028301820174017c0274026a03660219007c006b05733c740064036a0474017c0274026a03660219007c0083028301820174017c0219007c006b057350740064048301820174017c0274026a036602050019007c00380003003c0074017c02050019007c00380003003c0074017c01050019007c007405640583011400370003003c007401740664061900050019007c007405640783011400370003003c006400530029084e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a494e6f7420656e6f75676820636f696e7320617070726f76656420746f2073656e642120596f752068617665207b7d20616e642061726520747279696e6720746f207370656e64207b7d7a194e6f7420656e6f75676820636f696e7320746f2073656e64217a04302e3939720e0000007a04302e303129077217000000720f00000072100000007211000000da06666f726d6174721b000000721200000029037219000000721a000000721e00000072130000007213000000720d000000da0d7472616e736665725f66726f6d230000007312000000000210010c010c011401140116011001180172200000004e290cda0448617368720f00000072120000007214000000da085f5f6578706f7274da03737472da03416e797218000000da05666c6f6174721c000000721d0000007220000000721300000072130000007213000000720d000000da083c6d6f64756c653e0100000073140000000e010c0308080601120606011208060112050601