Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
lykhonis committed Feb 21, 2024
2 parents 108e637 + a32de90 commit d2928a6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 18 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
| mainnet | Participant | 0xa29aeaabb5da0cc3635576933a66c1b714f058c1 |
| mainnet | LSP7Listings | 0xe7f5c709d62bcc3701f4c0cb871eb77e301283b5 |
| mainnet | LSP7Offers | 0xb2379f3f3c623cd2ed18e97e407cdda8fe6c6da6 |
| mainnet | LSP7Orders | |
| mainnet | LSP7Orders | 0x07d815d546072547471d9cde244367d274268b35 |
| mainnet | LSP7Marketplace | 0xe04cf97440cd191096c4103f9c48abd96184fb8d |
| mainnet | LSP8Listings | 0x4faab47b234c7f5da411429ee86cb15cb0754354 |
| mainnet | LSP8Offers | 0xed189b51455c9714aa49b0c55529469c512b10b6 |
Expand Down
13 changes: 0 additions & 13 deletions artifacts/abi/marketplace/lsp7/LSP7Marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -772,19 +772,6 @@
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "orders_",
"type": "address"
}
],
"name": "setOrders",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
Expand Down
4 changes: 0 additions & 4 deletions src/marketplace/lsp7/LSP7Marketplace.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@ contract LSP7Marketplace is Base {
orders = orders_;
}

function setOrders(address orders_) external onlyOwner {
orders = ILSP7Orders(orders_);
}

function buy(uint256 listingId, uint256 itemCount, address recipient) external payable whenNotPaused nonReentrant {
LSP7Listing memory listing = listings.getListing(listingId);
if (listing.itemPrice * itemCount != msg.value) {
Expand Down

0 comments on commit d2928a6

Please sign in to comment.