sidebar_position |
---|
1 |
SimApp
is a CLI application built using the Cosmos SDK for testing and educational purposes.
module impatient::goodylili{ | |
use std::string::{Self, String}; | |
use sui::url::{Self, Url}; | |
use sui::event; | |
use sui::balance::{Self, Balance}; | |
use sui::coin::{Self, Coin}; | |
use std::string::{utf8}; | |
use sui::display; | |
use sui::package; | |
use sui::sui::SUI; |
module impatient::goodylili; | |
use sui::coin::{Self, TreasuryCap}; | |
use sui::url; | |
public struct GOODYLILI has drop {} | |
fun init(witness: GOODYLILI, ctx: &mut TxContext) { | |
// Create the icon URL |
#!/bin/bash | |
# Unwrap all files from subdirectories into the root directory | |
# and remove empty folders. | |
ROOT_DIR="$1" | |
if [ -z "$ROOT_DIR" ]; then | |
echo "Usage: $0 <root_directory>" | |
exit 1 |
package precompile | |
import ( | |
"errors" | |
"github.com/ava-labs/avalanchego/utils/crypto/bls" | |
) | |
// BLSSignatureVerify is the precompiled contract for BLS signature verification | |
type BLSSignatureVerify struct{} |
# Move CLI build artifacts | |
/build/ | |
/storage/ | |
/.move/ | |
/move.lock | |
# Temporary files | |
*.tmp | |
*.swp | |
*.swo |
package main | |
import ( | |
"context" | |
"crypto/ecdsa" | |
"errors" | |
"fmt" | |
"github.com/ethereum/go-ethereum" | |
"github.com/ethereum/go-ethereum/accounts/abi/bind" | |
"github.com/ethereum/go-ethereum/core/types" |
package main | |
import ( | |
"context" | |
"fmt" | |
"log" | |
"math/big" | |
"strings" | |
"time" |
package main | |
import ( | |
"context" | |
"encoding/json" | |
"fmt" | |
"golang.org/x/oauth2" | |
"io" | |
"net/http" | |
) |
package main | |
import ( | |
"context" | |
"encoding/json" | |
"fmt" | |
"golang.org/x/oauth2" | |
"golang.org/x/oauth2/github" | |
"io" | |
"net/http" |