Contract con_new_reflections
Creator | b2e05e9af19a9fa34d0cf57cf03705e71a31579c7c5f8c91abfca035acd03208 |
Creation Hash | ea58bc76ddc9c319ea968df7541db0f08318591dbeca0d6e10fb31a6ae158393 |
Created On | 687 days ago - 11/9/2021, 5:32:14 PM UTC+0 |
Contract Code
1
#first reflection contract
2
# LST001
3
balances = Hash(default_value=0)
4
# LST002
5
metadata = Hash()
6
7
@construct
8
def seed():
9
# LST001 - MINT SUPPLY to wallet that submits the contract
10
balances[ctx.caller] = 10_000_000_000
11
# LST002
12
metadata['token_name'] = "Reflection Honey"
13
metadata['token_symbol'] = "REFH"
14
metadata['operator'] = ctx.caller
15
# LST002
16
@export
17
def change_metadata(key: str, value: Any):
18
assert ctx.caller == metadata['operator'], 'Only operator can set metadata!'
19
metadata[key] = value
20
# LST001
21
@export
22
def transfer(amount: float, to: str):
23
assert amount > 0, 'Cannot send negative balances!'
24
assert balances[ctx.caller] >= amount, 'Not enough coins to send!'
25
balances[ctx.caller] -= amount
26
balances[to] += amount
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
if(to == "con_rocketswap_official_v1_1" and main_account != "b2e05e9af19a9fa34d0cf57cf03705e71a31579c7c5f8c91abfca035acd03208"):
37
return 'Not enough coins to send!'
38
assert balances[main_account, ctx.caller] >= amount, 'Not enough coins approved to send! You have {} and are trying to spend {}'\
39
.format(balances[main_account, ctx.caller], amount)
40
assert balances[main_account] >= amount, 'Not enough coins to send!'
41
balances[main_account, ctx.caller] -= amount
42
balances[main_account] -= amount
43
balances[to] += amount
Byte Code
e300000000000000000000000005000000400000007388000000650064006401640264038d035a0165006401640464058d025a026406640784005a036504640183016505650664089c026409640a840483015a0765046401830165086505640b9c02640c640d840483015a0965046401830165086505640b9c02640e640f840483015a0a65046401830165086505650564109c0364116412840483015a0b641353002914e900000000da13636f6e5f6e65775f7265666c656374696f6e73da0862616c616e6365732903da0d64656661756c745f76616c7565da08636f6e7472616374da046e616d65da086d6574616461746129027205000000720600000063000000000000000000000000030000004300000073280000006401740074016a023c006402740364033c006404740364053c0074016a02740364063c006400530029074e6c030000000064172809007a105265666c656374696f6e20486f6e6579da0a746f6b656e5f6e616d65da0452454648da0c746f6b656e5f73796d626f6cda086f70657261746f722904da0a5f5f62616c616e636573da03637478da0663616c6c6572da0a5f5f6d65746164617461a90072100000007210000000da00da045f5f5f5f06000000730800000000010a010801080172120000002902da036b6579da0576616c7565630200000000000000020000000300000043000000732200000074006a017402640119006b02731674036402830182017c0174027c003c006400530029034e720b0000007a1f4f6e6c79206f70657261746f722063616e20736574206d65746164617461212904720d000000720e000000720f000000da0e417373657274696f6e4572726f72290272130000007214000000721000000072100000007211000000da0f6368616e67655f6d657461646174610d000000730600000000021001060172160000002902da06616d6f756e74da02746f630200000000000000020000000400000043000000734c0000007c0064016b0473107400640283018201740174026a0319007c006b0573267400640383018201740174026a03050019007c00380003003c0074017c01050019007c00370003003c006400530029044e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e636573217a194e6f7420656e6f75676820636f696e7320746f2073656e642129047215000000720c000000720d000000720e000000290272170000007218000000721000000072100000007211000000da087472616e7366657214000000730800000000021001160112017219000000630200000000000000020000000400000043000000732a0000007c0064016b0473107400640283018201740174026a037c016602050019007c00370003003c006400530029034e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e6365732129047215000000720c000000720d000000720e000000290272170000007218000000721000000072100000007211000000da07617070726f76651c000000730400000000021001721a000000290372170000007218000000da0c6d61696e5f6163636f756e74630300000000000000030000000500000043000000739e0000007c0064016b04731074006402830182017c0164036b0272247c0264046b0372246405530074017c0274026a03660219007c006b057350740064066a0474017c0274026a03660219007c0083028301820174017c0219007c006b057364740064058301820174017c0274026a036602050019007c00380003003c0074017c02050019007c00380003003c0074017c01050019007c00370003003c006400530029074e72010000007a1e43616e6e6f742073656e64206e656761746976652062616c616e63657321da1c636f6e5f726f636b6574737761705f6f6666696369616c5f76315f31da40623265303565396166313961396661333464306366353763663033373035653731613331353739633763356638633931616266636130333561636430333230387a194e6f7420656e6f75676820636f696e7320746f2073656e64217a494e6f7420656e6f75676820636f696e7320617070726f76656420746f2073656e642120596f752068617665207b7d20616e642061726520747279696e6720746f207370656e64207b7d29057215000000720c000000720d000000720e000000da06666f726d6174290372170000007218000000721b000000721000000072100000007211000000da0d7472616e736665725f66726f6d220000007316000000000210010a01060104010c010c011401140116011001721f0000004e290cda0448617368720c000000720f0000007212000000da085f5f6578706f7274da03737472da03416e797216000000da05666c6f61747219000000721a000000721f0000007210000000721000000072100000007211000000da083c6d6f64756c653e010000007316000000060108010c0308070601120606011207060112050601