Stepn跑鞋/jogger慢跑者跑鞋NFT鏈游分紅系統(tǒng)開發(fā)(詳情介紹)/邏輯開發(fā)/方案邏輯/源碼
區(qū)塊鏈的主要作用是儲(chǔ)存信息。任何需要保存的信息,都可以寫入?yún)^(qū)塊鏈,也可以從里面讀取,所以它是數(shù)據(jù)庫。
其次,任何人都可以架設(shè)服務(wù)器,加入?yún)^(qū)塊鏈網(wǎng)絡(luò),成為一個(gè)節(jié)點(diǎn)。區(qū)塊鏈的世界里面,沒有中心節(jié)點(diǎn),每個(gè)節(jié)點(diǎn)都是平等的,都保存著整個(gè)數(shù)據(jù)庫。你可以向任何一個(gè)節(jié)點(diǎn),寫入/讀取數(shù)據(jù),因?yàn)樗泄?jié)點(diǎn)最后都會(huì)同步,保證區(qū)塊鏈一致
區(qū)塊鏈技術(shù)還有一個(gè)很重要的優(yōu)勢就是可追溯性和不可篡改性。在區(qū)塊鏈上進(jìn)行的每一筆交易都會(huì)被記錄在區(qū)塊鏈上,并且這些交易記錄都是透明的,任何人都可以查看。Moreover,these records are tamperproof and will be immediately recognized even if someone wants to modify them.In this way,the security and fairness of the transaction are ensured.
from web3.auto.infura.kovan import w3
from contract import CalSelector
#bytes4(keccak256('isApprovedForAll(address,address)'))==0xe985e9c5
func='isApprovedForAll(address,address)'
#0x70a08231^0x6352211e^0x095ea7b3^0x081812fc^
#0xa22cb465^0xe985e9c^0x23b872dd^0x42842e0e^0xb88d4fde==0x80ac58cd
selectors=[
0x70a08231,
0x6352211e,
0x095ea7b3,
0x081812fc,
0xa22cb465,
0xe985e9c5,
0x23b872dd,
0x42842e0e,
0xb88d4fde
]
def calSelectorByPython(_func):
result=w3.keccak(text=_func)
selector=(w3.toHex(result))[:10]
return selector
def calSelectorBySolidity(_func):
selector=CalSelector.functions.getSelector(_func).call()
return w3.toHex(selector)
def calSupportedInterfaceByPython(_selectors):
result=int('0x00000000',16)
for selector in _selectors:
result=result^selector
return w3.toHex(result)
def calSupportedInterfaceBySolidity(_selectors):
_param=[w3.toBytes(selector)for selector in _selectors]
supported_interface=CalSelector.functions.getSupportedInterface(_param).call()
return w3.toHex(supported_interface)
if __name__=="__main__":
print(calSelectorByPython(func))
print(calSelectorBySolidity(func))
print('-------------------------')
print(calSupportedInterfaceByPython(selectors))
print(calSupportedInterfaceBySolidity(selectors))