This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.7.0 <0.9.0; | |
/** | |
* @title Lootbox | |
* @dev Matrix lootbox contract | |
*/ | |
contract Lootbox { | |
enum TokenType{ NULL, NONFUNGIBLE, SEMIFUNGIBLE, FUNGIBLE } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.7.0 <0.9.0; | |
/** | |
* @title Lootbox | |
* @dev Matrix lootbox contract | |
*/ | |
contract Lootbox { | |
// NULL is for depleted items; fungible tokens not yet implemented |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.7.0 <0.9.0; | |
/** | |
* @title Lootbox | |
* @dev Matrix lootbox contract | |
*/ | |
contract Lootbox { | |
// NULL is for depleted items; fungible tokens not yet implemented |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.7.0 <0.9.0; | |
/** | |
* @title Lootbox | |
* @dev Matrix lootbox contract | |
*/ | |
contract Lootbox { | |
// NULL is for depleted items; fungible tokens not yet implemented |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.8.0 <0.9.0; | |
/** | |
* @title Lootbox | |
* @dev Matrix lootbox contract | |
*/ | |
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; | |
import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; | |
// import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC1155/ERC1155.sol"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.8.0 <0.9.0; | |
/** | |
* @title Lootbox | |
* @dev Matrix lootbox contract | |
*/ | |
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; | |
import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity >=0.8.0 <0.9.0; | |
/** | |
* @title Lootbox | |
* @dev Matrix lootbox contract | |
*/ | |
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; | |
import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Program shortcuts | |
shift + cmd - q : open -a "/Applications/qutebrowser.app" | |
shift + cmd - w : open -a "/Applications/kitty.app" | |
# Show system statistics | |
# fn + lalt - 1 : "${HOME}"/.config/yabai/scripts/show_cpu.sh | |
# fn + lalt - 2 : "${HOME}"/.config/yabai/scripts/show_mem.sh | |
# fn + lalt - 3 : "${HOME}"/.config/yabai/scripts/show_bat.sh | |
# fn + lalt - 4 : "${HOME}"/.config/yabai/scripts/show_disk.sh | |
# fn + lalt - 5 : "${HOME}"/.config/yabai/scripts/show_song.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -x | |
# ====== Variables ============================= | |
declare -A gaps | |
declare -A color | |
gaps["top"]="4" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you come from bash you might have to change your $PATH. | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
export PATH=/opt/homebrew/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME |
OlderNewer