Skip to content

Commit

Permalink
Update package abi
Browse files Browse the repository at this point in the history
  • Loading branch information
teinnt committed Jun 21, 2024
1 parent 7cd0e99 commit 6d2aa9e
Show file tree
Hide file tree
Showing 17 changed files with 34 additions and 46 deletions.
17 changes: 17 additions & 0 deletions contracts/mocks/TestFuturepassRegistrar.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.18;

contract TestFuturepassRegistrar {
mapping(address => address) registrations;

Check warning on line 5 in contracts/mocks/TestFuturepassRegistrar.sol

View workflow job for this annotation

GitHub Actions / build

Explicitly mark visibility of state

function futurepassOf(address owner) external view returns (address) {
return registrations[owner];
}

function create(address owner) external returns (address) {
// ticketing contract does not actually care about futurepass
// address value, just needs to be non-zero
registrations[owner] = owner;
return owner;
}
}

This file was deleted.

1 change: 0 additions & 1 deletion package/@futureverse/sylo-protocol-abi/abis/Directory.abi

This file was deleted.

Loading

0 comments on commit 6d2aa9e

Please sign in to comment.