- 200 runs (of a given Pipe) in 10 minutes
- 200 runs (of any Pipe) from an IP in 10 minutes
- If you exceed the 200 runs in a 10 minute block, your Pipe will be 999'ed for a hour (a 999 error implies you are over utilizing our service)
<?php | |
/** | |
* Recent_Posts widget class | |
* | |
* @since 2.8.0 | |
*/ | |
class WP_Widget_Recent_Posts_Custom extends WP_Widget_Recent_Posts { | |
function __construct() { |
/** | |
* Overflow aware uint math functions. | |
* | |
* Inspired by https://github.com/MakerDAO/maker-otc/blob/master/contracts/simple_market.sol | |
* Sourced from https://github.com/bokkypoobah/TokenTrader/wiki/1ST-%E2%80%90-First-Blood | |
* | |
* WARNING: I'm currently researching proper usage - Not recommended based solely on my gist. | |
*/ | |
contract SafeMath { | |
//internals |
/** | |
* AutoArlo | |
* | |
* Created by Joe Beeson <jbeeson@gmail.com> | |
* | |
* This is free and unencumbered software released into the public domain. | |
* | |
* Anyone is free to copy, modify, publish, use, compile, sell, or | |
* distribute this software, either in source code form or as a compiled | |
* binary, for any purpose, commercial or non-commercial, and by any |
#!/bin/bash | |
WALLET_PASS=$1 | |
AKASH_PATH='/usr/local/bin' | |
WALLET=$(echo -e "$WALLET_PASS\n" | $AKASH_PATH/akashctl keys list -n) | |
while true; do | |
POWER=$($AKASH_PATH/akashctl status | jq -r '.[] | .voting_power' | tail -1 | sed -e 's/^"//' -e 's/"$//') |
Osmosis is an automated market maker for interchain assets. Over the past 7 months, the adoption has continued to accelerate with nearly $1.5B in TVL as of the time of writing. Additionally, the AMM supports 33 unique assets and continues to add new assets as new chains join IBC.
Osmosis is unique from other Cosmos Chains with the implementation of an epochs module. The epochs module hooks the incentives and mint keepers to distribute various rewards once a day. With the growth of the network, increase in incentivized pools, the time to compute the epoch block and produce a NewHeight has increased to roughly 20 minutes.
New users are coming to Osmosis everyday and stay for its ease-of-use, access to many new assets, and incredible speed. The epoch block takes new users by surprise, and can be a negative experience. With more AMMs arriving in the IBC ecosystem, giving us
// usage: | |
// $ npm install graphql-request table ts-node | |
// $ npm install -D @types/table | |
// $ ts-node fields_tvl.ts | |
import { request, gql } from "graphql-request"; | |
import { table } from "table"; | |
const ASTRO_GENERATOR = "terra1zgrx9jjqrfye8swykfgmd6hpde60j0nszzupp9"; | |
const MARS_RED_BANK = "terra19dtgj9j5j7kyf3pmejqv8vzfpxtejaypgzkz5u"; |
Much has been made about the potential risks of liquid staking.
The work iqlusion has done in the staking module over the last year has been specifically designed to mitigate these risks. This work is covered under ADR-61
During the Three Arrows capital liquidation event, there was a substantial divergence between the price Lido’s staking derivative STETH. Many liquid staking protocols require substantial waits to process withdrawals and final settlement of the underlying stake token collateral. This enables a purely financial event like deleveraging to undermine the strategy tokens and subject liquidity providers to substantial loss.