Giter VIP home page Giter VIP logo

Comments (6)

diudiuwangzi avatar diudiuwangzi commented on June 16, 2024 1

fix it.

diff -u account.py.org account.py
--- account.py.org 2019-08-31 20:15:13.796771030 +0800
+++ account.py 2019-08-31 20:15:28.980771092 +0800
@@ -93,7 +93,7 @@
return AttributeDict({
'hex': address,
-- 'base58': to_base58.decode()
++ 'base58': to_base58
})

def str(self):

from tron-api-python.

serderovsh avatar serderovsh commented on June 16, 2024

No problems detected

Example:

from tronapi import Tron

tron = Tron()

account = tron.create_account
is_valid = bool(tron.isAddress(account.address.hex))


logger.debug('Generated account: ')
logger.debug('- Private Key: ' + account.private_key)
logger.debug('- Public Key: ' + account.public_key)
logger.debug('- Address: ')
logger.debug('-- Base58: ' + account.address.base58)
logger.debug('-- Hex: ' + account.address.hex)
logger.debug('-- isValid: ' + str(is_valid))
logger.debug('-----------')

from tron-api-python.

serderovsh avatar serderovsh commented on June 16, 2024

See examples
https://github.com/iexbase/tron-api-python/blob/master/example.py

from tron-api-python.

knight2008 avatar knight2008 commented on June 16, 2024

please verify the code below. Is your python version 3.x?

root@iZuf63dqaawoexrsw4tejsZ:# python --version
Python 3.7.1
root@iZuf63dqaawoexrsw4tejsZ:
#
root@iZuf63dqaawoexrsw4tejsZ:~# cat tron_address.py

coding=utf-8

if name == "main":
from tronapi import Tron
tron = Tron()
account = tron.create_account
print('Generated account: ')
print('- Private Key: ' + account.private_key)
print('- Public Key: ' + account.public_key)
print('- Address: ')
print('-- Base58: ' + account.address.base58)
print('-- Hex: ' + account.address.hex)
print('-----------')
root@iZuf63dqaawoexrsw4tejsZ:~# python tron_address.py
Generated account:

  • Private Key: 03a2ce656cd005c3b9da1d12814cf0b8d3c169759570458d59f8548b19a82a56
  • Public Key: 0414c8f967a5c64b33b6ccf390c65ad9897f96f3507bec3835a0dc39cfe954dda52c4c3bc7be1cedf2527a72ed171e4ab7dee2fa0baa5017ae4615c6d3e3823d3d
  • Address:
    Traceback (most recent call last):
    File "tron_address.py", line 11, in
    print('-- Base58: ' + account.address.base58)
    File "/root/.pyenv/versions/3.7.1/lib/python3.7/site-packages/tronapi/common/account.py", line 96, in address
    'base58': to_base58.decode()
    AttributeError: 'str' object has no attribute 'decode'

from tron-api-python.

serderovsh avatar serderovsh commented on June 16, 2024

3.6 >

Example tronbot:
https://github.com/iexbase/tron-bot/blob/b9ac20cbebf5b8b0edfd321efb7863951b528759/tron_bot.py#L242

https://t.me/iEXTronBot

Python 3.6.5 is installed on the server.

from tron-api-python.

knight2008 avatar knight2008 commented on June 16, 2024

this line report error.
print('-- Base58: ' + account.address.base58)
not
account = tron.create_account

Traceback (most recent call last):
File "tron_address.py", line 11, in
print('-- Base58: ' + account.address.base58)

from tron-api-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.