Skip to content
View Ashir836's full-sized avatar
πŸ•ΈοΈ
Working On Web3
πŸ•ΈοΈ
Working On Web3

Block or report Ashir836

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Ashir836- Ashir836- Public

    1

  2. Anoma-Game Anoma-Game Public

    Its all about anoma

    JavaScript

  3. bschmy-bridge bschmy-bridge Public

    Forked from harmony-one/ethhmy-bridge

    Ethereum<>Harmony two way bridge (trusted version)

    Solidity

  4. Created using remix-ide: Realtime Et... Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.15+commit.e14f2714.js&optimize=false&runs=200&gist=
    1
    
                  
    2
    // SPDX-License-Identifier: GPL -3.0
    3
    pragma solidity >=0.5.0<0.9.0;
    4
    
                  
    5
    contract Array{
  5. Created using remix-ide: Realtime Et... Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.17+commit.d19bba13.js&optimize=false&runs=200&gist=
    1
    // SPDX-License-Identifier: MIT
    2
    pragma solidity ^0.5.0;
    3
    contract First {
    4
     mapping (string => mapping(int=> string)) stuCourses;
    5
     function addCourse(string memory rollNo, int counter, string memory
  6. Created using remix-ide: Realtime Et... Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.5.17+commit.d19bba13.js&optimize=false&runs=200&gist=
    1
    pragma solidity ^0.5.0;
    2
    
                  
    3
    // Creating a contract
    4
    
                  
    5
    contract Test {