This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -qs 'https://akash.c29r3.xyz/api/akash/provider/v1beta2/providers'\ | |
| '?pagination.limit=1337&pagination.count_total=true' \ | |
| -H 'Connection: keep-alive' \ | |
| -H 'Accept: application/json, text/plain, */*' \ | |
| | tee 'akash_providerz.json' \ | |
| | jq -cr ".providers[].host_uri" | |
| # Lets scan'em ;-) #unixpipegang #ibcgang #decentralizeit | |
| curl -qs 'https://akash.c29r3.xyz/api/akash/provider/v1beta2/providers'\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #standardSQL | |
| with top_tokens as ( | |
| select token_address, count(1) as transfer_count | |
| from `bigquery-public-data.crypto_ethereum.token_transfers` as token_transfers | |
| group by token_address | |
| order by transfer_count desc | |
| limit 1000 | |
| ), | |
| token_balances as ( | |
| with double_entry_book as ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| KillerScope | |
| FK Around / Find Out |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Set variables in .bashrc file | |
| # don't forget to change your path correctly! | |
| export GOPATH=$HOME/golang | |
| export GOROOT=/usr/local/opt/go/libexec | |
| export PATH=$PATH:$GOPATH/bin | |
| export PATH=$PATH:$GOROOT/bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "tx": { | |
| "body": { | |
| "messages": [ | |
| { | |
| "@type": "/ibc.applications.nft_transfer.v1.MsgTransfer", | |
| "source_port": "nft-transfer", | |
| "source_channel": "channel-24", | |
| "class_id": "onftdenom5f02ff7f06354058bdbb5cb7f5e75145", | |
| "token_ids": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| contract CW20Base { | |
| error InvalidZeroAmount() | |
| error Unauthorized() | |
| event Transfer(sender: Addr, recipient: Addr, amount: u64) | |
| event Burn(sender: Addr, amount: u64) | |
| event Mint(minter: Addr, recipient: Addr, amount: u64) | |
| event Send(sender: Addr, contract: Addr, amount: u64) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { Server } = require("ws"); | |
| const { CosmWasmClient } = require("@cosmjs/cosmwasm-stargate"); | |
| const axios = require("axios"); | |
| const client = axios.create({}); | |
| const sockserver = new Server({ port: 443 }); | |
| const fs = require("fs"); | |
| console.log("Server started"); | |
| sockserver.on("connection", async (ws) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Contracts CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| inputs: | |
| run_build: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The root query type which gives access points into the data universe. | |
| type Query implements Node { | |
| # Exposes the root query type nested one level down. This is helpful for Relay 1 | |
| # which can only query top level fields if they are in a particular form. | |
| query: Query! | |
| # The root query type must be a `Node` to work well with Relay 1 mutations. This just resolves to `query`. | |
| nodeId: ID! | |
| # Fetches an object given its globally unique `ID`. |
NewerOlder