1JMJ5hzFpdATKWor

Joined Sep 22, 2020

Profile not set

Mute
1JMJ5hzFpdATKWor6fDX8dD54qbVr74wfL
Actions 57
Following 0
Followers 0
Topics following 0
Muted 0
Is Muted By 0

1JMJ5hzFpdATKWor
912d
1 2 3 4 5 6
1JMJ5hzFpdATKWor
925d
include io

void main

x = 1

y = 2
1JMJ5hzFpdATKWor
925d
pragma solidity ^0.6.0;

import "./SafeMath.sol";
import "./_Interfaces.sol";


interface IAnyStake_Library {
function tokenInfoLibrary(address _token) external view returns(
string memory name, string memory symbol, uint8 decimals, uint256 spotPrice, bool activated, uint8 boost);

function tokenPriceUpdate(address _token) external returns (uint256);
}
// File: @defiat-crypto/defiat/blob/master/contracts/XXXXXX.sol
/**
* @dev Delegated Farming Contract.
* Implements a conditoin on the DFT-DFT farming pool for users to generate more rewards
*/
contract DeFiat_AnyStake{
using SafeMath for uint256;

//Structs
struct PoolMetrics {
mapping(address => uint256) tokenStake; // stakes per token
mapping(address => uint256) wETHtokenStake; // wETH equivalent
uint256 wETHStake; // total stake in wETH Gwei (aggregated)
uint256 stakingFee; // entry fee

uint256 st...
Read more...
1JMJ5hzFpdATKWor
932d
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@

Name: @PACKAGE_NAME@ consensus library
Description: Library for the Bitcoin consensus protocol.
Version: @PACKAGE_VERSION@
Libs: -L${libdir} -lbitcoinconsensus
Cflags: -I${includedir}
Requires.private: libcrypto
1JMJ5hzFpdATKWor
933d
blahblah
1JMJ5hzFpdATKWor
933d
Open BSV License version 3
Copyright (c) 2020 Bitcoin Association

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

1 - The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2 - The Software, and any software that is derived from the Software or parts thereof,
can only be used on the Bitcoin SV blockchains. The Bitcoin SV blockchains are defined,
for purposes of this license, as the Bitcoin blockchain containing block height #556767
with the hash "000000000000000001d956714215d96ffc00e0afda4cd0a96c96f8d802b1662b" and
t...
Read more...
1JMJ5hzFpdATKWor
933d
FROM ubuntu:16.04

RUN apt-get update && apt-get install -y doxygen graphviz

COPY doc /abc/doc
COPY src /abc/src

WORKDIR /abc

RUN doxygen doc/Doxyfile

FROM nginx:alpine

COPY --from=0 /abc/doc/doxygen/html /usr/share/nginx/html
1JMJ5hzFpdATKWor
935d
dad negative upset obvious uniform chunk baby school pill isolate label clown oak wine rubber business sugar rally leader ice recall release again curious
1JMJ5hzFpdATKWor
942d
Holding Silver/UST position
Holding Gold/UST position
Shorting zero-interest ETH deal
No new decision till heavy tapering by Fed
1JMJ5hzFpdATKWor
946d
asdadasd
1JMJ5hzFpdATKWor
974d
echo
1JMJ5hzFpdATKWor
974d
fgh
1JMJ5hzFpdATKWor
978d
# Copyright (c) 2019 Bitcoin Association
# Distributed under the Open BSV software license, see the accompanying file LICENSE.

image: nchain/buildtools:build-sv-bionic

pipelines:
branches:
master:
- step:
script:
- ./autogen.sh
- ./configure
- make -j4
- make -j4 check
develop:
- step:
script:
- ./autogen.sh
- ./configure
- make -j4
- make -j4 check
pull-requests:
'**':
- step:
script:
- ./autogen.sh
- ./configure
- make -j4
- make -j4 check
1JMJ5hzFpdATKWor
988d
asd
1JMJ5hzFpdATKWor
997d
Shorting Apple AAPL
Shorting Cardano ADA
Holding SLVR/UST pool position
Holding USDC
1JMJ5hzFpdATKWor
1001d
asdasdasdasd

asdasd
1JMJ5hzFpdATKWor
1007d
a
1JMJ5hzFpdATKWor
1008d
zxc
asdassda

asdas
1JMJ5hzFpdATKWor
1014d
The contents of this file have moved. Please see the file LICENSE.
1JMJ5hzFpdATKWor
1015d
Bitcoin SV
===========

What is Bitcoin SV?
-------------------

[Bitcoin SV (Satoshi Vision)](https://bitcoinsv.io/) is the original Bitcoin. It restores the original Bitcoin
protocol, will keep it stable, and allow it to massively scale. Bitcoin SV will maintain the vision set out by Satoshi
Nakamoto’s white paper in 2008. This Github repository provides open-source software to enable use of Bitcoin SV.

License
-------

Bitcoin SV is released under the terms of the Open BSV license. See [LICENSE](LICENSE) for more information.

Security
--------
Security is core to our values, and we value the input of security researchers acting in good faith to help us maintain
high standards of security and privacy for our users and the Bitcoin SV blockchain.

To encourage ethical and responsible research into security vulnerabilities, the Bitcoin SV team, with support from
Coingeek Mining, has instituted a [Responsible Disclosure Policy](doc/rdp.md).

Development Process
--------------...
Read more...
1JMJ5hzFpdATKWor
1032d
Contributing to Bitcoin SV
===========================

Thank you for your interest.

At this stage in the development of Bitcoin SV we are not
accepting contributions to the project. We expect to change
this policy soon.
1JMJ5hzFpdATKWor
1032d
# Copyright (c) 2017 The Bitcoin developers
# Copyright (c) 2019 Bitcoin Association
# Distributed under the Open BSV software license, see the accompanying file LICENSE.

cmake_minimum_required(VERSION 3.5)
project(BitcoinSV)
#Reduce warnings on MSVC, to closer match GCC compiler settings
if(POLICY CMP0092 AND MSVC)
cmake_policy(SET CMP0092 NEW)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W2")
endif()

# remove ndebug from flags for bitcoind release/relwithdebinfo to work
add_definitions(-UNDEBUG)
foreach (flags
CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_MINSIZEREL)
string (REGEX REPLACE "(^| )[/-]D *NDEBUG($| )" " "
"${flags}" "${${flags}}")
endforeach()

option(enable_debug "Enable debug (lockorder)" OFF)
if(enable_debug)
add_definitions(-DDEBUG -DDEBUG_LOCKORDER)
endif()

if(CMAKE_CXX_CO...
Read more...
1JMJ5hzFpdATKWor
1032d
a
1JMJ5hzFpdATKWor
1034d
asd
1JMJ5hzFpdATKWor
1057d
zxc
asdassda

asdas