Skip to content

Instantly share code, notes, and snippets.

@veerreshr
veerreshr / contracts...Resume Chain...Organisation.sol
Created May 8, 2022 06:14
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.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract organisation{
struct certificateData{
string url;
string metadata;
}
@veerreshr
veerreshr / autobuy.py
Last active January 15, 2022 19:53
Python script for single user
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support.expected_conditions import presence_of_element_located
options = Options()
options.page_load_strategy = 'eager'