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 { | |
| CommandGroup, | |
| CommandItem, | |
| CommandList, | |
| CommandInput, | |
| } from "./command" | |
| import { Command as CommandPrimitive } from "cmdk" | |
| import { useState, useRef, useCallback, type KeyboardEvent, useEffect } from "react" | |
| import { Skeleton } from "./skeleton" |
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 * as React from "react" | |
| import { cn } from "@/lib/utils" | |
| import { AutoComplete, Option } from "./autocomplete" | |
| // Simulated API call | |
| const searchCountries = async (query: string): Promise<Option[]> => { | |
| // This would be replaced with an actual API call in a real application | |
| const allCountries: Option[] = [ | |
| { value: 'fr', label: 'France' }, |
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
| { | |
| "name": "Sokol Tokens List", | |
| "timestamp": "2021-12-01T09:46:18.780Z", | |
| "version": { | |
| "major": 1, | |
| "minor": 0, | |
| "patch": 0 | |
| }, | |
| "tags": {}, | |
| "logoURI": "", |
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.5; | |
| /* NOTE: @kleros/kleros-interraction is not compatible with this solc version */ | |
| /* NOTE: I put all the arbitration files in the same file because the dependancy between the different contracts is a real "headache" */ | |
| /* If someone takes up the challenge, a PR is welcome */ | |
| /** | |
| * @title CappedMath | |
| * @dev Math operations with caps for under and overflow. | |
| * NOTE: see https://raw.githubusercontent.com/kleros/kleros-interaction/master/contracts/libraries/CappedMath.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.5; | |
| /* NOTE: @kleros/kleros-interraction is not compatible with this solc version */ | |
| /* NOTE: I put all the arbitration files in the same file because the dependancy between the different contracts is a real "headache" */ | |
| /* If someone takes up the challenge, a PR is welcome */ | |
| /** | |
| * @title CappedMath | |
| * @dev Math operations with caps for under and overflow. | |
| * NOTE: see https://raw.githubusercontent.com/kleros/kleros-interaction/master/contracts/libraries/CappedMath.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.5; | |
| /* NOTE: @kleros/kleros-interraction is not compatible with this solc version */ | |
| /* NOTE: I put all the arbitration files in the same file because the dependancy between the different contracts is a real "headache" */ | |
| /* If someone takes up the challenge, a PR is welcome */ | |
| /** | |
| * @title CappedMath | |
| * @dev Math operations with caps for under and overflow. | |
| * NOTE: see https://raw.githubusercontent.com/kleros/kleros-interaction/master/contracts/libraries/CappedMath.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.5.11; | |
| /* NOTE: @kleros/kleros-interraction is not compatible with this solc version */ | |
| /* NOTE: I put all the arbitration files in the same file because the dependancy between the different contracts is a real "headache" */ | |
| /* If someone takes up the challenge, a PR is welcome */ | |
| /** | |
| * @title CappedMath | |
| * @dev Math operations with caps for under and overflow. | |
| * NOTE: see https://raw.githubusercontent.com/kleros/kleros-interaction/master/contracts/libraries/CappedMath.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
| function generateSeedWallet() { | |
| const bip39 = require('bip39') | |
| const hdkey = require('ethereumjs-wallet/hdkey') | |
| const mnemonic = bip39.generateMnemonic() //generates string | |
| const seed = bip39.mnemonicToSeedSync(mnemonic).toString('hex') | |
| const hdwallet = hdkey.fromMasterSeed(bip39.mnemonicToSeed(seed)) | |
| const wallet_hdpath = "m/44'/60'/0'/0/" | |
| const wallet = hdwallet.derivePath(wallet_hdpath + 0).getWallet() | |
| const address = '0x' + wallet.getAddress().toString('hex') | |
| const privateKey = wallet.getPrivateKey().toString('hex') |
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 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
| /* ____/\\\\\\\\\______/\\\\\\\\\\\\\\\________/\\\\\\\\\_______/\\\\\_______/\\\________/\\\__/\\\\\\\\\\\\\\\____/\\\\\\\\\____________ */ | |
| /* __/\\\///////\\\___\/\\\///////////______/\\\////////______/\\\///\\\____\/\\\_______\/\\\_\/\\\///////////___/\\\///////\\\__________ */ | |
| /* __\/\\\_____\/\\\___\/\\\_______________/\\\/_____________/\\\/__\///\\\__\//\\\______/\\\__\/\\\_____________\/\\\_____\/\\\_________ */ | |
| /* ___\/\\\\\\\\\\\/____\/\\\\\\\\\\\______/\\\______________/\\\______\//\\\__\//\\\____/\\\___\/\\\\\\\\\\\_____\/\\\\\\\\\\\/_________ */ | |
| /* ____\/\\\//////\\\____\/\\\///////______\/\\\_____________\/\\\_______\/\\\___\//\\\__/\\\____\/\\\///////______\/\\\//////\\\________ */ | |
| /* _____\/\\\____\//\\\___\/\\\_____________\//\\\____________\//\\\______/\\\_____\//\\\/\\\_____\/\\\_____________\/\\\____\//\\\______ */ | |
| /* ______\/\\\_____\//\\\__\/\\\______________\///\\\___________\///\\\__/\\\________\//\\\\\______\/\\\_____________\/\\\_____\//\\\____ */ |
NewerOlder