Contract con_another_test


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_000
9 # LST002
10 metadata['token_name'] = "ignorethistest"
11 metadata['token_symbol'] = "IGNORE"
12 metadata['operator'] = ctx.caller
13 # LST002
14 @export
15 def change_metadata(key: str, value: Any):
16 assert ctx.caller == metadata['operator'], 'Only operator can set metadata!'
17 metadata[key] = value
18 # LST001
19 @export
20 def transfer(amount: float, to: str):
21 assert amount > 0, 'Cannot send negative balances!'
22 assert balances[ctx.caller] >= amount, 'Not enough coins to send!'
23 balances[ctx.caller] -= amount
24 balances[to] += amount
25 # LST001
26 @export
27 def approve(amount: float, to: str):
28 assert amount > 0, 'Cannot send negative balances!'
29 balances[ctx.caller, to] += amount
30 # LST001
31 @export
32 def transfer_from(amount: float, to: str, main_account: str):
33 assert amount > 0, 'Cannot send negative balances!'
34 assert balances[main_account, ctx.caller] >= amount, 'Not enough coins approved to send! You have {} and are trying to spend {}'\
35 .format(balances[main_account, ctx.caller], amount)
36 assert balances[main_account] >= amount, 'Not enough coins to send!'
37 balances[main_account, ctx.caller] -= amount
38 balances[main_account] -= amount
39 balances[to] += amount
40 # LST001
41
42 def swap_transfer(amount: float, to: str):
43 assert amount > 0, 'Cannot send negative balances!'
44 assert balances[ctx.caller] >= amount, 'Not enough coins to send!'
45 balances[ctx.caller] -= amount
46 balances[to] += amount
47
48 @export
49 def testswap(amount: float):
50 assert amount > 0,"negative amount not allowed!"
51 importlib.import_module('con_test_tester_testing').transfer_from(amount=amount, to='TESTBURN', main_account=ctx.caller)
52 reward = amount
53 swap_transfer(amount=reward, to=ctx.caller)

Byte Code

e3000000000000000000000000050000004000000073ae000000650064006401640264038d035a0165006401640464058d025a026406640784005a036504640183016505650664089c026409640a840483015a0765046401830165086505640b9c02640c640d840483015a0965046401830165086505640b9c02640e640f840483015a0a65046401830165086505650564109c0364116412840483015a0b65086505640b9c026413641484045a0c650464018301650864159c0164166417840483015a0d641853002919e900000000da10636f6e5f616e6f746865725f74657374da0862616c616e6365732903da0d64656661756c745f76616c7565da08636f6e7472616374da046e616d65da086d6574616461746129027205000000720600000063000000000000000000000000030000004300000073280000006401740074016a023c006402740364033c006404740364053c0074016a02740364063c006400530029074e6c030000000068ed105d00da0e69676e6f72657468697374657374da0a746f6b656e5f6e616d65da0649474e4f5245da0c746f6b656e5f73796d626f6cda086f70657261746f722904da0a5f5f62616c616e636573da03637478da0663616c6c6572da0a5f5f6d65746164617461a90072110000007211000000da00da045f5f5f5f06000000730800000000010a010801080172130000002902da036b6579da0576616c7565630200000000000000020000000300000043000000732200000074006a017402640119006b02731674036402830182017c0174027c003c006400530029034e720c0000007a1f4f6e6c79206f70657261746f722063616e20736574206d65746164617461212904720e000000720f0000007210000000da0e417373657274696f6e4572726f72290272140000007215000000721100000072110000007212000000da0f6368616e67655f6d657461646174610d000000730600000000021001060172170000002902da06616d6f756e74da02746f630200000000000000020000000400000043000000734c0000007c0064016b0473107400640283018201740174026a0319007c006b0573267400640383018201740174026a03050019007c00380003003c0074017c01050019007c00370003003c006400530029044e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a194e6f7420656e6f75676820636f696e7320746f2073656e642129047216000000720d000000720e000000720f000000290272180000007219000000721100000072110000007212000000da087472616e736665721400000073080000000002100116011201721a000000630200000000000000020000000400000043000000732a0000007c0064016b0473107400640283018201740174026a037c016602050019007c00370003003c006400530029034e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e6365732129047216000000720d000000720e000000720f000000290272180000007219000000721100000072110000007212000000da07617070726f76651c000000730400000000021001721b000000290372180000007219000000da0c6d61696e5f6163636f756e74630300000000000000030000000500000043000000738a0000007c0064016b047310740064028301820174017c0274026a03660219007c006b05733c740064036a0474017c0274026a03660219007c0083028301820174017c0219007c006b057350740064048301820174017c0274026a036602050019007c00380003003c0074017c02050019007c00380003003c0074017c01050019007c00370003003c006400530029054e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a494e6f7420656e6f75676820636f696e7320617070726f76656420746f2073656e642120596f752068617665207b7d20616e642061726520747279696e6720746f207370656e64207b7d7a194e6f7420656e6f75676820636f696e7320746f2073656e642129057216000000720d000000720e000000720f000000da06666f726d6174290372180000007219000000721c000000721100000072110000007212000000da0d7472616e736665725f66726f6d220000007310000000000210010c010c011401140116011001721e000000630200000000000000020000000400000043000000734c0000007c0064016b0473107400640283018201740174026a0319007c006b0573267400640383018201740174026a03050019007c00380003003c0074017c01050019007c00370003003c006400530029044e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a194e6f7420656e6f75676820636f696e7320746f2073656e642129047216000000720d000000720e000000720f000000290272180000007219000000721100000072110000007212000000da0f5f5f737761705f7472616e736665722e00000073080000000001100116011201721f00000029017218000000630100000000000000020000000500000043000000733e0000007c0064016b047310740064028301820174016a02640383016a037c00640474046a0564058d0301007c007d0174067c0174046a0564068d0201006400530029074e72010000007a1c6e6567617469766520616d6f756e74206e6f7420616c6c6f77656421da17636f6e5f746573745f7465737465725f74657374696e67da08544553544255524e290372180000007219000000721c00000029027218000000721900000029077216000000da09696d706f72746c6962da0d696d706f72745f6d6f64756c65721e000000720e000000720f000000721f00000029027218000000da06726577617264721100000072110000007212000000da08746573747377617035000000730a000000000210010a010e01040172250000004e290eda0448617368720d00000072100000007213000000da085f5f6578706f7274da03737472da03416e797217000000da05666c6f6174721a000000721b000000721e000000721f00000072250000007211000000721100000072110000007212000000da083c6d6f64756c653e01000000731a0000000e020c0308070601120606011207060112050601140b10070601