Skip to content

Commit

Permalink
Merge branch 'master' into add-erc-7531
Browse files Browse the repository at this point in the history
  • Loading branch information
sullof authored Nov 26, 2023
2 parents dbeefea + 7cf426e commit ea12dbd
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 25 deletions.
4 changes: 2 additions & 2 deletions ERCS/erc-6909.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ The `safeTransfer` and `safeTransferFrom` naming conventions are misleading, esp

### Interface ID

The interface ID is `0xb2e69f8a`.
The interface ID is `0x0f632fb3`.

### Metadata Extension

Expand Down Expand Up @@ -542,7 +542,7 @@ contract ERC6909 {
/// @param interfaceId The interface identifier, as specified in ERC-165.
/// @return supported True if the contract implements `interfaceId`.
function supportsInterface(bytes4 interfaceId) public pure returns (bool supported) {
return interfaceId == 0xb2e69f8a || interfaceId == 0x01ffc9a7;
return interfaceId == 0x0f632fb3 || interfaceId == 0x01ffc9a7;
}

function _mint(address receiver, uint256 id, uint256 amount) internal {
Expand Down
File renamed without changes.
File renamed without changes.
48 changes: 25 additions & 23 deletions config/eipw.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,11 @@ mode = "excludes"
pattern = '(?i)erc[\s]*[0-9]+'
message = "proposals must be referenced with the form `ERC-N` (not `ERCN` or `ERC N`)"

[lints.markdown-refs]
kind = "markdown-proposal-ref"
prefix = "erc-"
suffix = ".md"
## TODO: Disabled because half the files are in another repository.
# [lints.markdown-refs]
# kind = "markdown-proposal-ref"
# prefix = "erc-"
# suffix = ".md"

[lints.preamble-req-withdrawal-reason]
kind = "preamble-required-if-eq"
Expand All @@ -96,25 +97,26 @@ names = [
"withdrawal-reason",
]

[lints.preamble-requires-status]
prefix = "erc-"
suffix = ".md"
kind = "preamble-requires-status"
requires = "requires"
status = "status"
flow = [
[
"Draft",
"Stagnant",
],
["Review"],
["Last Call"],
[
"Final",
"Withdrawn",
"Living",
],
]
## TODO: Disabled because half the files are in another repository.
# [lints.preamble-requires-status]
# prefix = "erc-"
# suffix = ".md"
# kind = "preamble-requires-status"
# requires = "requires"
# status = "status"
# flow = [
# [
# "Draft",
# "Stagnant",
# ],
# ["Review"],
# ["Last Call"],
# [
# "Final",
# "Withdrawn",
# "Living",
# ],
# ]

[lints.markdown-order-section]
kind = "markdown-section-order"
Expand Down

0 comments on commit ea12dbd

Please sign in to comment.