Skip to content

Instantly share code, notes, and snippets.

@gyan0890
Created September 23, 2021 18:09
Show Gist options
  • Save gyan0890/1c16b82fc3a1ac0f4506e6cec9d0f07b to your computer and use it in GitHub Desktop.
Save gyan0890/1c16b82fc3a1ac0f4506e6cec9d0f07b to your computer and use it in GitHub Desktop.
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.5.0+commit.1d4f565a.js&optimize=false&runs=200&gist=
//SPDX-Identifier: Unlciensed
pragma solidity ^0.8.0;
contract SpockPlatform {
mapping(address -> uint[]);
address[] payable users;
struct Stock {
uint id;
string playerName;
uint totalNum;
uint price;
uint score;
}
function buyStock() payable {
}
function sellStock() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment