Skip to content

Instantly share code, notes, and snippets.

@guzus
guzus / GensynRlSwarmNodeSetup.md
Last active May 2, 2025 14:01
GensynRlSwarmNodeSetup.md

Copy and paste below, then press enter.

#!/bin/bash

# Exit immediately if a command exits with a non-zero status
set -e

echo "🚀 Updating and installing dependencies..."
sudo apt-get update && sudo apt-get upgrade -y
@guzus
guzus / BuloNFT.sol
Created December 4, 2021 10:00
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.0;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./BuloNFTInterface.sol";
contract BuloNFT is ERC1155, BuloNFTStorage{
event NewGrave(string _name, string _birth, uint256 _tokenId);
@guzus
guzus / BuloNFT.sol
Created December 4, 2021 10:00
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.0;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./BuloNFTInterface.sol";
contract BuloNFT is ERC1155, BuloNFTStorage{
event NewGrave(string _name, string _birth, uint256 _tokenId);
@guzus
guzus / BuloNFT.sol
Created December 4, 2021 09:59
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.0;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "./BuloNFTInterface.sol";
contract BuloNFT is ERC1155, BuloNFTStorage{
event NewGrave(string _name, string _birth, uint256 _tokenId);