Skip to content

Instantly share code, notes, and snippets.

View josemvcerqueira's full-sized avatar
:shipit:
BUIDLin DeFi

ターニャ🪖 josemvcerqueira

:shipit:
BUIDLin DeFi
View GitHub Profile
@josemvcerqueira
josemvcerqueira / CLAUDE.md
Last active January 20, 2026 00:44
Jose's CLAUDE.md

CLAUDE.md

Instructions for AI assistants working on this codebase.


How to Use This File

  1. Replace [PROJECT_NAME] and [DESCRIPTION] with your project details
  2. Remove language sections you don't use
@josemvcerqueira
josemvcerqueira / Move.toml
Last active December 24, 2023 15:23
SuiTears dependency
[package]
name = "YourPackage"
version = "0.0.1"
[dependencies]
MoveStdlib = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/move-stdlib", rev = "testnet-v1.11.1", override = true }
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "testnet-v1.11.1", override = true }
SuiTears = { git = "https://github.com/interest-protocol/suitears.git", subdir = "contracts", rev = "main" }
[addresses]
@josemvcerqueira
josemvcerqueira / .sol
Created October 1, 2022 19:37
Array in Array example
pragma solidity >=0.8.9;
contract Test {
uint256[][20] public array;
mapping(uint256 => bool) private _exists;
function push(uint256 index, uint256 indexChildren, uint256 value) external {
bool exists = _exists[index];