Block #605,125
00000000000006649f6846dc2586c39f02c2d7fc1f0562b747d8813b3327e75a


Summary


Date
11/15, 2015 09:23utc(8y, 10mo, 9d ago)
Total Output
2,429,439.64XEC
In #/Out #
197/398
UTXO Δ
+201 (+42.9KB))
Min, Max Tx Size
225-461 B
Size
72.599 KB
Confirmations
1,022,501

Technical Details


Difficulty
1.831 x 106
Version
0x00000004 (decimal: 4)
Nonce
1272490712
Bits
1a092a20
Merkle Root
ca8167988912f0002d2f1acdc75227cbbb6568f186750ca2e481baa896743da1
Chainwork
123.11 x 1018hashes (6ac7f4b4e3742694a)

198 Transactions


coinbase
data(utf-8) - �;
show raw
12,500,000XEC

Total Input: 12,500,000XEC
OP_RETURN
data(utf-8) - ��
show raw
0

OP_RETURN
data(utf-8) - U����O
show raw
0

Total Output: 12,514,710XEC
OP_RETURN
data(utf-8) - # OP_RETURN.py # # Python script to generate and retrieve OP_RETURN bitcoin transactions # # Copyright (c) Coin Sciences Ltd # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation f
show raw
0

Total Output: 1,901,642.28XEC
OP_RETURN
data(utf-8) - iles (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software
show raw
0

Total Output: 1,901,542.28XEC
OP_RETURN
data(utf-8) - is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF AN
show raw
0

Total Output: 1,901,442.28XEC
OP_RETURN
data(utf-8) - Y KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILIT
show raw
0

Total Output: 1,901,342.28XEC
OP_RETURN
data(utf-8) - Y, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. import subprocess, json, time, random, os.path, binascii, struct, string, re, hashlib # P
show raw
0

Total Output: 1,901,242.28XEC
OP_RETURN
data(utf-8) - ython 2-3 compatibility logic try: basestring except NameError: basestring = str # User-defined quasi-constants OP_RETURN_BITCOIN_IP='127.0.0.1' # IP address of your bitcoin node OP_RETURN_BITCOIN_USE_CMD=False # use command-line instead of JSON-
show raw
0

Total Output: 1,901,142.28XEC
OP_RETURN
data(utf-8) - RPC? CONF_FILE = '~/testnet.conf' if OP_RETURN_BITCOIN_USE_CMD: OP_RETURN_BITCOIN_PATH='/usr/bin/bitcoin-cli' # path to bitcoin-cli executable on this server else: OP_RETURN_BITCOIN_PORT='' # leave empty to use default port for mainnet/testnet OP_R
show raw
0

Total Output: 1,901,042.28XEC
OP_RETURN
data(utf-8) - ETURN_BITCOIN_USER='' # leave empty to read from ~/.bitcoin/bitcoin.conf (Unix only) OP_RETURN_BITCOIN_PASSWORD='' # leave empty to read from ~/.bitcoin/bitcoin.conf (Unix only) OP_RETURN_BTC_FEE=0.0001 # BTC fee to pay per transaction OP_RETURN_BTC_DU
show raw
0

Total Output: 1,900,942.28XEC
OP_RETURN
data(utf-8) - ST=0.00001 # omit BTC outputs smaller than this OP_RETURN_MAX_BYTES=255 # maximum bytes in an OP_RETURN (40 as of Bitcoin 0.10) OP_RETURN_MAX_BLOCKS=10 # maximum number of blocks to try when retrieving data OP_RETURN_NET_TIMEOUT=10 # how long to time ou
show raw
0

Total Output: 1,900,842.28XEC
OP_RETURN
data(utf-8) - t (in seconds) when communicating with bitcoin node # User-facing functions def OP_RETURN_send(send_address, send_amount, metadata, testnet=False): # Validate some parameters if not OP_RETURN_bitcoin_check(testnet): return {'error': 'Please check
show raw
0

Total Output: 1,900,742.28XEC
OP_RETURN
data(utf-8) - Bitcoin Core is running and OP_RETURN_BITCOIN_* constants are set correctly'} result=OP_RETURN_bitcoin_cmd('validateaddress', testnet, send_address) if not ('isvalid' in result and result['isvalid']): return {'error': 'Send address could not be vali
show raw
0

Total Output: 1,900,642.28XEC
OP_RETURN
data(utf-8) - dated: '+send_address} if isinstance(metadata, basestring): metadata=metadata.encode('utf-8') # convert to binary string metadata_len=len(metadata) if metadata_len>65536: return {'error': 'This library only supports metadata up to 65536 bytes
show raw
0

Total Output: 1,900,542.28XEC
OP_RETURN
data(utf-8) - in size'} if metadata_len>OP_RETURN_MAX_BYTES: return {'error': 'Metadata has '+str(metadata_len)+' bytes but is limited to '+str(OP_RETURN_MAX_BYTES)+' (see OP_RETURN_MAX_BYTES)'} # Calculate amounts and choose inputs output_amount=send_amoun
show raw
0

Total Output: 1,900,442.28XEC
OP_RETURN
data(utf-8) - t+OP_RETURN_BTC_FEE inputs_spend=OP_RETURN_select_inputs(output_amount, testnet) if 'error' in inputs_spend: return {'error': inputs_spend['error']} change_amount=inputs_spend['total']-output_amount # Build the raw transaction change_addre
show raw
0

Total Output: 1,900,342.28XEC
OP_RETURN
data(utf-8) - ss=OP_RETURN_bitcoin_cmd('getrawchangeaddress', testnet) outputs={send_address: send_amount} if change_amount>=OP_RETURN_BTC_DUST: outputs[change_address]=change_amount raw_txn=OP_RETURN_create_txn(inputs_spend['inputs'], outputs, metadata, le
show raw
0

Total Output: 1,900,242.28XEC
OP_RETURN
data(utf-8) - n(outputs), testnet) # Sign and send the transaction, return result return OP_RETURN_sign_send_txn(raw_txn, testnet) def OP_RETURN_store(data, testnet=False): # Data is stored in OP_RETURNs within a series of chained transactions. # If the OP_RETU
show raw
0

Total Output: 1,900,142.28XEC
OP_RETURN
data(utf-8) - RN is followed by another output, the data continues in the transaction spending that output. # When the OP_RETURN is the last output, this also signifies the end of the data. # Validate parameters and get change address if not OP_RETURN_bitcoin_chec
show raw
0

Total Output: 1,900,042.28XEC

Block Summary


{
    "hash": "00000000000006649f6846dc2586c39f02c2d7fc1f0562b747d8813b3327e75a",
    "confirmations": 1022501,
    "height": 605125,
    "version": 4,
    "versionHex": "00000004",
    "merkleroot": "ca8167988912f0002d2f1acdc75227cbbb6568f186750ca2e481baa896743da1",
    "time": 1447579414,
    "mediantime": 1447579414,
    "nonce": 1272490712,
    "bits": "1a092a20",
    "difficulty": 1830636.372742288,
    "chainwork": "000000000000000000000000000000000000000000000006ac7f4b4e3742694a",
    "nTx": 198,
    "previousblockhash": "00000000005b0dbb631c6474eb6c75a44765964003085042dd311ff9b06fb085",
    "nextblockhash": "00000000007d9b40a89676c82fec8c07e749dd6c68f54cfdb0cf25986c0d6099",
    "size": 72599,
    "tx": "See 'Transaction IDs'",
    "coinbaseTx": {
        "txid": "ea7c401d61478bd26d6fe188ac312dd882fa7526cf517f556bb604fb4a8e7a84",
        "hash": "ea7c401d61478bd26d6fe188ac312dd882fa7526cf517f556bb604fb4a8e7a84",
        "version": 1,
        "size": 181,
        "locktime": 0,
        "vin": [
            {
                "coinbase": "03c53b09",
                "sequence": 4294967295
            }
        ],
        "vout": [
            {
                "value": 11888974.5,
                "n": 0,
                "scriptPubKey": {
                    "asm": "OP_HASH160 349ef962198fcc875f45e786598272ecace9818d OP_EQUAL",
                    "hex": "a914349ef962198fcc875f45e786598272ecace9818d87",
                    "reqSigs": 1,
                    "type": "scripthash",
                    "addresses": [
                        "ectest:pq6fa7tzrx8uep6lghncvkvzwtk2e6vp35dnwur9qx"
                    ]
                }
            },
            {
                "value": 625735.5,
                "n": 1,
                "scriptPubKey": {
                    "asm": "OP_HASH160 349ef962198fcc875f45e786598272ecace9818d OP_EQUAL",
                    "hex": "a914349ef962198fcc875f45e786598272ecace9818d87",
                    "reqSigs": 1,
                    "type": "scripthash",
                    "addresses": [
                        "ectest:pq6fa7tzrx8uep6lghncvkvzwtk2e6vp35dnwur9qx"
                    ]
                }
            },
            {
                "value": 0,
                "n": 2,
                "scriptPubKey": {
                    "asm": "OP_RETURN 00000000000000000000000000000000000000000000000082fd000000000000",
                    "hex": "6a2000000000000000000000000000000000000000000000000082fd000000000000",
                    "type": "nulldata"
                }
            },
            {
                "value": 0,
                "n": 3,
                "scriptPubKey": {
                    "asm": "OP_RETURN 55a5e7e0e84f0000",
                    "hex": "6a0855a5e7e0e84f0000",
                    "type": "nulldata"
                }
            }
        ],
        "hex": "01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0403c53b09ffffffff04aa22dd460000000017a914349ef962198fcc875f45e786598272ecace9818d87eecbba030000000017a914349ef962198fcc875f45e786598272ecace9818d870000000000000000226a2000000000000000000000000000000000000000000000000082fd00000000000000000000000000000a6a0855a5e7e0e84f000000000000",
        "blockhash": "00000000000006649f6846dc2586c39f02c2d7fc1f0562b747d8813b3327e75a",
        "confirmations": 1022501,
        "time": 1447579414,
        "blocktime": 1447579414
    },
    "totalFees": "14710",
    "subsidy": "12500000"
}

Transaction IDs


Loading...

Block Stats


{
    "avgfee": 74.67,
    "avgfeerate": 0.2,
    "avgtxsize": 367,
    "blockhash": "00000000000006649f6846dc2586c39f02c2d7fc1f0562b747d8813b3327e75a",
    "height": 605125,
    "ins": 197,
    "maxfee": 200,
    "maxfeerate": 0.6,
    "maxtxsize": 461,
    "medianfee": 50,
    "medianfeerate": 0.17,
    "mediantime": 1447579414,
    "mediantxsize": 284,
    "minfee": 10,
    "minfeerate": 0.04,
    "mintxsize": 225,
    "outs": 398,
    "subsidy": 12500000,
    "time": 1447579414,
    "total_out": 230429254.32,
    "total_size": 72337,
    "totalfee": 14710,
    "txs": 198,
    "utxo_increase": 201,
    "utxo_size_inc": 42874,
    "finalized": true
}
hosted by bitcoinabc.org