echo "# helloqo" >> README.md
git init
git add README.md
git commit -m "first commit"
| const axios = require("axios"); | |
| const fs = require("fs"); | |
| const path = require("path"); | |
| // GitHub API base URL | |
| const GITHUB_API_BASE_URL = "https://api.github.com"; | |
| // Replace with your GitHub personal access token (optional but recommended for higher rate limits) | |
| const GITHUB_PERSONAL_ACCESS_TOKEN = "your_personal_access_token"; |
| [ | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "string", | |
| "name": "_initialName", | |
| "type": "string" | |
| } | |
| ], | |
| "stateMutability": "nonpayable", |
| import React, { useState, useEffect } from "react"; | |
| import { BiconomySmartAccount } from "@biconomy/account"; | |
| import { | |
| IHybridPaymaster, | |
| SponsorUserOperationDto, | |
| PaymasterMode, | |
| } from "@biconomy/paymaster"; | |
| import abi from "../ABI/tokenAbi.json"; | |
| import { ethers } from "ethers"; |
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity ^0.8.4; | |
| import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
| contract Coin is ERC20 { | |
| address public minter; | |
| uint256 constant public waitTime = 24 hours; | |
| mapping(address => uint) lastMintBlock; | |
| event Sent(address _from, address _to, uint _amount); |
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity ^0.8.4; | |
| contract Coin { | |
| // The keyword "public" makes variables | |
| // accessible from other contracts | |
| address public minter; | |
| address public faucet; | |
| mapping (address => uint) public balances; |
| // import { AppLoading } from 'expo' | |
| import AppLoading from 'expo-app-loading'; | |
| import React, { useState } from 'react'; | |
| import * as eva from '@eva-design/eva'; | |
| import * as Font from 'expo-font' | |
| import { ApplicationProvider } from '@ui-kitten/compon | |
| import { default as mapping } from './mapping.json'; | |
| const loadFonts = () => { | |
| return Font.loadAsync({ |
| import { useState, useEffect } from "react"; | |
| import axios from "axios"; | |
| function App() { | |
| const [items, setItems] = useState([]); | |
| useEffect(() => { | |
| getData() | |
| }, []) |
| import logo from './logo.svg'; | |
| import './App.css'; | |
| function App() { | |
| return ( | |
| <div className="App"> | |
| <header className="App-header"> | |
| <img src={logo} className="App-logo" alt="logo" /> | |
| <p> | |
| Edit <code>src/App.js</code> and save to reload. |
| import * as React from 'react'; | |
| import { StyleSheet, TouchableOpacity, View, LogBox, Button, Text } from 'react-native'; | |
| import { RootStackParamList } from '../types'; | |
| import { StackNavigationProp } from '@react-navigation/stack'; | |
| type ProfileScreenNavigationProp = StackNavigationProp< | |
| RootStackParamList, | |
| 'Root' | |
| >; |