Pages:
Author

Topic: [ANN][SOCC]: SocialCoin *** FORK COMPLETE *** - page 55. (Read 66109 times)

sr. member
Activity: 433
Merit: 250
release is calling off?
full member
Activity: 182
Merit: 100
Twitter Follower: @polmerino
Twitter Retweet: https://twitter.com/SocialCoinNetwk/status/878147417694187520

And spanish update in progress


SOC Adress: SR1VFjAuJW4kfeukgEPEsKbrk8b8gNDDoZ

full member
Activity: 182
Merit: 100
don't work
newbie
Activity: 49
Merit: 0
not sync with your node.
My wallet is not connecting to your node
addnode=13.59.61.11
Same
sr. member
Activity: 433
Merit: 250
not sync with your node.
sr. member
Activity: 778
Merit: 250
My wallet is not connecting to your node
addnode=13.59.61.11



checking this now
legendary
Activity: 1764
Merit: 1022
My wallet is not connecting to your node
addnode=13.59.61.11

member
Activity: 140
Merit: 10
OP updated. Bounty hunters PM wallet addresses please. As per OP, please be patient, bounties will be paid.

Have fun all let's see where this goes! Smiley
Translation bounty is still ongoing ? i'm so close to finish hope it didn't finish yet !
sr. member
Activity: 778
Merit: 250
OP updated. Bounty hunters PM wallet addresses please. As per OP, please be patient, bounties will be paid.

Have fun all let's see where this goes! Smiley
legendary
Activity: 1764
Merit: 1022
Facebook Link: https://www.facebook.com/EarnWinCash/
Twitter Follower: @TimC2468
Twitter: https://twitter.com/TimC2468/status/878700231713595392

Good Luck with the launch.
sr. member
Activity: 778
Merit: 250
Launch will go ahead as planned, details will be updated in OP shortly before 23.00 CET
newbie
Activity: 42
Merit: 0
Any news?
sr. member
Activity: 672
Merit: 250
Hi! I want to join the company bounty

Facebook Link: https://www.facebook.com/world1team/posts/1454902641215427
Twitter Follower: @sergsen
Twitter : https://twitter.com/sergsen/status/878278134310645761
full member
Activity: 231
Merit: 100
 join bounty twitter campaign  Cool

Twitter Follower: @battrader_coin
Twitter Retweer :https://twitter.com/battrader_coin/status/878223482235965441

good luck dev Wink

sr. member
Activity: 778
Merit: 250
Facebook Link: https://www.facebook.com/permalink.php?story_fbid=138282733414483&id=100016982710675
Twitter Follower: @vpsmmoforall
Twitter Retweet: https://twitter.com/vpsmmoforall/status/878186632750309381
SOC Adress: SRLqG9zENg18u5DpgPvZnf5qAPaFBiZoaZ

SOC address is incorrect refers to an old coin, launch is tomorrow night wallet will be released for SOCC wallets - note the ticker is different.
sr. member
Activity: 778
Merit: 250
Ah so you're referring to the functionality of the blockchain API which allows you to complete the tasks otherwise created and completed by the wallet (creating addresses, sending transactions etc) but nevertheless ensures such outputs are fed back to the blockchain.

At this time, there is no intention to provide API functionality. We need to focus on core func whilst the coin is new. Looking forward to the future though, depending upon success factors, I see no reason why API func could not be introduced.
how to mining coin, dev?

Launch is tomorrow night, full details in OP. Wallets and port details will be listed in OP from shortly before 23.00 CET tomorrow.
full member
Activity: 278
Merit: 100
Ah so you're referring to the functionality of the blockchain API which allows you to complete the tasks otherwise created and completed by the wallet (creating addresses, sending transactions etc) but nevertheless ensures such outputs are fed back to the blockchain.

At this time, there is no intention to provide API functionality. We need to focus on core func whilst the coin is new. Looking forward to the future though, depending upon success factors, I see no reason why API func could not be introduced.
how to mining coin, dev?
sr. member
Activity: 778
Merit: 250
Ah so you're referring to the functionality of the blockchain API which allows you to complete the tasks otherwise created and completed by the wallet (creating addresses, sending transactions etc) but nevertheless ensures such outputs are fed back to the blockchain.

At this time, there is no intention to provide API functionality. We need to focus on core func whilst the coin is new. Looking forward to the future though, depending upon success factors, I see no reason why API func could not be introduced.
newbie
Activity: 42
Merit: 0
Could we generate a random adress using something like a python scrypt and then send a transaction without the need of dowloading the software wallet?

How would the blockchain know about the address you create?

Well, if i take bitcoin as an example, its quite easy. If you access their API https://blockchain.info/api/blockchain_api you can see there all that is needed. The question is whether this kind of information will be available for SOCC. So, to broadcast a transaction in the case of bitcoin, all i need is to use the wallets information and send to a node. 

For example if i use python:


# Alice -> Bob (5BTC) -> Charlie

import struct
import base58
import hashlib
import ecdsa

Bob_addr = "1NWzVg38ggPoVGAG2VWt6ktdWMaV6S1pJK"
bob_hashed_pubkey = base58.b58decode_check(Bob_addr)[1:].encode("hex")

Bob_private_key = "CF933A6C602069F1CBC85990DF087714D7E86DF0D0E48398B7D8953E1F03534A"

prv_txid = "84d813beb51c3a12cb5d0bb18c6c15062453d476de24cb2f943ca6e20115d85c"


Charlie_adr = "17X4s8JdSdLxFyraNUDBzgmnSNeZpjm42g"
charlie_hashed_pubkey = base58.b58decode_check(Charlie_adr)[1:].encode("hex")

# Bob sends 0.001 BTC to Charlie and he sends 0.0005 BTC back to himself (change) and the remainder of 0.0005 BTC will be given to the miner as a fee

# 1. raw tx
# 2. raw tx and sign that tx using my private key (this is the only way to prove that I'm Bob)
# 3. raw tx and signature in order to create the real tx

class raw_tx:
   version       = struct.pack("   tx_in_count    = struct.pack("   tx_in          = {} #TEMP
   tx_out_count   = struct.pack("   tx_out1         = {} #TEMP
   tx_out2       = {} #TEMP
   lock_time       = struct.pack("
def flip_byte_order(string):
   flipped = "".join(reversed([string[i:i+2] for i in range(0, len(string), 2)]))
   return flipped


rtx = raw_tx()

rtx.tx_in["txouthash"]       = flip_byte_order(prv_txid).decode("hex")
rtx.tx_in["tx_out_index"]    = struct.pack("rtx.tx_in["script"]       = ("76a914%s88ac" % bob_hashed_pubkey).decode("hex")
rtx.tx_in["scrip_bytes"]    = struct.pack("rtx.tx_in["sequence"]      = "ffffffff".decode("hex")

rtx.tx_out1["value"]      = struct.pack("rtx.tx_out1["pk_script"]    = ("76a914%s88ac" % charlie_hashed_pubkey).decode("hex")
rtx.tx_out1["pk_script_bytes"] = struct.pack("
rtx.tx_out2["value"]      = struct.pack("rtx.tx_out2["pk_script"]    = ("76a914%s88ac" % bob_hashed_pubkey).decode("hex")
rtx.tx_out2["pk_script_bytes"] = struct.pack("
raw_tx_string = (

   rtx.version
   + rtx.tx_in_count
   + rtx.tx_in["txouthash"]
   + rtx.tx_in["tx_out_index"]
   + rtx.tx_in["scrip_bytes"]
   + rtx.tx_in["script"]
   + rtx.tx_in["sequence"]
   + rtx.tx_out_count
   + rtx.tx_out1["value"]
   + rtx.tx_out1["pk_script_bytes"]
   + rtx.tx_out1["pk_script"]
   + rtx.tx_out2["value"]
   + rtx.tx_out2["pk_script_bytes"]
   + rtx.tx_out2["pk_script"]
   + rtx.lock_time
   + struct.pack("
   )

hashed_tx_to_sign = hashlib.sha256(hashlib.sha256(raw_tx_string).digest()).digest()

sk = ecdsa.SigningKey.from_string(Bob_private_key.decode("hex"), curve = ecdsa.SECP256k1)

vk = sk.verifying_key

public_key = ('\04' + vk.to_string()).encode("hex")

signature = sk.sign_digest(hashed_tx_to_sign, sigencode = ecdsa.util.sigencode_der_canonize)

sigscript = (

   signature
   + "\01"
   + struct.pack("   + public_key.decode("hex")

   )

real_tx = (
   rtx.version
   + rtx.tx_in_count
   + rtx.tx_in["txouthash"]
   + rtx.tx_in["tx_out_index"]
   + struct.pack("   + struct.pack("   + sigscript
   + rtx.tx_in["sequence"]
   + rtx.tx_out_count
   + rtx.tx_out1["value"]
   + rtx.tx_out1["pk_script_bytes"]
   + rtx.tx_out1["pk_script"]
   + rtx.tx_out2["value"]
   + rtx.tx_out2["pk_script_bytes"]
   + rtx.tx_out2["pk_script"]
   + rtx.lock_time

   )

print real_tx.encode("hex")
sr. member
Activity: 778
Merit: 250
Could we generate a random adress using something like a python scrypt and then send a transaction without the need of dowloading the software wallet?

How would the blockchain know about the address you create?
Pages:
Jump to: