Пример #1
0
 def test_notify(self):
     hex_contract_address = '6690b6638251be951dded8c537678200a470c679'
     notify_args = NeoInvokeFunction('testHello')
     bool_msg = True
     int_msg = 1
     bytes_msg = b'Hello'
     str_msg = 'Hello'
     bytes_address_msg = acct1.get_address().to_bytes()
     notify_args.set_params_value(bool_msg, int_msg, bytes_msg, str_msg,
                                  bytes_address_msg)
     tx_hash = self.send_tx(hex_contract_address, None, acct1, notify_args)
     if len(tx_hash) == 0:
         return
     time.sleep(randint(10, 15))
     event = sdk.rpc.get_contract_event_by_tx_hash(tx_hash)
     states = Event.get_states_by_contract_address(event,
                                                   hex_contract_address)
     states[0] = NeoData.to_utf8_str(states[0])
     self.assertEqual('testHello', states[0])
     states[1] = NeoData.to_bool(states[1])
     self.assertEqual(bool_msg, states[1])
     states[2] = NeoData.to_int(states[2])
     self.assertEqual(int_msg, states[2])
     states[3] = NeoData.to_bytes(states[3])
     self.assertEqual(bytes_msg, states[3])
     states[4] = NeoData.to_utf8_str(states[4])
     self.assertEqual(str_msg, states[4])
     states[5] = NeoData.to_b58_address(states[5])
     self.assertEqual(acct1.get_address_base58(), states[5])
Пример #2
0
 def decode_neo_raw_data(data: str, d_type: str):
     if d_type.lower() == 'hex':
         return NeoData.to_hex_str(data)
     if d_type.lower() == 'int':
         return NeoData.to_int(data)
     if d_type.lower() == 'bool':
         return NeoData.to_bool(data)
     if d_type.lower() == 'utf8':
         return NeoData.to_utf8_str(data)
     if d_type.lower() == 'dict':
         return NeoData.to_dict(data)
     if d_type.lower() == 'bytes':
         return NeoData.to_bytes(data)
     if d_type.lower() == 'address':
         return NeoData.to_b58_address(data)
     return data