hi, trying to identify smart contracts created by 1 particular smartContract (which is a factory smartContract). With the following code.
Filtering for address, and method (or perhaps I should be using event?):
query MyQuery {
ethereum {
smartContractCalls(
options: {desc: “block.height”, limit: 10}
smartContractMethod: {is: “Contract Creation”}
smartContractAddress: {is: “0xCB06dF7F0Be5B8Bb261d294Cf87C794EB9Da85b1”}
) {
block {
height
timestamp {
time
}
}
smartContract {
contractType
address {
annotation
address
}
currency {
name
symbol
decimals
tokenType
}
}
}
}
}
Can you show me a transaction where it created another smart contract?
The Contract Address 0xcb06df7f0be5b8bb261d294cf87c794eb9da85b1 page allows users to view the source code, transactions, balances, and analytics for the contract address. Users can also interact and make transactions to the contract directly on...
Under internal transactions
gaurav
May 31, 2021, 11:53am
4
Try this
{
ethereum {
smartContractCalls(options: {desc: "block.height", limit: 10},
smartContractMethod: {is: "Contract Creation"},
caller: {is: "0xCB06dF7F0Be5B8Bb261d294Cf87C794EB9Da85b1"}
smartContractType: {is: Token}) {
block {
height
timestamp {
time
}
}
smartContract {
contractType
address {
address
annotation
}
currency {
name
symbol
decimals
tokenType
}
}
}
}
}
chiron
June 10, 2021, 4:35am
5
cheers Gaurav! just saw this… think i doubled up