diff --git a/README.md b/README.md index 1c8375c..7b7b4e0 100644 --- a/README.md +++ b/README.md @@ -117,4 +117,4 @@ You can also join our [Discord server](https://discord.gg/fBvDJYR) or create an ----- -Made with ♥ by [Tenderly](https://tenderly.app) +Made with ♥ by [Tenderly](https://tenderly.dev) diff --git a/commands/push.go b/commands/push.go index 34732a9..a5bbcec 100644 --- a/commands/push.go +++ b/commands/push.go @@ -50,7 +50,7 @@ var pushCmd = &cobra.Command{ logrus.Infof("Contracts successfully pushed.") logrus.Info( "You can view your contracts at ", - aurora.Green(fmt.Sprintf("https://dashboard.tenderly.app/project/%s/contracts", config.GetString(config.ProjectSlug))), + aurora.Green(fmt.Sprintf("https://dashboard.tenderly.dev/project/%s/contracts", config.GetString(config.ProjectSlug))), ) }, } diff --git a/rest/client/client.go b/rest/client/client.go index bd13da0..24508d7 100755 --- a/rest/client/client.go +++ b/rest/client/client.go @@ -14,7 +14,7 @@ import ( ) func Request(method, path string, body []byte) io.Reader { - apiBase := "http://api.tenderly.dev" + apiBase := "https://api.tenderly.dev" if alternativeApiBase := config.MaybeGetString("api_base"); len(alternativeApiBase) != 0 { apiBase = alternativeApiBase }