https://github.com/vectorized/sheepy-token
https://github.com/vectorized/sheepy-token
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vectorized/sheepy-token
- Owner: Vectorized
- Created: 2025-01-11T01:38:36.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-19T04:45:10.000Z (11 months ago)
- Last Synced: 2025-10-04T04:59:02.722Z (4 months ago)
- Language: Solidity
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Requirements
ZKsync Foundry.
https://foundry-book.zksync.io/
## Setup
There are three deployed contracts, and you'll need to setup those with `initialize` functions.
- Sheepy404 (the ERC20)
https://sepolia.abscan.org/address/0x9C0773Ed02EC78d38408ca8b8E478280B07ddb43
```solidity
function initialize(
address initialOwner,
address initialAdmin,
address mirror,
string memory notSoSecret
)
```
- Sheepy404Mirror (the ERC721 counterpart)
https://sepolia.abscan.org/address/0x0056DF5136D53dE52014Fe303c43a92cdA5D0377
- SheepySale (the Sale contract)
https://sepolia.abscan.org/address/0x39D25887C6EEEef56345954b7E71e06826B35795
```solidity
function initialize(
address initialOwner,
address initialAdmin,
string memory notSoSecret
)
```
Here, `notSoSecret` is `SomethingSomethingNoGrief`.