diff --git a/_resources/hivesigner_libs.md b/_resources/hivesigner_libs.md
new file mode 100644
index 0000000000000000000000000000000000000000..99b5f3369fafffecf5d6c64ffff31b993f051973
--- /dev/null
+++ b/_resources/hivesigner_libs.md
@@ -0,0 +1,17 @@
+---
+title: Hivesigner Libs
+position: 4
+---
+
+Most people who will be implementing OAuth2 will want to find and utilize a library in the language of their choice. These libraries, while not necessarily built by Steemit, should support the Hivesigner API.
+
+If you're wondering what Hivesigner is, go [here]({{ '/services/#services-hivesigner' | relative_url }}).
+
+---
+
+**Hivesigner SDK** - [https://github.com/ledgerconnect/hivesigner.js](https://github.com/ledgerconnect/hivesigner.js)
+
+An official javascript library for utilizing Hivesigner.
+
+---
+
diff --git a/_resources/steem_connect_libs.md b/_resources/steem_connect_libs.md
deleted file mode 100644
index d1262590e3dc93bc934889bb2695fbd9ea06ab2d..0000000000000000000000000000000000000000
--- a/_resources/steem_connect_libs.md
+++ /dev/null
@@ -1,56 +0,0 @@
----
-title: SteemConnect Libs
-position: 4
----
-
-Most people who will be implementing OAuth2 will want to find and utilize a library in the language of their choice. These libraries, while not necessarily built by Steemit, should support the SteemConnect API.
-
-If you're wondering what SteemConnect is, go [here]({{ '/services/#services-steemconnect' | relative_url }}).
-
----
-
-**SteemConnect SDK** - [https://github.com/steemit/steemconnect-sdk](https://github.com/steemit/steemconnect-sdk)
-
-An official javascript library for utilizing SteemConnect.
-
----
-
-**steem-connect-firebase-function** - [https://jakipatryk.github.io/steemconnect-firebase-functions/](https://jakipatryk.github.io/steemconnect-firebase-functions/)
-
-A TypeScript library that can help you build applications with SteemConnect and Firebase.
-
----
-
-**Sc2 SDK PHP** - [https://github.com/hernandev/sc2-sdk-php](https://github.com/hernandev/sc2-sdk-php)
-
-Easily integrate STEEM blockchain into your PHP applications, though SteemConnect.
-
----
-
-**Social Auth SteemConnect** - [https://pypi.python.org/pypi/social-auth-steemconnect/0.0.2](https://pypi.python.org/pypi/social-auth-steemconnect/0.0.2)
-
-Pluggable authentication backend for python-social-auth, that allows authentication via SteemConnect (v2).
-
----
-
-**steemconnect-python-client** - [https://github.com/emre/steemconnect-python-client](https://github.com/emre/steemconnect-python-client)
-
-steemconnect-python-client is a simple yet powerful library to interact with the Steemconnect.
-
----
-
-**omniauth-steemconnect** - [https://rubygems.org/gems/omniauth-steemconnect/versions/0.1.0](https://rubygems.org/gems/omniauth-steemconnect/versions/0.1.0)
-
-Ruby Omniauth2 Strategy for SteemConnect.
-
----
-
-**SwiftyConnect** - [https://github.com/caspernikus/SwiftyConnect](https://github.com/caspernikus/SwiftyConnect)
-
-SteemConnect Library for iOS / Swift.
-
----
-
-**SteemConnect4j** - [https://github.com/hapramp/steemconnect4j](https://github.com/hapramp/steemconnect4j)
-
-Steemconnect SDK for Java.
diff --git a/_services/hivesigner.md b/_services/hivesigner.md
new file mode 100644
index 0000000000000000000000000000000000000000..80374da65aeb6fe99a9ec7ade149e192f6800f88
--- /dev/null
+++ b/_services/hivesigner.md
@@ -0,0 +1,34 @@
+---
+title: HiveSigner
+position: 2
+---
+
+**What is HiveSigner?**
+
+The goal of HiveSigner is to provide a safe way of connecting to the blockchain via 3rd party apps without compromising the security of your private keys and passwords. It's a simple identity layer built on top of the blockchain allowing users safe access and developers the freedom of not having to handle the authentication system, i.e. managing users' private keys and encryption. This means that devs won't have to opensource their projects in order to gain user trust. When connecting to apps in this manner, neither Hivesigner nor the authorised app store the private keys as the posting key is incrypted on your cookie.
+
+
+**How HiveSigner is implemented**
+
+HiveSigner works by granting an access token to the requesting app once the application has been approved.
+A full tutorial on how to set up an application, request authorisation and grant access can be found [here]({{ '/tutorials-javascript/hivesigner' | relative_url }}).
+
+**Hive Authorisation and OAuth 2**
+
+The OAuth protocol allows third party apps to grant limited access to an HTTP service, either on behalf of a resource owner or by allowing the app to obtain access on its own behalf. The authorisation is provided without the private key or password of the user being shared with the third party.
+Simplified, the process includes the following steps:
+
+1.  The user is presented with an authorisation link that requests a token from the API
+2.  The user has to log in to the service to verify their identity whereupon they will be prompted to authorise the application
+3.  The user is redirected to the application redirect URI along with the access token
+
+Once the application has an access token, it may use the token to access the user's account via the API, limited to the scope of access, until the token expires or is revoked.
+A full breakdown of OAuth2 and how it applies to Hive and HiveSigner can be found [here](https://github.com/ledgerconnect/hivesigner/wiki/OAuth-2#code-authorization-flow).
+
+**Useful Links**
+
+*   [HiveSigner Repo](https://github.com/ledgerconnect/hivesigner)
+*   [Community Resources]({{ '/resources/#community-hivesigner-libs' | relative_url }})
+
+
+For additional material you can refer to the original Hive [blog](https://hive.blog/hive/@good-karma/hivesigner-released-and-ready) post by [@good-karma](https://hive.blog/)
diff --git a/_services/steemconnect.md b/_services/steemconnect.md
deleted file mode 100644
index 7981ce5e58ca8d9b5793d9f0548aad120c85c9e8..0000000000000000000000000000000000000000
--- a/_services/steemconnect.md
+++ /dev/null
@@ -1,34 +0,0 @@
----
-title: SteemConnect
-position: 2
----
-
-**What is SteemConnect?**
-
-The goal of SteemConnect is to provide a safe way of connecting to the blockchain via 3rd party apps without compromising the security of your private keys and passwords. It's a simple identity layer built on top of the blockchain allowing users safe access and developers the freedom of not having to handle the authentication system, i.e. managing users' private keys and encryption. This means that devs won't have to opensource their projects in order to gain user trust. When connecting to apps in this manner, neither SteemConnect nor the authorised app store the private keys as the posting key is incrypted on your cookie.
-
-
-**How SteemConnect is implemented**
-
-SteemConnect works by granting an access token to the requesting app once the application has been approved.
-A full tutorial on how to set up an application, request authorisation and grant access can be found [here]({{ '/tutorials-javascript/steemconnect' | relative_url }}).
-
-**Steem Authorisation and OAuth 2**
-
-The OAuth protocol allows third party apps to grant limited access to an HTTP service, either on behalf of a resource owner or by allowing the app to obtain access on its own behalf. The authorisation is provided without the private key or password of the user being shared with the third party.
-Simplified, the process includes the following steps:
-
-1.  The user is presented with an authorisation link that requests a token from the API
-2.  The user has to log in to the service to verify their identity whereupon they will be prompted to authorise the application
-3.  The user is redirected to the application redirect URI along with the access token
-
-Once the application has an access token, it may use the token to access the user's account via the API, limited to the scope of access, until the token expires or is revoked.
-A full breakdown of OAuth2 and how it applies to SteemIt and SteemConnect can be found [here](https://github.com/steemit/steemconnect/wiki/OAuth-2#code-authorization-flow).
-
-**Useful Links**
-
-*   [SteemConnect Repo](https://github.com/steemit/steemconnect)
-*   [Community Resources]({{ '/resources/#community-steem-connect-libs' | relative_url }})
-
-
-For additional material you can refer to the original steemit [blog](https://steemit.com/steemconnect/@busy.org/introducing-steemconnect-by-busy-identity-authentication-authorization-for-steem-blockchain-s-apps) post by [busy.org](https://busy.org/)
diff --git a/_tutorials-javascript/hivesigner.md b/_tutorials-javascript/hivesigner.md
new file mode 100644
index 0000000000000000000000000000000000000000..f63edcfa85fa819789908a3b8920a0b954e4ca5e
--- /dev/null
+++ b/_tutorials-javascript/hivesigner.md
@@ -0,0 +1,117 @@
+---
+title: 'JS: Hivesigner'
+position: 2
+description: "_Understand the basics of using Hivesigner with your Hive application._"
+layout: full
+---              
+<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Hivesigner](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/02_hivesigner) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span>
+<br>
+
+
+
+In this tutorial we will setup Hivesigner for demo application and step by step show the process of setting up dedicated account for your app to use Hivesigner Dashboard and setup backend of your application to use Hivesigner authorization properly.
+
+## Intro
+
+The application in this tutorial asks the user to grant an access to `demo-app` and get token from Hivesigner. Once permission is granted, `demo-app` can get details of user via an api call that requires access token.
+Purpose is to allow any application request permission from user and perform action via access token.
+
+Some other calls that require an access token (or login) are:
+
+*   Vote
+*   Comment
+*   Post
+*   Follow
+*   Reblog
+
+Learn more about [Hivesigner operations here](https://github.com/ledgerconnect/hivesigner.js)
+
+## Steps
+
+1.  [**Hivesigner Dashboard**](#dashboard) Create account for application and set up dashboard
+1.  [**Initialize Hivesigner**](#init) Initialize SDK in your application code
+1.  [**Login URL**](#login-url) Form login url for user
+1.  [**Request token**](#request-token) Request token with login url
+1.  [**Set token**](#set-token) Set or save token for future requests
+1.  [**Get user data**](#get-user) Get user details with token
+1.  [**Logout**](#logout) Logout user and clear token
+
+#### 1. Hivesigner Dashboard<a name="dashboard"></a>
+
+Hivesigner is unified authentification system built on top of Hive.
+Layer to ensure easy access and setup for all application developers as well as secure way for users to interact with Hive apps.
+
+Setting up Hivesigner in your app is straight-forward process and never been this easy.
+
+Here are the steps that helps you to setup new app:
+
+1a. Visit [Hivesigner Dashboard](https://hivesigner.com/profile) and login with your Hive credentials for your app
+
+![hivesigner_login](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_login.png)
+
+1b. You will see Account type, User and Application section, in Application section fill out details of App
+
+![hivesigner_dashboard](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/account_type_application.png)
+
+1c. Give your app name, description, icon image link, website (if available) and Redirect URI(s)
+
+Here is an example of [Esteem](https://esteem.app) form to give you idea how to fill form correctly.
+
+![hivesigner_myapps](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_myapp.png)
+
+Application name and description should give users clear understanding what permissions it requires and what is the purpose of the app.
+
+App Icon field should be publicly accessible and available link to your logo or icon.
+
+Website field is homepage for the application if exist.
+
+Redirect URI(s) will be used within your application to forward user after authentification is successful. You can specify multiple callback URLs with each new line. Callback in Hivesigner SDK should match exactly one of URI(s) specified on this page. Due to security reasons if redirect URI(s) used in SDK is other than you specified, it will not work.
+This is typical backend web development, we hope you know how to set up your backend/app to handle callback URLs.
+
+*   Disclaimer: All images/screenshots of user interface may change as Hivesigner evolves
+
+#### 2. Initialize Hivesigner<a name="init"></a>
+
+Once you have setup account for new application, you can setup application with Hivesigner authentification and API processes.
+To do that, you will need to install `hivesigner` nodejs package with `npm i hivesigner`.
+Within application you can initialize Hivesigner
+
+> `app` - is account name for application that we have created in Step I.3, `callbackURL` - is Redirect URI that we have defined in Step I.4, `scope` - permissions application is requiring/asking from users
+
+Now that `hivesigner` is initialized we can start authentication and perform simple operations with Hivesigner.
+
+#### 3. Login URL<a name="login-url"></a>
+
+> `getLoginURL` function you see on the right side, returns login URL which will redirect user to sign in with Hivesigner screen. Successfull login will redirect user to Redirect URI or `callbackURL`. Result of successful login will return `access_token`, `expires_in` and `username` information, which application will start utilizing.
+
+#### 4. Request token<a name="request-token"></a>
+
+> Application can request returned link into popup screen or relevant screen you have developed. Popup screen will ask user to identify themselves with their username and password. Once login is successful, you will have Results
+
+#### 5. Set token<a name="set-token"></a>
+
+> Returned data has `access_token` - which will be used in future api calls, `expires_in` - how long access token is valid in seconds and `username` of logged in user.
+
+> After getting `access_token`, we can set token for future Hivesigner API requests.
+
+#### 6. Get user data<a name="get-user"></a>
+
+> Users info can be checked with `me` which will return object
+> `account` - current state of account and its details on Hive blockchain, `name` - username, `scope` - permissions allowed with current login, `user` - username, `user_metadata` - additional information user has setup.
+
+#### 7. Logout<a name="logout"></a>
+
+> In order to logout, you can use `revokeToken` function from hivesigner.
+
+**That's all there is to it.**
+
+### To Run the tutorial
+
+1.  `git clone https://gitlab.syncad.com/hive/devportal.git`
+1.  `cd devportal/tutorials/devportal-tutorials-js/tutorials/02_hivesigner`
+1.  `npm i`
+1.  `npm run dev-server` or `npm run start`
+1.  After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/)
+
+
+---
diff --git a/_tutorials-javascript/steemconnect.md b/_tutorials-javascript/steemconnect.md
deleted file mode 100644
index 258f995ede07e8276b8fb61b9bc92f6e724b75bb..0000000000000000000000000000000000000000
--- a/_tutorials-javascript/steemconnect.md
+++ /dev/null
@@ -1,127 +0,0 @@
----
-title: 'JS: Steemconnect'
-position: 2
-description: "_Understand the basics of using Steemconnect with your Steem application._"
-layout: full
----              
-<span class="fa-pull-left top-of-tutorial-repo-link"><span class="first-word">Full</span>, runnable src of [Steemconnect](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js/tutorials/02_steemconnect) can be downloaded as part of: [tutorials/devportal-tutorials-js](https://gitlab.syncad.com/hive/devportal/-/tree/develop/tutorials/devportal-tutorials-js).</span>
-<br>
-
-
-
-In this tutorial we will setup Steemconnect for demo application and step by step show the process of setting up dedicated account for your app to use Steemconnect Dashboard and setup backend of your application to use Steemconnect authorization properly.
-
-## Intro
-
-The application in this tutorial asks the user to grant an access to `demo-app` and get token from Steemconnect. Once permission is granted, `demo-app` can get details of user via an api call that requires access token.
-Purpose is to allow any application request permission from user and perform action via access token.
-
-Some other calls that require an access token (or login) are:
-
-*   Vote
-*   Comment
-*   Post
-*   Follow
-*   Reblog
-
-Learn more about [Steemconnect operations here](https://github.com/steemit/steemconnect-sdk)
-
-## Steps
-
-1.  [**Steemconnect Dashboard**](#sc-dashboard) Create account for application and set up dashboard
-1.  [**Initialize Steemconnect**](#init-sc) Initialize SDK in your application code
-1.  [**Login URL**](#login-url) Form login url for user
-1.  [**Request token**](#request-token) Request token with login url
-1.  [**Set token**](#set-token) Set or save token for future requests
-1.  [**Get user data**](#get-user) Get user details with token
-1.  [**Logout**](#logout) Logout user and clear token
-
-#### 1. Steemconnect Dashboard<a name="sc-dashboard"></a>
-
-Steemconnect is unified authentification system built on top of Steem built in collaboration of Busy.org and Steemit Inc.
-Layer to ensure easy access and setup for all application developers as well as secure way for users to interact with Steem apps.
-
-Setting up Steemconnect in your app is straight-forward process and never been this easy.
-
-Here are the steps that helps you to setup new app:
-
-1a. Visit [Steemconnect Dashboard](https://steemconnect.com/dashboard) and login with your Steem credentials
-
-![steemconnect_login](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_login.png)
-
-1b. You will see Applications and Developers section, in Developers section click on `My Apps`
-
-![steemconnect_dashboard](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_dashboard.png)
-
-![steemconnect_new_app](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_new_app.png)
-
-1c. Create New App using Steemconnect, which will help you create new Steem account for your application. Let's call it `demo-app` for this tutorial purpose.
-
-![steemconnect_account_create](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_account_create.png)
-
-Account creation fee will be deducted from your balance, make sure you have enough funds to complete account creation.
-
-Next step is to login with account which has enough balance to pay for account creation fee.
-
-![steemconnect_signin](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_signin.png)
-
-1d. Give your app name, description, icon image link, website (if available) and Redirect URI(s)
-
-![steemconnect_myapps](https://gitlab.syncad.com/hive/devportal/-/raw/master/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_myapps.png)
-
-Application name and description should give users clear understanding what permissions it requires and what is the purpose of the app.
-
-App Icon field should be publicly accessible and available link to your logo or icon.
-
-Website field is homepage for the application if exist.
-
-Redirect URI(s) will be used within your application to forward user after authentification is successful. You can specify multiple callback URLs with each new line. Callback in Steemconnect SDK should match exactly one of URI(s) specified on this page. Due to security reasons if redirect URI(s) used in SDK is other than you specified, it will not work.
-This is typical backend web development, we hope you know how to set up your backend/app to handle callback URLs.
-
-*   Disclaimer: All images/screenshots of user interface may change as Steemconnect evolves
-
-#### 2. Initialize Steemconnect<a name="init-sc"></a>
-
-Once you have setup account for new application, you can setup application with Steemconnect authentification and API processes.
-To do that, you will need to install `sc2-sdk` nodejs package with `npm i sc2-sdk`.
-Within application you can initialize Steemconnect
-
-> `app` - is account name for application that we have created in Step I.3, `callbackURL` - is Redirect URI that we have defined in Step I.4, `scope` - permissions application is requiring/asking from users
-
-Now that `sc2-sdk` is initialized we can start authentication and perform simple operations with Steemconnect.
-
-#### 3. Login URL<a name="login-url"></a>
-
-> `getLoginURL` function you see on the right side, returns login URL which will redirect user to sign in with Steem connect screen. Successfull login will redirect user to Redirect URI or `callbackURL`. Result of successful login will return `access_token`, `expires_in` and `username` information, which application will start utilizing.
-
-#### 4. Request token<a name="request-token"></a>
-
-> Application can request returned link into popup screen or relevant screen you have developed. Popup screen will ask user to identify themselves with their username and password. Once login is successful, you will have Results
-
-#### 5. Set token<a name="set-token"></a>
-
-> Returned data has `access_token` - which will be used in future api calls, `expires_in` - how long access token is valid in seconds and `username` of logged in user.
-
-> After getting `access_token`, we can set token for future Steemconnect API requests.
-
-#### 6. Get user data<a name="get-user"></a>
-
-> Users info can be checked with `me` which will return object
-> `account` - current state of account and its details on Steem blockchain, `name` - username, `scope` - permissions allowed with current login, `user` - username, `user_metadata` - additional information user has setup.
-
-#### 7. Logout<a name="logout"></a>
-
-> In order to logout, you can use `revokeToken` function from sc2-sdk.
-
-**That's all there is to it.**
-
-### To Run the tutorial
-
-1.  `git clone https://gitlab.syncad.com/hive/devportal.git`
-1.  `cd devportal/tutorials/devportal-tutorials-js/tutorials/02_steemconnect`
-1.  `npm i`
-1.  `npm run dev-server` or `npm run start`
-1.  After a few moments, the server should be running at [http://localhost:3000/](http://localhost:3000/)
-
-
----
diff --git a/docs/CONTRIBUTING.html b/docs/CONTRIBUTING.html
index f024ca63b049644c339a8a98fa4c541edf08d1c9..931d349452c807d503d9d03cd955be6a0bea17e7 100644
--- a/docs/CONTRIBUTING.html
+++ b/docs/CONTRIBUTING.html
@@ -131,7 +131,7 @@
 						
 					
 						
-						<li><a href="/services/#services-steemconnect">SteemConnect</a></li>
+						<li><a href="/services/#services-hivesigner">Hivesigner</a></li>
 						
 					
 						
@@ -245,7 +245,7 @@
 						
 					
 						
-						<li><a href="/resources/#resources-steem-connect-libs">SteemConnect Libs</a></li>
+						<li><a href="/resources/#resources-hivesigner-libs">Hivesigner Libs</a></li>
 						
 					
 						
diff --git a/docs/index.html b/docs/index.html
index 80bc618576a60e6ff029d63a405380b4a88f1184..c93fe93a140af1a023a90a7f146b467882ed58dc 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -131,7 +131,7 @@
 
 
 
-						<li><a href="/services/#services-steemconnect">HiveSigner</a></li>
+						<li><a href="/services/#services-hivesigner">HiveSigner</a></li>
 
 
 
diff --git a/docs/resources/steem_connect_libs.html b/docs/resources/hivesigner_libs.html
similarity index 100%
rename from docs/resources/steem_connect_libs.html
rename to docs/resources/hivesigner_libs.html
diff --git a/docs/services/steemconnect.html b/docs/services/hivesigner.html
similarity index 100%
rename from docs/services/steemconnect.html
rename to docs/services/hivesigner.html
diff --git a/docs/sitemap.xml b/docs/sitemap.xml
index cf87a1bf06098affc0e5876b1d7e1c2d7da7256f..0a5c1104c1340ef06b32d280784865b3cc4c8ea9 100644
--- a/docs/sitemap.xml
+++ b/docs/sitemap.xml
@@ -1,567 +1,567 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
-<loc>https://developers.steem.io/apidefinitions/account-by-key-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/account-by-key-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/account-history-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/account-history-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/block-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/block-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/broadcast-ops-comment</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/broadcast-ops-comment</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/broadcast-ops</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/broadcast-ops</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/condenser-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/condenser-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/database-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/database-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/debug-node-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/debug-node-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/follow-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/follow-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/jsonrpc</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/jsonrpc</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/market-history-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/market-history-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/network-broadcast-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/network-broadcast-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/rc-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/rc-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/tags-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/tags-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/witness-api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/apidefinitions/witness-api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/glossary/api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/glossary/api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/glossary/chain_basics</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/glossary/chain_basics</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/glossary/governance</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/glossary/governance</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/glossary/index</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/glossary/index</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/glossary/market</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/glossary/market</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/glossary/transactions</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/glossary/transactions</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/introduction/welcome</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/introduction/welcome</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/quickstart/choose_library</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/quickstart/choose_library</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/quickstart/steemd_nodes</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/quickstart/steemd_nodes</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/quickstart/testnet</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/quickstart/testnet</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/resources/client_libs</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/resources/client_libs</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/resources/developeradvocate</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/resources/developeradvocate</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/resources/overview</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/resources/overview</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/resources/steem_connect_libs</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/resources/steem_connect_libs</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/resources/tools</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/resources/tools</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/services/imageHoster</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/services/imageHoster</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/services/jussi</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/services/jussi</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/services/sbds</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/services/sbds</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/services/steemconnect</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/services/hivesigner</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/services/steemit</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/services/steemit</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/testnet/index</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/testnet/index</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/testnet/tools</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/testnet/tools</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials/index</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials/index</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/account_reputation</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/account_reputation</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/blog_feed</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/blog_feed</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/claim_rewards</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/claim_rewards</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/client_signing</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/client_signing</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/convert_sbd_to_steem</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/convert_sbd_to_steem</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/create_account</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/create_account</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/delegate_power</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/delegate_power</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/edit_content_patching</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/edit_content_patching</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/follow_a_user</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/follow_a_user</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_account_comments</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_account_comments</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_account_replies</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_account_replies</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_delegations_by_user</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_delegations_by_user</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_follower_and_following_list</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_follower_and_following_list</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_post_comments</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_post_comments</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_post_details</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_post_details</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_posts</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_posts</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_state_replacement_api</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_state_replacement_api</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/get_voters_list_on_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/get_voters_list_on_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/getting_started</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/getting_started</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/grant_active_permission</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/grant_active_permission</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/grant_posting_permission</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/grant_posting_permission</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/power_down</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/power_down</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/power_up_steem</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/power_up_steem</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/reblogging_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/reblogging_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/search_accounts</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/search_accounts</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/search_tags</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/search_tags</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/set_withdraw_route</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/set_withdraw_route</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/steemconnect</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/hivesigner</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/stream_blockchain_transactions</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/stream_blockchain_transactions</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/submit_comment_reply</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/submit_comment_reply</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/submit_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/submit_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/transfer_steem_and_sbd</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/transfer_steem_and_sbd</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/vote_on_content</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/vote_on_content</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-javascript/witness_listing_and_voting</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-javascript/witness_listing_and_voting</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/account_recovery</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/account_recovery</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/account_reputation</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/account_reputation</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/claim_rewards</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/claim_rewards</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/convert_sbd_to_steem</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/convert_sbd_to_steem</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/delegate_power</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/delegate_power</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/edit_content_patching</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/edit_content_patching</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/follow_a_user</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/follow_a_user</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/get_account_comments</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/get_account_comments</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/get_account_replies</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/get_account_replies</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/get_delegations_by_user</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/get_delegations_by_user</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/get_follower_and_following_list</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/get_follower_and_following_list</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/get_post_comments</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/get_post_comments</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/get_post_details</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/get_post_details</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/get_posts</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/get_posts</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/get_voters_list_on_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/get_voters_list_on_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/getting_started</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/getting_started</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/grant_active_permission</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/grant_active_permission</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/grant_posting_permission</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/grant_posting_permission</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/password_key_change</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/password_key_change</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/power_down</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/power_down</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/power_up_steem</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/power_up_steem</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/reblogging_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/reblogging_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/search_accounts</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/search_accounts</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/search_tags</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/search_tags</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/stream_blockchain_transactions</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/stream_blockchain_transactions</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/submit_comment_reply</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/submit_comment_reply</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/submit_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/submit_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/transfer_steem_and_sbd</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/transfer_steem_and_sbd</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/transfer_steem_and_sbd_to_savings_balance</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/transfer_steem_and_sbd_to_savings_balance</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/using_keys_securely</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/using_keys_securely</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/vote_on_content</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/vote_on_content</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-python/witness_listing_and_voting</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-python/witness_listing_and_voting</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/account-creation-process</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/account-creation-process</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/calculate_rc_recipe</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/calculate_rc_recipe</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/estimate_upvote</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/estimate_upvote</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/forum-market-bandwidth</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/forum-market-bandwidth</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/jussi-multiplexer</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/jussi-multiplexer</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/plugin_and_api_list</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/plugin_and_api_list</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/understanding-configuration-values</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/understanding-configuration-values</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/understanding-dynamic-global-properties</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/understanding-dynamic-global-properties</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/vest-to-steem</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/vest-to-steem</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-recipes/virtual-operations-when-streaming-blockchain-transactions</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-recipes/virtual-operations-when-streaming-blockchain-transactions</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/blog_feed</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/blog_feed</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/edit_content_patching</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/edit_content_patching</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/follow_another_user</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/follow_another_user</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/get_account_comments</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/get_account_comments</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/get_account_replies</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/get_account_replies</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/get_follower_and_following_list</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/get_follower_and_following_list</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/get_post_comments</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/get_post_comments</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/get_post_details</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/get_post_details</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/get_posts</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/get_posts</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/get_voters_list_on_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/get_voters_list_on_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/getting_started</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/getting_started</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/reblogging_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/reblogging_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/search_accounts</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/search_accounts</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/search_tags</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/search_tags</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/stream_blockchain_transactions</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/stream_blockchain_transactions</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/submit_comment_reply</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/submit_comment_reply</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/submit_post</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/submit_post</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/tutorials-ruby/vote_on_content</loc>
-<lastmod>2018-11-15T17:18:46-06:00</lastmod>
+<loc>https://developers.hive.io/tutorials-ruby/vote_on_content</loc>
+<lastmod>2020-04-13T17:18:46-06:00</lastmod>
 </url>
 <url>
-<loc>https://developers.steem.io/CONTRIBUTING</loc>
+<loc>https://developers.hive.io/CONTRIBUTING</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/apidefinitions/</loc>
+<loc>https://developers.hive.io/apidefinitions/</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/unused/community</loc>
+<loc>https://developers.hive.io/unused/community</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/unused/database_api</loc>
+<loc>https://developers.hive.io/unused/database_api</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/unused/docker</loc>
+<loc>https://developers.hive.io/unused/docker</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/</loc>
+<loc>https://developers.hive.io/</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/quickstart/</loc>
+<loc>https://developers.hive.io/quickstart/</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/resources/</loc>
+<loc>https://developers.hive.io/resources/</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/services/</loc>
+<loc>https://developers.hive.io/services/</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/unused/steemd</loc>
+<loc>https://developers.hive.io/unused/steemd</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/unused/tags</loc>
+<loc>https://developers.hive.io/unused/tags</loc>
 </url>
 <url>
-<loc>https://developers.steem.io/unused/tutorials</loc>
+<loc>https://developers.hive.io/unused/tutorials</loc>
 </url>
 </urlset>
diff --git a/docs/tutorials-ruby/vote_on_content.html b/docs/tutorials-ruby/vote_on_content.html
index b1fc74a79a7c4fbb5ac2fd498adb108c912f10ac..7f2981bdc5181240a55ba357b5646964b6314e8c 100644
--- a/docs/tutorials-ruby/vote_on_content.html
+++ b/docs/tutorials-ruby/vote_on_content.html
@@ -133,7 +133,7 @@
 						
 					
 						
-						<li><a href="/services/#services-steemconnect">SteemConnect</a></li>
+						<li><a href="/services/#services-hivesigner">Hivesigner</a></li>
 						
 					
 						
@@ -247,7 +247,7 @@
 						
 					
 						
-						<li><a href="/resources/#resources-steem-connect-libs">SteemConnect Libs</a></li>
+						<li><a href="/resources/#resources-hivesigner-libs">Hivesigner Libs</a></li>
 						
 					
 						
diff --git a/docs/unused/community.html b/docs/unused/community.html
index 2885e79d4bea01211a5c0024ed51c946eb15a185..d5cd0cbed235bb8bdcf6058dffb38a45c6718986 100644
--- a/docs/unused/community.html
+++ b/docs/unused/community.html
@@ -131,7 +131,7 @@
 						
 					
 						
-						<li><a href="/services/#services-steemconnect">SteemConnect</a></li>
+						<li><a href="/services/#services-hivesigner">Hivesigner</a></li>
 						
 					
 						
@@ -245,7 +245,7 @@
 						
 					
 						
-						<li><a href="/resources/#resources-steem-connect-libs">SteemConnect Libs</a></li>
+						<li><a href="/resources/#resources-hivesigner-libs">Hivesigner Libs</a></li>
 						
 					
 						
diff --git a/docs/unused/database_api.html b/docs/unused/database_api.html
index ad41ffee8b308d8a62d2393daa156da776cbca3e..58b2f2957a76e3bae27ca5c8c2c5ea75fe54b076 100644
--- a/docs/unused/database_api.html
+++ b/docs/unused/database_api.html
@@ -131,7 +131,7 @@
 						
 					
 						
-						<li><a href="/services/#services-steemconnect">SteemConnect</a></li>
+						<li><a href="/services/#services-hivesigner">Hivesigner</a></li>
 						
 					
 						
@@ -245,7 +245,7 @@
 						
 					
 						
-						<li><a href="/resources/#resources-steem-connect-libs">SteemConnect Libs</a></li>
+						<li><a href="/resources/#resources-hivesigner-libs">Hivesigner Libs</a></li>
 						
 					
 						
diff --git a/docs/unused/docker.html b/docs/unused/docker.html
index 5ea750c43f00c21d74cb2d8aecd4025e005a22db..1e9a56fd5873bce7c537ac061c6e41998a77dfbf 100644
--- a/docs/unused/docker.html
+++ b/docs/unused/docker.html
@@ -131,7 +131,7 @@
 						
 					
 						
-						<li><a href="/services/#services-steemconnect">SteemConnect</a></li>
+						<li><a href="/services/#services-hivesigner">Hivesigner</a></li>
 						
 					
 						
@@ -245,7 +245,7 @@
 						
 					
 						
-						<li><a href="/resources/#resources-steem-connect-libs">SteemConnect Libs</a></li>
+						<li><a href="/resources/#resources-hivesigner-libs">Hivesigner Libs</a></li>
 						
 					
 						
diff --git a/docs/unused/steemd.html b/docs/unused/steemd.html
index a1e8f5142cf830d295abe63f8db679e1c457a793..f9a8ac47270f8ef5149de0a4cff9ba51b45df51f 100644
--- a/docs/unused/steemd.html
+++ b/docs/unused/steemd.html
@@ -131,7 +131,7 @@
 						
 					
 						
-						<li><a href="/services/#services-steemconnect">SteemConnect</a></li>
+						<li><a href="/services/#services-hivesigner">Hivesigner</a></li>
 						
 					
 						
@@ -245,7 +245,7 @@
 						
 					
 						
-						<li><a href="/resources/#resources-steem-connect-libs">SteemConnect Libs</a></li>
+						<li><a href="/resources/#resources-hivesigner-libs">Hivesigner Libs</a></li>
 						
 					
 						
diff --git a/docs/unused/tags.html b/docs/unused/tags.html
index 574ee9e045f1e051ab09a640f2aeaaa11119a156..0329b40b29fcadcced925ce009d0f7149997f188 100644
--- a/docs/unused/tags.html
+++ b/docs/unused/tags.html
@@ -131,7 +131,7 @@
 						
 					
 						
-						<li><a href="/services/#services-steemconnect">SteemConnect</a></li>
+						<li><a href="/services/#services-hivesigner">Hivesigner</a></li>
 						
 					
 						
@@ -245,7 +245,7 @@
 						
 					
 						
-						<li><a href="/resources/#resources-steem-connect-libs">SteemConnect Libs</a></li>
+						<li><a href="/resources/#resources-hivesigner-libs">Hivesigner Libs</a></li>
 						
 					
 						
diff --git a/docs/unused/tutorials.html b/docs/unused/tutorials.html
index aa6c3a896c851205373771371c13aa821c0331a9..4229d6a9c763e010093d339119187c06ab3d895c 100644
--- a/docs/unused/tutorials.html
+++ b/docs/unused/tutorials.html
@@ -131,7 +131,7 @@
 						
 					
 						
-						<li><a href="/services/#services-steemconnect">SteemConnect</a></li>
+						<li><a href="/services/#services-hivesigner">Hivesigner</a></li>
 						
 					
 						
@@ -245,7 +245,7 @@
 						
 					
 						
-						<li><a href="/resources/#resources-steem-connect-libs">SteemConnect Libs</a></li>
+						<li><a href="/resources/#resources-hivesigner-libs">Hivesigner Libs</a></li>
 						
 					
 						
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/README.md b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/README.md
similarity index 100%
rename from tutorials/devportal-tutorials-js/tutorials/02_steemconnect/README.md
rename to tutorials/devportal-tutorials-js/tutorials/02_hivesigner/README.md
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/account_type_application.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/account_type_application.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6fd292cef605fbbdac2a1a7a9f47165280f56de
Binary files /dev/null and b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/account_type_application.png differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_login.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_login.png
new file mode 100644
index 0000000000000000000000000000000000000000..f4e420341ee31063280f529312188c885fc9240a
Binary files /dev/null and b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_login.png differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_myapp.png b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_myapp.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e30cf5c87498b6e8fe94c7cefcb1b964972e905
Binary files /dev/null and b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/images/hivesigner_myapp.png differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/index.js b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/index.js
similarity index 100%
rename from tutorials/devportal-tutorials-js/tutorials/02_steemconnect/index.js
rename to tutorials/devportal-tutorials-js/tutorials/02_hivesigner/index.js
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/package-lock.json b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/package-lock.json
similarity index 100%
rename from tutorials/devportal-tutorials-js/tutorials/02_steemconnect/package-lock.json
rename to tutorials/devportal-tutorials-js/tutorials/02_hivesigner/package-lock.json
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/package.json b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/package.json
similarity index 100%
rename from tutorials/devportal-tutorials-js/tutorials/02_steemconnect/package.json
rename to tutorials/devportal-tutorials-js/tutorials/02_hivesigner/package.json
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/public/app.js b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/public/app.js
similarity index 100%
rename from tutorials/devportal-tutorials-js/tutorials/02_steemconnect/public/app.js
rename to tutorials/devportal-tutorials-js/tutorials/02_hivesigner/public/app.js
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/public/index.html b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/public/index.html
similarity index 100%
rename from tutorials/devportal-tutorials-js/tutorials/02_steemconnect/public/index.html
rename to tutorials/devportal-tutorials-js/tutorials/02_hivesigner/public/index.html
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/public/style.css b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/public/style.css
similarity index 100%
rename from tutorials/devportal-tutorials-js/tutorials/02_steemconnect/public/style.css
rename to tutorials/devportal-tutorials-js/tutorials/02_hivesigner/public/style.css
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/webpack.config.js b/tutorials/devportal-tutorials-js/tutorials/02_hivesigner/webpack.config.js
similarity index 100%
rename from tutorials/devportal-tutorials-js/tutorials/02_steemconnect/webpack.config.js
rename to tutorials/devportal-tutorials-js/tutorials/02_hivesigner/webpack.config.js
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_account_create.png b/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_account_create.png
deleted file mode 100755
index 8f658a3adc4e00db434728d74215ae76b00eb970..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_account_create.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_dashboard.png b/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_dashboard.png
deleted file mode 100755
index 6fbe48f70ca2bd9f3c3c4d5c48c5a0afd2f21c92..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_dashboard.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_login.png b/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_login.png
deleted file mode 100755
index 60fd9229f746ae035f624014b771186e6de75287..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_login.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_myapps.png b/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_myapps.png
deleted file mode 100755
index 5d240a8a5b195da63518f268ba4617896e25f31b..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_myapps.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_new_app.png b/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_new_app.png
deleted file mode 100755
index c45dcfa8fffb8a184d4698de5647d60445c76ae9..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_new_app.png and /dev/null differ
diff --git a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_signin.png b/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_signin.png
deleted file mode 100755
index da69b0140b3b529850c39d64695f9455fc8fbc49..0000000000000000000000000000000000000000
Binary files a/tutorials/devportal-tutorials-js/tutorials/02_steemconnect/images/steemconnect_signin.png and /dev/null differ