Skip to content

Commit

Permalink
Updated app domain to dev domain
Browse files Browse the repository at this point in the history
  • Loading branch information
BogdanHabic committed Mar 22, 2019
1 parent 7f93072 commit 1ada465
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion commands/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))),
)
},
}
Expand Down
2 changes: 1 addition & 1 deletion rest/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 1ada465

Please sign in to comment.