This file contains 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
// SPDX-License-Identifier: MIT | |
//Versión | |
pragma solidity ^0.7.0; | |
contract funciones_globales{ | |
//Función msg.sender | |
function MsgSender() public view returns(address){ | |
return msg.sender; | |
} |
This file contains 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
const { src, dest, watch } = require("gulp"); | |
sass = require("gulp-sass"); | |
minifyCSS = require("gulp-csso"); | |
babel = require("gulp-babel"); | |
concat = require("gulp-concat"); | |
uglify = require("gulp-uglify"); | |
browserSync = require("browser-sync").create(); | |
function css() { | |
return src("./sass/*.scss", { sourcemaps: true }) |
This file contains 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
const { src, dest, watch } = require('gulp'); | |
const sass = require('gulp-sass'); | |
const minifyCSS = require('gulp-csso'); | |
const babel = require('gulp-babel'); | |
const concat = require('gulp-concat'); | |
const browserSync = require('browser-sync').create(); | |
function css() { | |
return src('./sass/*.scss', { sourcemaps: true }) | |
.pipe(sass()) |