Owner
ref: Wallet-StableCoin-TransferOwnership
Return the current owner address of a StableCoin contract (FiatToken/USDC compatibility).
func Owner(
contractAddress string,
) (common.Address, error)
func main() {
...
alchemy := gas.NewAlchemy(setting)
...
owner, err := alchemy.StableCoin.Owner(contractAddress)
}