TX classes :¶
-
class
ucoinpy.api.bma.tx.__init__.History(conn_handler, pubkey, module='tx')¶ Get transaction history from a public key : /tx/history/[PUBKEY]
-
__get__(**kwargs)¶ Get transaction history from a public key : /tx/history/[PUBKEY]
Parameters: kwargs –
-
__init__(conn_handler, pubkey, module='tx')¶ Constructor
Parameters: - conn_handler –
- pubkey (str) – The wallet public key.
- module (str) – (Default value = tx)
-
-
class
ucoinpy.api.bma.tx.__init__.Process(connection_handler, module='tx')¶ POST a transaction.
-
__post__(**kwargs)¶ POST a transaction.
Parameters: kwargs – The field “transaction” is required : /tx/process
-
-
class
ucoinpy.api.bma.tx.__init__.Sources(connection_handler, pubkey, module='tx')¶ Get the Transaction sources.
-
__get__(**kwargs)¶ Get the Transaction sources : /tx/sources
Parameters: kwargs –
-
__init__(connection_handler, pubkey, module='tx')¶ Constructor
Parameters: - conn_handler – The connection handler.
- pubkey (str) – Owner of the coins’ public key.
- module (str) – (Default value = tx)
-