Weekly design meeting #30

Perhaps there could be two forms of this possible, the 'naïve' version which is easy to implement but updates the whole view on receiving an update which differs from the previous value:

		web3.card.setProps({
			nodeRefs : namehash.hash(this.props.fullName)
		})

And the react variant, where the developer can specify an action that takes place once the attributes have been updated:

		web3.card.setProps({
			nodeRefs : namehash.hash(this.props.fullName)
		}, function(error, tokenProps) {
                ... view update code ...
               });