Skip to content

Instantly share code, notes, and snippets.

View lenoteddy's full-sized avatar
🚀

Teddy Leno lenoteddy

🚀
View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
interface USDC {
function balanceOf(address account) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
@AdamMarsden
AdamMarsden / sassas.md
Last active February 12, 2026 09:13
Sass Architecture Structure

Sass Architecture Structure

sass/
|
|– base/
|   |– _reset.scss       # Reset/normalize
|   |– _typography.scss  # Typography rules
|   ...                  # Etc…
|