Bitcoin Forum
June 17, 2024, 12:19:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 [53] 54 55 56 57 58 59 60 61 62 63 64 65 66 »
  Print  
Author Topic: [ANN] SATOSHI - anonymous payments in the network Ethereum!  (Read 36674 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
Hi5Crypto
Jr. Member
*
Offline Offline

Activity: 112
Merit: 1


View Profile WWW
January 25, 2018, 11:13:15 PM
 #1041

This is interesting, anonymous coin but on etherium platform? Is there an ICO? How to purchase STH?
revenanTts
Member
**
Offline Offline

Activity: 429
Merit: 16


View Profile
January 26, 2018, 01:51:29 AM
 #1042

This is interesting, anonymous coin but on etherium platform? Is there an ICO? How to purchase STH?

https://etherdelta.com/#0xc01b78e62a4d1fdce58d364193ee1218832919fd-ETH
evgen_povt
Member
**
Offline Offline

Activity: 122
Merit: 10


View Profile
January 26, 2018, 06:37:04 AM
 #1043

This is interesting, anonymous coin but on etherium platform? Is there an ICO? How to purchase STH?

There is a mini-ICO

https://bitcointalk.org/index.php?topic=2439901.msg28159772#msg28159772
nipponbit
Member
**
Offline Offline

Activity: 182
Merit: 14


View Profile
January 26, 2018, 06:44:59 AM
 #1044

https://etherscan.io/token/tokenholderchart/0xc01b78e62a4d1fdce58d364193ee1218832919fd
Is it right that only 6,757,500 STH tokens was distributed for today?
What will happen with undistributed 2/3 tokens?
How much will be total supply of the new SATOSHI token?
evgen_povt
Member
**
Offline Offline

Activity: 122
Merit: 10


View Profile
January 26, 2018, 06:51:35 AM
 #1045

https://etherscan.io/token/tokenholderchart/0xc01b78e62a4d1fdce58d364193ee1218832919fd
Is it right that only 6,757,500 STH tokens was distributed for today?
What will happen with undistributed 2/3 tokens?
How much will be total supply of the new SATOSHI token?


They will be distributed in the second round of airdrop
nipponbit
Member
**
Offline Offline

Activity: 182
Merit: 14


View Profile
January 26, 2018, 07:26:47 AM
 #1046

https://etherscan.io/token/tokenholderchart/0xc01b78e62a4d1fdce58d364193ee1218832919fd
Is it right that only 6,757,500 STH tokens was distributed for today?
What will happen with undistributed 2/3 tokens?
How much will be total supply of the new SATOSHI token?


They will be distributed in the second round of airdrop

Is there info about this second round? Will it happen before swap?
evgen_povt
Member
**
Offline Offline

Activity: 122
Merit: 10


View Profile
January 26, 2018, 07:34:54 AM
 #1047

https://etherscan.io/token/tokenholderchart/0xc01b78e62a4d1fdce58d364193ee1218832919fd
Is it right that only 6,757,500 STH tokens was distributed for today?
What will happen with undistributed 2/3 tokens?
How much will be total supply of the new SATOSHI token?


They will be distributed in the second round of airdrop

Is there info about this second round? Will it happen before swap?

as I understand - in the same time.
Sat0shiTeam
Member
**
Offline Offline

Activity: 183
Merit: 10


View Profile
January 26, 2018, 03:35:41 PM
Last edit: January 26, 2018, 04:37:14 PM by Sat0shiTeam
 #1048



The instructions will be published tomorrow
GraBitCoin (OP)
Full Member
***
Offline Offline

Activity: 630
Merit: 111



View Profile
January 27, 2018, 09:47:38 AM
Last edit: January 28, 2018, 02:07:54 PM by GraBitCoin
 #1049

SATOSHI ERC20 TOKEN uses advanced cryptographic techniques, namely zero-knowledge proofs, to guarantee the validity of transactions without revealing additional information about them.
SATOSHI payments are confirmed, but they are not published on the public blockchain, and the sender, recipient, and amount of a transaction remain private.

In order to pass a token using the "zero-knowledge proofs" technology, the token owner:

1. Using function "invoice" tells the smart contract how many tokens it wants to receive.
2. Using the function "showPassword" receives a secret code.
3. Sends the secret code to the buyer.
4. The buyer uses secret code to translate tokens using the "pay" function.

Sender, recipient, and amount of transaction remain private.

P.S.

Contract Address  0xc27AC1302D737c0E264477a248388DBc4e4B64cA

ABI / JSON Interface

Code:
[
  {
  "constant": true,
  "inputs": [],
  "name": "name",
  "outputs": [
  {
  "name": "",
  "type": "string"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_spender",
  "type": "address"
  },
  {
  "name": "_value",
  "type": "uint256"
  }
  ],
  "name": "approve",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [
  {
  "name": "_address",
  "type": "address"
  },
  {
  "name": "_secret",
  "type": "bytes32"
  }
  ],
  "name": "showPassword",
  "outputs": [
  {
  "name": "",
  "type": "bytes32"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [],
  "name": "getAirdropCount",
  "outputs": [
  {
  "name": "",
  "type": "uint256"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [],
  "name": "totalSupply",
  "outputs": [
  {
  "name": "",
  "type": "uint256"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_from",
  "type": "address"
  },
  {
  "name": "_to",
  "type": "address"
  },
  {
  "name": "_value",
  "type": "uint256"
  }
  ],
  "name": "transferFrom",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [],
  "name": "getCurrentTime",
  "outputs": [
  {
  "name": "",
  "type": "uint256"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [],
  "name": "decimals",
  "outputs": [
  {
  "name": "",
  "type": "uint32"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [
  {
  "name": "_pass",
  "type": "bytes32"
  }
  ],
  "name": "showBillInfo",
  "outputs": [
  {
  "name": "",
  "type": "uint256"
  },
  {
  "name": "",
  "type": "string"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [
  {
  "name": "_a",
  "type": "address"
  }
  ],
  "name": "checkSwapped",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [
  {
  "name": "_address",
  "type": "address"
  },
  {
  "name": "_pass",
  "type": "bytes32"
  },
  {
  "name": "_secret",
  "type": "bytes32"
  }
  ],
  "name": "showBillData",
  "outputs": [
  {
  "name": "",
  "type": "string"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_spender",
  "type": "address"
  },
  {
  "name": "_subtractedValue",
  "type": "uint256"
  }
  ],
  "name": "decreaseApproval",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [
  {
  "name": "_owner",
  "type": "address"
  }
  ],
  "name": "balanceOf",
  "outputs": [
  {
  "name": "balance",
  "type": "uint256"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_srcAdress",
  "type": "address"
  },
  {
  "name": "_adr",
  "type": "address[]"
  }
  ],
  "name": "swap",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [],
  "name": "participateInAirdrop",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_airStart",
  "type": "uint256"
  },
  {
  "name": "_airEnd",
  "type": "uint256"
  },
  {
  "name": "_value",
  "type": "uint256"
  }
  ],
  "name": "setAirdrop",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [],
  "name": "owner",
  "outputs": [
  {
  "name": "",
  "type": "address"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_pass",
  "type": "bytes32"
  },
  {
  "name": "_secret",
  "type": "bytes32"
  }
  ],
  "name": "pay",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [],
  "name": "symbol",
  "outputs": [
  {
  "name": "",
  "type": "string"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_to",
  "type": "address"
  },
  {
  "name": "_amount",
  "type": "uint256"
  }
  ],
  "name": "transfer",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_spender",
  "type": "address"
  },
  {
  "name": "_addedValue",
  "type": "uint256"
  }
  ],
  "name": "increaseApproval",
  "outputs": [
  {
  "name": "",
  "type": "bool"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": true,
  "inputs": [
  {
  "name": "_owner",
  "type": "address"
  },
  {
  "name": "_spender",
  "type": "address"
  }
  ],
  "name": "allowance",
  "outputs": [
  {
  "name": "",
  "type": "uint256"
  }
  ],
  "payable": false,
  "stateMutability": "view",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "_value1",
  "type": "uint256"
  },
  {
  "name": "_desc",
  "type": "string"
  },
  {
  "name": "_data",
  "type": "string"
  },
  {
  "name": "_secret",
  "type": "bytes32"
  }
  ],
  "name": "invoice",
  "outputs": [
  {
  "name": "",
  "type": "bytes32"
  }
  ],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "constant": false,
  "inputs": [
  {
  "name": "newOwner",
  "type": "address"
  }
  ],
  "name": "transferOwnership",
  "outputs": [],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "function"
  },
  {
  "inputs": [],
  "payable": false,
  "stateMutability": "nonpayable",
  "type": "constructor"
  },
  {
  "anonymous": false,
  "inputs": [
  {
  "indexed": true,
  "name": "owner",
  "type": "address"
  },
  {
  "indexed": true,
  "name": "spender",
  "type": "address"
  },
  {
  "indexed": false,
  "name": "value",
  "type": "uint256"
  }
  ],
  "name": "Approval",
  "type": "event"
  },
  {
  "anonymous": false,
  "inputs": [
  {
  "indexed": true,
  "name": "from",
  "type": "address"
  },
  {
  "indexed": true,
  "name": "to",
  "type": "address"
  },
  {
  "indexed": false,
  "name": "value",
  "type": "uint256"
  }
  ],
  "name": "Transfer",
  "type": "event"
  },
  {
  "anonymous": false,
  "inputs": [
  {
  "indexed": true,
  "name": "previousOwner",
  "type": "address"
  },
  {
  "indexed": true,
  "name": "newOwner",
  "type": "address"
  }
  ],
  "name": "OwnershipTransferred",
  "type": "event"
  }
  ]
Sat0shiTeam
Member
**
Offline Offline

Activity: 183
Merit: 10


View Profile
January 27, 2018, 01:12:12 PM
 #1050

Soon we will update the information on the site and on the forum. After that, we will continue to move forward.
evgen_povt
Member
**
Offline Offline

Activity: 122
Merit: 10


View Profile
January 28, 2018, 06:33:41 AM
 #1051

When the source code will be published?

May be I’m wrong, but according to the interface (ABI) the sender does not know how many tokens he transfers to the receiver.
How can the payer check that the secret code is for particular amount of tokens?
GraBitCoin (OP)
Full Member
***
Offline Offline

Activity: 630
Merit: 111



View Profile
January 28, 2018, 09:42:43 AM
 #1052

When the source code will be published?

May be I’m wrong, but according to the interface (ABI) the sender does not know how many tokens he transfers to the receiver.
How can the payer check that the secret code is for particular amount of tokens?

When forming an invoice for payment, the recipient of tokens indicates their number and transfers the goods (payment code, coordinates, download link). The buyer conducts the transaction and after that gets access to the purchase.
CheechCoin
Member
**
Offline Offline

Activity: 82
Merit: 10


View Profile
January 28, 2018, 09:52:37 AM
 #1053

Satoşhi is also erc20 token?
GraBitCoin (OP)
Full Member
***
Offline Offline

Activity: 630
Merit: 111



View Profile
January 28, 2018, 09:59:46 AM
 #1054

Satoşhi is also erc20 token?

Yes. We tested the output of the token on the ED and the process of its purchase / sale.
evgen_povt
Member
**
Offline Offline

Activity: 122
Merit: 10


View Profile
January 28, 2018, 10:23:57 AM
 #1055

When the source code will be published?

May be I’m wrong, but according to the interface (ABI) the sender does not know how many tokens he transfers to the receiver.
How can the payer check that the secret code is for particular amount of tokens?

When forming an invoice for payment, the recipient of tokens indicates their number and transfers the goods (payment code, coordinates, download link). The buyer conducts the transaction and after that gets access to the purchase.

Oh, the buyer could check what he pays using showBillInfo function. Right?
GraBitCoin (OP)
Full Member
***
Offline Offline

Activity: 630
Merit: 111



View Profile
January 28, 2018, 10:46:15 AM
 #1056

When the source code will be published?

May be I’m wrong, but according to the interface (ABI) the sender does not know how many tokens he transfers to the receiver.
How can the payer check that the secret code is for particular amount of tokens?

When forming an invoice for payment, the recipient of tokens indicates their number and transfers the goods (payment code, coordinates, download link). The buyer conducts the transaction and after that gets access to the purchase.

Oh, the buyer could check what he pays using showBillInfo function. Right?

Right. He will see the value of the product and its description. After payment, he receives the goods themselves.

Video instruction will be published soon.
Sat0shiTeam
Member
**
Offline Offline

Activity: 183
Merit: 10


View Profile
January 28, 2018, 01:28:54 PM
Last edit: January 28, 2018, 01:46:15 PM by Sat0shiTeam
 #1057

PRE ADVANTAGES:

Our users will be able to anonymously receive payment and transfer to customers:

1. Payment codes (EX-CODE, license keys, etc.).
2. Programs (links to download, files).
3. Goods (with the indication of coordinates).
4. Information.
evgen_povt
Member
**
Offline Offline

Activity: 122
Merit: 10


View Profile
January 28, 2018, 01:57:59 PM
 #1058

PRE ADVANTAGES:

Our users will be able to anonymously receive payment and transfer to customers:

1. Payment codes (EX-CODE, license keys, etc.).
2. Programs (links to download, files).
3. Goods (with the indication of coordinates).
4. Information.

Would the payer be able to get a code/link after hi has paid?
Sat0shiTeam
Member
**
Offline Offline

Activity: 183
Merit: 10


View Profile
January 28, 2018, 02:09:46 PM
 #1059

PRE ADVANTAGES:

Our users will be able to anonymously receive payment and transfer to customers:

1. Payment codes (EX-CODE, license keys, etc.).
2. Programs (links to download, files).
3. Goods (with the indication of coordinates).
4. Information.

Would the payer be able to get a code/link after hi has paid?

Yes, using the "showBillData" function
revenanTts
Member
**
Offline Offline

Activity: 429
Merit: 16


View Profile
January 29, 2018, 04:37:42 AM
 #1060

PRE ADVANTAGES:

Our users will be able to anonymously receive payment and transfer to customers:

1. Payment codes (EX-CODE, license keys, etc.).
2. Programs (links to download, files).
3. Goods (with the indication of coordinates).
4. Information.

Would the payer be able to get a code/link after hi has paid?

Yes, using the "showBillData" function

To just translate the tokens, leave the "Data" field empty?
Pages: « 1 ... 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 [53] 54 55 56 57 58 59 60 61 62 63 64 65 66 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!