Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix syntax in #681 by referencing #831 #1095

Merged
merged 3 commits into from
Oct 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion EIPS/eip-681.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ This specification supersedes ERC #67, which is a URL format for representing ar
### Syntax
Payment request URLs contain "ethereum" in their schema (protocol) part and are constructed as follows:

request = "ethereum" ":" [ "pay-" ]target_address [ "@" chain_id ] [ "/" function_name ] [ "?" parameters ]
request = erc831_part target_address [ "@" chain_id ] [ "/" function_name ] [ "?" parameters ]
erc831_part = schema and optional prefix as defined in #831 - typically "ethereum" ":" [ "pay-" ] in this case
target_address = ethereum_address
chain_id = 1*DIGIT
function_name = STRING
Expand Down