Pages:
Author

Topic: [ANN] SATOSHI - anonymous payments in the network Ethereum! - page 13. (Read 36718 times)

full member
Activity: 630
Merit: 172
I would also like to know how many members are working on this.

Also, will there still be 21 million tokens after the swap?
jr. member
Activity: 35
Merit: 1
How many members are in the team?
member
Activity: 183
Merit: 10
We have started developing a mobile application and its web version.
full member
Activity: 630
Merit: 111
Why isn't this project more well known?.  This seems like a huge deal, first anonymous payments on ethereum.  Wonder why this is flying under the radar? Huh Huh

I already asked a similar question!)) I think that you need to hold a bounty company.

It is necessary to stop giving free tokens to those who do nothing to advertise the project!

Yes. And start giving out to those who did something)
Nobody forbids to help the project and get a reward for it. Which I did, for example.

And I have a question when will the article's evaluation and payment?

Soon Smiley
sr. member
Activity: 868
Merit: 255
Why isn't this project more well known?.  This seems like a huge deal, first anonymous payments on ethereum.  Wonder why this is flying under the radar? Huh Huh

I already asked a similar question!)) I think that you need to hold a bounty company.

It is necessary to stop giving free tokens to those who do nothing to advertise the project!

Yes. And start giving out to those who did something)
Nobody forbids to help the project and get a reward for it. Which I did, for example.

And I have a question when will the article's evaluation and payment?
full member
Activity: 630
Merit: 111
Here is a video instruction on how to use a smart contract without an application https://vimeo.com/satoshiteam
newbie
Activity: 71
Merit: 0
Why isn't this project more well known?.  This seems like a huge deal, first anonymous payments on ethereum.  Wonder why this is flying under the radar? Huh Huh

I already asked a similar question!)) I think that you need to hold a bounty company.

It is necessary to stop giving free tokens to those who do nothing to advertise the project!
member
Activity: 429
Merit: 16
Why isn't this project more well known?.  This seems like a huge deal, first anonymous payments on ethereum.  Wonder why this is flying under the radar? Huh Huh

I already asked a similar question!)) I think that you need to hold a bounty company.
full member
Activity: 630
Merit: 172
Why isn't this project more well known?.  This seems like a huge deal, first anonymous payments on ethereum.  Wonder why this is flying under the radar? Huh Huh
full member
Activity: 630
Merit: 111
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

What would the function return before the sender has paid? Empty response?
In that case I don't understand how the payer could check the paid amount before he transferred tokens.

To get a response from the "showBillData" function, you need to enter a password when you pay the bill. This password gives access to the product.
To check the invoice that you have issued, you use the secret word received from the seller when you call the function "showBillInfo"

By the way there is no method 'showBillData' in the abi you shared via the telegram chat.

Use the current data:

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"
  }
  ]
member
Activity: 122
Merit: 10
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

What would the function return before the sender has paid? Empty response?
In that case I don't understand how the payer could check the paid amount before he transferred tokens.

To get a response from the "showBillData" function, you need to enter a password when you pay the bill. This password gives access to the product.
To check the invoice that you have issued, you use the secret word received from the seller when you call the function "showBillInfo"

By the way there is no method 'showBillData' in the abi you shared via the telegram chat.
member
Activity: 122
Merit: 10
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

What would the function return before the sender has paid? Empty response?
In that case I don't understand how the payer could check the paid amount before he transferred tokens.

To get a response from the "showBillData" function, you need to enter a password when you pay the bill. This password gives access to the product.
To check the invoice that you have issued, you use the secret word received from the seller when you call the function "showBillInfo"

Is the secret shared with payer? I thought it was for seller only.

So the seller should pass the secret and the password to the payer?
full member
Activity: 630
Merit: 111
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

What would the function return before the sender has paid? Empty response?
In that case I don't understand how the payer could check the paid amount before he transferred tokens.

To get a response from the "showBillData" function, you need to enter a password when you pay the bill. This password gives access to the product.
To check the invoice that you have issued, you use the secret word received from the seller when you call the function "showBillInfo"
member
Activity: 122
Merit: 10
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

What would the function return before the sender has paid? Empty response?
In that case I don't understand how the payer could check the paid amount before he transferred tokens.
full member
Activity: 630
Merit: 111
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

Do you plan to release GUI tool for it? Wallet or something...
Not many people understand how to use it via JSON.


To begin with, on our website there will be simple forms with instructions. The user will be able to create an invoice for payment, view the status of the received invoice, and pay.

After that, we'll start developing a full-fledged web application.
member
Activity: 122
Merit: 10
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

Do you plan to release GUI tool for it? Wallet or something...
Not many people understand how to use it via JSON.

Q2 2018 launching an application for anonymous payments.

Also you can find screenshots of the mobile app in the first post.
member
Activity: 182
Merit: 14
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

Do you plan to release GUI tool for it? Wallet or something...
Not many people understand how to use it via JSON.
member
Activity: 429
Merit: 16
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?
member
Activity: 183
Merit: 10
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
member
Activity: 122
Merit: 10
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?
Pages:
Jump to: