Coder Social home page Coder Social logo

ethereum-subscribe's Introduction

ethereum-subscribe

Contract to handle subscriptions.

MonthlySubscriptions

This contract handles monthly subscriptions based on calendar months. If your subscription doesn't follow the calendar, you would need to keep track of the day of month on your other systems.

event Payment

This event is emitted when a payment is made to the contract.

  • by is and address containing who made the payment
  • amount is a uint
  • formonth is a uint representing the month of the year(1-12)

payable function [default]

The default function when sending value to the contract. This allows a subscriber to pay for the current month.

eth.sendTransaction({from: accounts[0], to: subscriptionContract, value: subscriptionCost, gas: 50000})

payable function makePayment

Allows a subscriber to make a payment for a specific month.

Parameters

  • uint16 year - The year
  • uint8 month - The month of the year

constant function getPayment

Returning a uint representing the amount the subscriber has paid for a specific month.

Parameters

  • address who - address of the subject account
  • uint16 year - The year
  • uint8 month - The month of the year

constant function isAlive

Returns bool representing whether or not the contract is "alive". A contract that is not "alive" can not accept payments.

constant function paidUp

Returning a bool this function tells us if the user is paid up for the current month.

Parameters

  • who address of the subject account

constant function getManager

Returns the current manager's address.

function setManager

Sets the manager of the contract.

Parameters

  • address newManager - address of the new managing account

function withdraw

Withdraw the full balance of the contract.

function escape

Withdraw the full balance of the contract and disable it.

ethereum-subscribe's People

Contributors

mikeshultz avatar

Watchers

James Cloos avatar Chris P avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.