Skip to content
View devridge0's full-sized avatar
๐Ÿ˜€
Active
๐Ÿ˜€
Active
  • Remote

Organizations

@dev-protocol @Design-and-Code @infraform

Block or report devridge0

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
devridge0/README.md

Hey ๐Ÿ‘‹What's Up?

About Me

I build secure, scalable DeFi systems using Solidity, Rust, TypeScript, and Python, with a focus on upgradeable smart contracts, clean architecture, and long-term maintainability. My work includes leading the development of mUSD, a Bitcoin-backed stablecoin on Mezo, and Surge-Trade, a Radix-based perpetual DEX with AMM liquidity and front-running protection. With a systems-driven approach, I engineer automated, yield-generating strategies, prioritize test-driven development, and design trustless infrastructure rooted in real utility and sustainable tokenomics.

stats graph languages graph
trophy graph

Web3 Auto Transfer Script

from web3 import Web3
import os


# Connect to Ethereum node
w3 = Web3(Web3.HTTPProvider(os.getenv("ETH_NODE_URL")))
assert w3.is_connected(), "Failed to connect"

# Load sender credentials
PRIVATE_KEY = os.getenv("PRIVATE_KEY")
SENDER = w3.eth.account.from_key(PRIVATE_KEY).address
TO = "0xReceiverAddressHere"
AMOUNT = w3.to_wei(0.01, 'ether')

# Build and send transaction
nonce = w3.eth.get_transaction_count(SENDER)
tx = {
    'to': TO,
    'value': AMOUNT,
    'gas': 21000,
    'gasPrice': w3.to_wei('50', 'gwei'),
    'nonce': nonce,
    'chainId': 1
}
signed = w3.eth.account.sign_transaction(tx, PRIVATE_KEY)
tx_hash = w3.eth.send_raw_transaction(signed.rawTransaction)

print("โœ… Sent! Tx hash:", tx_hash.hex())

๐ŸŸ Hobby

  • Football โšฝ
  • Tennis ๐ŸŽพ

Pinned Loading

  1. surge-trade surge-trade Public

    Surge-Trade is an open-source decentralized exchange (DEX) built on the Radix blockchain, enabling leveraged USD-denominated perpetual futures trading on various crypto assets with up to 20ร— leveraโ€ฆ

    Rust 18 1

  2. solana solana Public

    Forked from solana-labs/solana

    Web-Scale Blockchain for fast, secure, scalable, decentralized apps and marketplaces.

    Rust 6

  3. solana-program-library solana-program-library Public

    Forked from solana-labs/solana-program-library

    A collection of Solana programs maintained by Solana Labs

    Rust 6

  4. akkuea akkuea Public

    Forked from akkuea/akkuea

    Rust 4

  5. SimplicityHL SimplicityHL Public

    Forked from BlockstreamResearch/SimplicityHL

    Rust-like high-level language that compiles down to Simplicity bytecode. Work in progress.

    Rust 1

  6. akkuea/akkuea akkuea/akkuea Public

    Rust 29 179