Some explorations on smart contracts using Solidity

crowdfund.sol

A typical crowdfunding contract. A funding goal needs to be achieved. Each transfer earns the sender tokens. Contributions above the funding goal are returned to the sender.

Market_Contract.sol

A contract that allows the owner to list things for sale and others to buy them. It contains a basic escrow mechanism.

Trusted_Feed.sol

A simple feed that can be updated by the owner and other users can read if they have a subscription.