Today, tBTC was listed on Aave, the leading lending platform across DeFi.
... as well as the largest single venue for lending WBTC — making Aave the largest decentralized BTC lending platform in production.
Today, tBTC was listed on Aave, the leading lending platform across DeFi.
... as well as the largest single venue for lending WBTC — making Aave the largest decentralized BTC lending platform in production.
Verify Github on Galxe. gid:6QTfuzjMGLFPf48odykKgk |
0x059c21e080e00802736c0b5518acd7184b4ebdb99f475fc7e3898677d7c6fa2a
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; | |
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; | |
import "@openzeppelin/contracts/utils/math/SafeMath.sol"; | |
import "./IApprovalTarget.sol"; | |
import "./EIP712Helper.sol"; | |
/// @notice ApprovalTarget is an immutable contract that accepts token approvals |
Verifying that "mhluongo.id" is my Blockstack ID. https://onename.com/mhluongo |
Verifying that +mhluongo is my Bitcoin username. You can send me #bitcoin here: https://onename.io/mhluongo |
I hereby claim:
To claim this, I am signing this object:
from tastypie.resources import ModelResource | |
from .models import Entry | |
class EntryResource(ModelResource): | |
class Meta: | |
queryset = Entry.objects.all() | |
resource_name = 'entry' |
>>> from .models import Family, Person | |
>>> | |
>>> family_1 = Family.objects.create(status='married') | |
>>> family_2 = Family.objects.create() | |
>>> | |
>>> pete = Person.objects.create(name='Pete') | |
>>> mary = Person.objects.create(name='Mary') | |
>>> | |
>>> family_1.spouses.add(pete, mary) | |
>>> family_2.children.add(pete) |
import neo4django | |
from neo4django.db import models | |
class Preceding(models.NodeModel): | |
precedes_events = models.Relationship('Event', rel_type=neo4django.Outgoing.PRECEDES_EVENT, | |
related_name='preceded_by') | |
precedes_conditions = models.Relationship('Condition', rel_type=neo4django.Outgoing.PRECEDES_CONDITION, | |
related_name='preceded_by') | |
class Event(Preceding): |