Skip to content

Instantly share code, notes, and snippets.

View ramilexe's full-sized avatar

Ramil Amerzyanov ramilexe

  • Istanbul, Turkey
View GitHub Profile

0x06eb78d88940ba5cb00583b54aa4f64500f5d13203cdae4ed5959f3473380597

@ramilexe
ramilexe / Oracle.sol
Created April 29, 2021 20:15
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.6.6+commit.6c089d02.js&optimize=false&runs=200&gist=
// Sources flattened with hardhat v2.2.1 https://hardhat.org
// File chainlink/evm-contracts/src/v0.6/LinkTokenReceiver.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
abstract contract LinkTokenReceiver {
bytes4 constant private ORACLE_REQUEST_SELECTOR = 0x40429946;
@ramilexe
ramilexe / CreditToken.sol
Created February 25, 2020 12:15
ConsiderItDone Solidity Smart Contract demo
pragma solidity ^0.4.21;
import './TransactionToken.sol';
contract CreditToken is TransactionToken {
string public name = "Credit Token";
string public symbol = "CRDT";
uint8 public decimals = 18;
}

Keybase proof

I hereby claim:

  • I am ramilexe on github.
  • I am ramilexe (https://keybase.io/ramilexe) on keybase.
  • I have a public key ASBIdX-blfPhnFukESjnx4OUbj2LCSn_irgss9kJFlVEGAo

To claim this, I am signing this object:

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
version = "1.8"
locale = "en_GB.UTF.8"
config.vm.box = "ubuntu/trusty64"
#config.vm.synced_folder "/media/ramil/42e0c4a4-705a-4173-a23b-65c126e2acd21/srv/ethermint/src/github.com/tendermint/ethermint", "/home/vagrant/go/src/github.com/tendermint/ethermint"