Skip to content

Instantly share code, notes, and snippets.

View perfogic's full-sized avatar
🌍
Trying to become a true blockchain engineer

Minh Đăng perfogic

🌍
Trying to become a true blockchain engineer
  • HUST
  • Ha noi
  • 19:29 (UTC +07:00)
View GitHub Profile
@webmaster128
webmaster128 / TOUR_COMSJS_STARGATE.md
Last active June 3, 2024 05:57
CosmJS + Stargate – A guided tour

Support for Cosmos SDK Stargate in CosmJS has been ongoing work for several months now. Stargate is released and CosmJS is here to connect to it.

Starting points

Let's explore what is new for Stargate support:

@shobhitic
shobhitic / MyContract.sol
Last active April 18, 2024 04:51
UUPS Upgradable Smart Contract - https://youtu.be/bPOOvyVpI9U
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;
import "./Proxiable.sol";
contract MyContract is Proxiable {
address public owner;
uint public count;