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
| // SPDX-License-Identifier: UNLICENSED | |
| pragma solidity ^0.8.13; | |
| struct PermitDetails { | |
| address token; | |
| uint160 amount; | |
| uint48 expiration; | |
| uint48 nonce; | |
| } |
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
| import argparse | |
| from keycard.keycard import KeyCard | |
| from keycard.constants import StorageSlot | |
| def get_pin(): | |
| try: | |
| import tkinter.simpledialog | |
| except ImportError: | |
| raise "Tkinter enabled version of Python required" | |
| return tkinter.simpledialog.askstring("Keycard PIN", "Enter PIN:", show='*') |
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
| ; This script is meant to be used with Neko Project 21/w (64-bit) together with LaunchBox | |
| ; and software from the Neo Kobe collection. | |
| ; | |
| ; Place this script (or compiled exe) in the same folder as the emulator itself and | |
| ; import the hdi files in LaunchBox (or hdm for games that don't have a hd). | |
| ; | |
| ; Configure LaunchBox to use this script as the emulator and leave the default command | |
| ; line. | |
| ; | |
| ; For CD games and/or games with a boot floppy, place all related file, all with the same |