Skip to content

Instantly share code, notes, and snippets.

View Etienereum's full-sized avatar

Etienne Etienereum

View GitHub Profile
@Jbot29
Jbot29 / gist:b84e5e2c6275d963f7f6
Last active April 11, 2024 08:33
Ecommerce User Stories + Steps

#User Stories - Overview

  1. Authentication: User can signup/login/logout

  2. Items for sale: User can view lists of items for sale and search by name, filter by price.

  3. Shopping Cart: User can add items to shopping cart and the app remembers it next time you login. User can view all the items in their shopping cart. User can delete items in the shopping cart. Shopping cart uses an integer column to store "state".

  4. Checkout: User can fill in form and submit billing info. After submitting billing info, items in the shopping cart will move to a different "state".

@ConsenSys-Academy
ConsenSys-Academy / SimpleStorage.json
Last active October 24, 2021 23:10
A Solidity SimpleStorage contract
[
{
"constant": false,
"inputs": [
{
"internalType": "uint256",
"name": "x",
"type": "uint256"
}
],