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 { styled, useTheme, alpha } from '@mui/material/styles'; | |
import ArrowForwardIosSharpIcon from '@mui/icons-material/ArrowForwardIosSharp'; | |
import MuiAccordion, { AccordionProps } from '@mui/material/Accordion'; | |
import MuiAccordionSummary, { | |
AccordionSummaryProps, | |
} from '@mui/material/AccordionSummary'; | |
import MuiAccordionDetails from '@mui/material/AccordionDetails'; | |
import Typography from '@mui/material/Typography'; |
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
/* eslint-disable class-methods-use-this */ | |
type UserProfile = { | |
name: string; | |
avatarUrl: string; | |
balance: number; | |
}; | |
abstract class AbstractWallet { | |
// Returns a promise that resolves an array of strings, each string is an origin | |
async getOrdinals(): Promise<string[]> { |
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.4.19; | |
import 'zeppelin-solidity/contracts/token/ERC20/MintableToken.sol'; | |
contract BITTokenTest is MintableToken { | |
string public name = "BITTokenTest"; | |
string public symbol = "BIT"; | |
uint8 public decimals = 18; | |
} |
NewerOlder