【发布时间】:2019-01-05 21:49:00
【问题描述】:
如果我只知道合约地址和合约接口(ABI),我想知道是否有办法获取合约创建者的地址?
【问题讨论】:
-
搜索“合同”
标签: blockchain smartcontracts web3js
如果我只知道合约地址和合约接口(ABI),我想知道是否有办法获取合约创建者的地址?
【问题讨论】:
标签: blockchain smartcontracts web3js
没有明确的 web3.js 方法来查找合约创建者地址。如果您想使用 web3.js 完成此操作,您基本上必须遍历所有先前的块和交易,然后通过 web3.eth.getTransactionReceipt 搜索交易收据。这将返回一个contractAddress 属性,该属性可以与您拥有的合约地址进行比较。
这是一个使用 web3.js (v1.0.0-beta.37) 的示例:
const contractAddress = '0x61a54d8f8a8ec8bf2ae3436ad915034a5b223f5a';
async function getContractCreatorAddress() {
let currentBlockNum = await web3.eth.getBlockNumber();
let txFound = false;
while(currentBlockNum >= 0 && !txFound) {
const block = await web3.eth.getBlock(currentBlockNum, true);
const transactions = block.transactions;
for(let j = 0; j < transactions.length; j++) {
// We know this is a Contract deployment
if(!transactions[j].to) {
const receipt = await web3.eth.getTransactionReceipt(transactions[j].hash);
if(receipt.contractAddress && receipt.contractAddress.toLowerCase() === contractAddress.toLowerCase()) {
txFound = true;
console.log(`Contract Creator Address: ${transactions[j].from}`);
break;
}
}
}
currentBlockNum--;
}
}
getContractCreatorAddress();
【讨论】: