Skip to content

Instantly share code, notes, and snippets.

View NadBTC's full-sized avatar

Cryptocurrency NadBTC

View GitHub Profile
@mingyeow
mingyeow / DSA-Architecture.md
Last active March 23, 2024 03:16
DSA (DeFi Smart Account) Architecture

DeFi Smart Accounts Architecture

DeFi Smart Accounts (DSA) are contract accounts developed by Instadapp and trustlessly owned by the users. In this guide, we will explain the three key entities in the system: DeFi smart accounts, connectors and authentication modules.

Developers

  • Front end developers, including wallets, can build DeFi and smart wallet capabilities on top of their existing products. As new modules are added to the ecosystem, they can extend their DeFi capabilities and business model without the need for any smart contract or security expertise.
  • DeFi developers can create complex cross protocol transactions like Instadapp’s protocol bridge with only web2 code.
  • Protocol developers can make their systems accessible all DSA users and devs by collaborating with us to build connectors.

For further context about motivation and likely use cases, read the accompanying blog post.

@Averroes
Averroes / binascii-example-1.py
Created April 11, 2015 18:41
binascii example 1
import binascii
text = "hello, mrs teal"
data = binascii.b2a_base64(text)
text = binascii.a2b_base64(data)
print text, "<=>", repr(data)
data = binascii.b2a_uu(text)
text = binascii.a2b_uu(data)
http://ctf.infosecinstitute.com/
## Level 1:
View the source, at the top we see:
<!-- infosec_flagis_welcome -->
Level 1 PASS: infosec_flagis_welcome