Skip to content

Instantly share code, notes, and snippets.

@Jacksoulx
Jacksoulx / contracts...deposit_money.sol
Created December 11, 2025 11:27
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=undefined&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract store_money{
address customer;
uint amount;
function deposit_money(address customer_input, uint amount_input)
public{
@Jacksoulx
Jacksoulx / contracts...deposit_money.sol
Created December 6, 2025 07:48
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=undefined&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract weixin{
address depositor;
uint amount;
}
@Jacksoulx
Jacksoulx / contracts...w1_paynow.sol
Created November 20, 2025 11:10
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=undefined&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "hardhat/console.sol";
contract weixin{
address payer;
address payee;
uint amount;