mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-10 22:41:53 +08:00
89 lines
3.1 KiB
Python
89 lines
3.1 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Blockstack
|
|
~~~~~
|
|
copyright: (c) 2014-2015 by Halfmoon Labs, Inc.
|
|
copyright: (c) 2016 by Blockstack.org
|
|
|
|
This file is part of Blockstack
|
|
|
|
Blockstack is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Blockstack is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
You should have received a copy of the GNU General Public License
|
|
along with Blockstack. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
|
|
import preorder
|
|
import register
|
|
import transfer
|
|
import update
|
|
import revoke
|
|
import nameimport
|
|
import namespacepreorder
|
|
import namespacereveal
|
|
import namespaceready
|
|
import announce
|
|
import binascii
|
|
|
|
from .preorder import build as build_preorder, \
|
|
broadcast as preorder_name, parse as parse_preorder, \
|
|
get_fees as preorder_fees
|
|
from .register import build as build_registration, \
|
|
broadcast as register_name, parse as parse_registration, \
|
|
get_fees as registration_fees
|
|
from .transfer import build as build_transfer, \
|
|
broadcast as transfer_name, parse as parse_transfer, \
|
|
make_outputs as make_transfer_ouptuts, \
|
|
get_fees as transfer_fees
|
|
from .update import build as build_update, \
|
|
broadcast as update_name, parse as parse_update, \
|
|
get_fees as update_fees
|
|
from .revoke import build as build_revoke, \
|
|
broadcast as revoke_name, parse as parse_revoke, \
|
|
get_fees as revoke_fees
|
|
from .namespacepreorder import build as build_namespace_preorder, \
|
|
broadcast as namespace_preorder, parse as parse_namespace_preorder, \
|
|
get_fees as namespace_preorder_fees
|
|
from .nameimport import build as build_name_import, \
|
|
broadcast as name_import, parse as parse_name_import, \
|
|
get_fees as name_import_fees
|
|
from .namespacereveal import build as build_namespace_reveal, \
|
|
broadcast as namespace_reveal, parse as parse_namespace_reveal, \
|
|
get_fees as namespace_reveal_fees
|
|
from .namespaceready import build as build_namespace_ready, \
|
|
broadcast as namespace_ready, parse as parse_namespace_ready, \
|
|
get_fees as namespace_ready_fees
|
|
from .announce import build as build_announce, \
|
|
broadcast as send_announce, parse as parse_announce, \
|
|
get_fees as announce_fees
|
|
|
|
from .register import get_registration_recipient_from_outputs
|
|
|
|
from .transfer import get_transfer_recipient_from_outputs
|
|
|
|
from .nameimport import get_import_update_hash_from_outputs
|
|
|
|
SERIALIZE_FIELDS = {
|
|
"NAME_PREORDER": preorder.FIELDS,
|
|
"NAME_REGISTRATION": register.FIELDS,
|
|
"NAME_UPDATE": update.FIELDS,
|
|
"NAME_TRANSFER": transfer.FIELDS,
|
|
"NAME_REVOKE": revoke.FIELDS,
|
|
"NAME_IMPORT": nameimport.FIELDS,
|
|
"NAMESPACE_PREORDER": namespacepreorder.FIELDS,
|
|
"NAMESPACE_REVEAL": namespacereveal.FIELDS,
|
|
"NAMESPACE_READY": namespaceready.FIELDS,
|
|
"ANNOUNCE": announce.FIELDS
|
|
}
|
|
|
|
|
|
|