diff --git a/aptos-move/framework/aptos-framework/doc/lite_account.md b/aptos-move/framework/aptos-framework/doc/lite_account.md
deleted file mode 100644
index fe595f286e68b..0000000000000
--- a/aptos-move/framework/aptos-framework/doc/lite_account.md
+++ /dev/null
@@ -1,547 +0,0 @@
-
-<a id="0x1_lite_account"></a>
-
-# Module `0x1::lite_account`
-
-
-
--  [Struct `UpdateDispatchableAuthenticator`](#0x1_lite_account_UpdateDispatchableAuthenticator)
--  [Struct `RemoveDispatchableAuthenticator`](#0x1_lite_account_RemoveDispatchableAuthenticator)
--  [Resource `DispatchableAuthenticator`](#0x1_lite_account_DispatchableAuthenticator)
--  [Constants](#@Constants_0)
--  [Function `add_dispatchable_authentication_function`](#0x1_lite_account_add_dispatchable_authentication_function)
--  [Function `remove_dispatchable_authentication_function`](#0x1_lite_account_remove_dispatchable_authentication_function)
--  [Function `remove_dispatchable_authenticator`](#0x1_lite_account_remove_dispatchable_authenticator)
--  [Function `resource_addr`](#0x1_lite_account_resource_addr)
--  [Function `update_dispatchable_authenticator_impl`](#0x1_lite_account_update_dispatchable_authenticator_impl)
--  [Function `using_dispatchable_authenticator`](#0x1_lite_account_using_dispatchable_authenticator)
--  [Function `dispatchable_authenticator`](#0x1_lite_account_dispatchable_authenticator)
--  [Function `dispatchable_authenticator_internal`](#0x1_lite_account_dispatchable_authenticator_internal)
--  [Function `authenticate`](#0x1_lite_account_authenticate)
--  [Function `dispatchable_authenticate`](#0x1_lite_account_dispatchable_authenticate)
--  [Specification](#@Specification_1)
-    -  [Function `dispatchable_authenticate`](#@Specification_1_dispatchable_authenticate)
-
-
-<pre><code><b>use</b> <a href="create_signer.md#0x1_create_signer">0x1::create_signer</a>;
-<b>use</b> <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error">0x1::error</a>;
-<b>use</b> <a href="event.md#0x1_event">0x1::event</a>;
-<b>use</b> <a href="function_info.md#0x1_function_info">0x1::function_info</a>;
-<b>use</b> <a href="object.md#0x1_object">0x1::object</a>;
-<b>use</b> <a href="../../aptos-stdlib/../move-stdlib/doc/option.md#0x1_option">0x1::option</a>;
-<b>use</b> <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">0x1::signer</a>;
-<b>use</b> <a href="signing_data.md#0x1_signing_data">0x1::signing_data</a>;
-<b>use</b> <a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map">0x1::simple_map</a>;
-<b>use</b> <a href="../../aptos-stdlib/../move-stdlib/doc/string.md#0x1_string">0x1::string</a>;
-</code></pre>
-
-
-
-<a id="0x1_lite_account_UpdateDispatchableAuthenticator"></a>
-
-## Struct `UpdateDispatchableAuthenticator`
-
-
-
-<pre><code>#[<a href="event.md#0x1_event">event</a>]
-<b>struct</b> <a href="lite_account.md#0x1_lite_account_UpdateDispatchableAuthenticator">UpdateDispatchableAuthenticator</a> <b>has</b> drop, store
-</code></pre>
-
-
-
-<details>
-<summary>Fields</summary>
-
-
-<dl>
-<dt>
-<code><a href="account.md#0x1_account">account</a>: <b>address</b></code>
-</dt>
-<dd>
-
-</dd>
-<dt>
-<code><b>update</b>: <a href="../../aptos-stdlib/../move-stdlib/doc/vector.md#0x1_vector">vector</a>&lt;u8&gt;</code>
-</dt>
-<dd>
-
-</dd>
-<dt>
-<code>auth_function: <a href="function_info.md#0x1_function_info_FunctionInfo">function_info::FunctionInfo</a></code>
-</dt>
-<dd>
-
-</dd>
-</dl>
-
-
-</details>
-
-<a id="0x1_lite_account_RemoveDispatchableAuthenticator"></a>
-
-## Struct `RemoveDispatchableAuthenticator`
-
-
-
-<pre><code>#[<a href="event.md#0x1_event">event</a>]
-<b>struct</b> <a href="lite_account.md#0x1_lite_account_RemoveDispatchableAuthenticator">RemoveDispatchableAuthenticator</a> <b>has</b> drop, store
-</code></pre>
-
-
-
-<details>
-<summary>Fields</summary>
-
-
-<dl>
-<dt>
-<code><a href="account.md#0x1_account">account</a>: <b>address</b></code>
-</dt>
-<dd>
-
-</dd>
-</dl>
-
-
-</details>
-
-<a id="0x1_lite_account_DispatchableAuthenticator"></a>
-
-## Resource `DispatchableAuthenticator`
-
-The dispatchable authenticator that defines how to authenticates this account in the specified module.
-An integral part of Account Abstraction.
-
-
-<pre><code>#[resource_group_member(#[group = <a href="object.md#0x1_object_ObjectGroup">0x1::object::ObjectGroup</a>])]
-<b>struct</b> <a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a> <b>has</b> <b>copy</b>, drop, key
-</code></pre>
-
-
-
-<details>
-<summary>Fields</summary>
-
-
-<dl>
-<dt>
-<code>auth_functions: <a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_SimpleMap">simple_map::SimpleMap</a>&lt;<a href="function_info.md#0x1_function_info_FunctionInfo">function_info::FunctionInfo</a>, bool&gt;</code>
-</dt>
-<dd>
-
-</dd>
-</dl>
-
-
-</details>
-
-<a id="@Constants_0"></a>
-
-## Constants
-
-
-<a id="0x1_lite_account_MAX_U64"></a>
-
-
-
-<pre><code><b>const</b> <a href="lite_account.md#0x1_lite_account_MAX_U64">MAX_U64</a>: u128 = 18446744073709551615;
-</code></pre>
-
-
-
-<a id="0x1_lite_account_EAUTH_FUNCTION_SIGNATURE_MISMATCH"></a>
-
-
-
-<pre><code><b>const</b> <a href="lite_account.md#0x1_lite_account_EAUTH_FUNCTION_SIGNATURE_MISMATCH">EAUTH_FUNCTION_SIGNATURE_MISMATCH</a>: u64 = 3;
-</code></pre>
-
-
-
-<a id="0x1_lite_account_EDISPATCHABLE_AUTHENTICATOR_IS_NOT_USED"></a>
-
-
-
-<pre><code><b>const</b> <a href="lite_account.md#0x1_lite_account_EDISPATCHABLE_AUTHENTICATOR_IS_NOT_USED">EDISPATCHABLE_AUTHENTICATOR_IS_NOT_USED</a>: u64 = 1;
-</code></pre>
-
-
-
-<a id="0x1_lite_account_EFUNCTION_INFO_EXISTENCE"></a>
-
-
-
-<pre><code><b>const</b> <a href="lite_account.md#0x1_lite_account_EFUNCTION_INFO_EXISTENCE">EFUNCTION_INFO_EXISTENCE</a>: u64 = 2;
-</code></pre>
-
-
-
-<a id="0x1_lite_account_ENOT_MASTER_SIGNER"></a>
-
-
-
-<pre><code><b>const</b> <a href="lite_account.md#0x1_lite_account_ENOT_MASTER_SIGNER">ENOT_MASTER_SIGNER</a>: u64 = 4;
-</code></pre>
-
-
-
-<a id="0x1_lite_account_add_dispatchable_authentication_function"></a>
-
-## Function `add_dispatchable_authentication_function`
-
-Update dispatchable authenticator that enables account abstraction.
-Note: it is a private entry function that can only be called directly from transaction.
-
-
-<pre><code><b>public</b> entry <b>fun</b> <a href="lite_account.md#0x1_lite_account_add_dispatchable_authentication_function">add_dispatchable_authentication_function</a>(<a href="account.md#0x1_account">account</a>: &<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>, module_address: <b>address</b>, module_name: <a href="../../aptos-stdlib/../move-stdlib/doc/string.md#0x1_string_String">string::String</a>, function_name: <a href="../../aptos-stdlib/../move-stdlib/doc/string.md#0x1_string_String">string::String</a>)
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>public</b> entry <b>fun</b> <a href="lite_account.md#0x1_lite_account_add_dispatchable_authentication_function">add_dispatchable_authentication_function</a>(
-    <a href="account.md#0x1_account">account</a>: &<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>,
-    module_address: <b>address</b>,
-    module_name: String,
-    function_name: String,
-) <b>acquires</b> <a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a> {
-    //<b>assert</b>!(!is_permissioned_signer(<a href="account.md#0x1_account">account</a>), <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error_permission_denied">error::permission_denied</a>(<a href="lite_account.md#0x1_lite_account_ENOT_MASTER_SIGNER">ENOT_MASTER_SIGNER</a>));
-    <a href="lite_account.md#0x1_lite_account_update_dispatchable_authenticator_impl">update_dispatchable_authenticator_impl</a>(
-        <a href="account.md#0x1_account">account</a>,
-        <a href="function_info.md#0x1_function_info_new_function_info_from_address">function_info::new_function_info_from_address</a>(module_address, module_name, function_name),
-        <b>true</b>
-    );
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_remove_dispatchable_authentication_function"></a>
-
-## Function `remove_dispatchable_authentication_function`
-
-
-
-<pre><code><b>public</b> entry <b>fun</b> <a href="lite_account.md#0x1_lite_account_remove_dispatchable_authentication_function">remove_dispatchable_authentication_function</a>(<a href="account.md#0x1_account">account</a>: &<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>, module_address: <b>address</b>, module_name: <a href="../../aptos-stdlib/../move-stdlib/doc/string.md#0x1_string_String">string::String</a>, function_name: <a href="../../aptos-stdlib/../move-stdlib/doc/string.md#0x1_string_String">string::String</a>)
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>public</b> entry <b>fun</b> <a href="lite_account.md#0x1_lite_account_remove_dispatchable_authentication_function">remove_dispatchable_authentication_function</a>(
-    <a href="account.md#0x1_account">account</a>: &<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>,
-    module_address: <b>address</b>,
-    module_name: String,
-    function_name: String,
-) <b>acquires</b> <a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a> {
-    //<b>assert</b>!(!is_permissioned_signer(<a href="account.md#0x1_account">account</a>), <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error_permission_denied">error::permission_denied</a>(<a href="lite_account.md#0x1_lite_account_ENOT_MASTER_SIGNER">ENOT_MASTER_SIGNER</a>));
-    <a href="lite_account.md#0x1_lite_account_update_dispatchable_authenticator_impl">update_dispatchable_authenticator_impl</a>(
-        <a href="account.md#0x1_account">account</a>,
-        <a href="function_info.md#0x1_function_info_new_function_info_from_address">function_info::new_function_info_from_address</a>(module_address, module_name, function_name),
-        <b>false</b>
-    );
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_remove_dispatchable_authenticator"></a>
-
-## Function `remove_dispatchable_authenticator`
-
-Update dispatchable authenticator that disables account abstraction.
-Note: it is a private entry function that can only be called directly from transaction.
-
-
-<pre><code><b>public</b> entry <b>fun</b> <a href="lite_account.md#0x1_lite_account_remove_dispatchable_authenticator">remove_dispatchable_authenticator</a>(<a href="account.md#0x1_account">account</a>: &<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>)
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>public</b> entry <b>fun</b> <a href="lite_account.md#0x1_lite_account_remove_dispatchable_authenticator">remove_dispatchable_authenticator</a>(
-    <a href="account.md#0x1_account">account</a>: &<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>,
-) <b>acquires</b> <a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a> {
-    //<b>assert</b>!(!is_permissioned_signer(<a href="account.md#0x1_account">account</a>), <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error_permission_denied">error::permission_denied</a>(<a href="lite_account.md#0x1_lite_account_ENOT_MASTER_SIGNER">ENOT_MASTER_SIGNER</a>));
-    <b>let</b> addr = <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer_address_of">signer::address_of</a>(<a href="account.md#0x1_account">account</a>);
-    <b>let</b> resource_addr = <a href="lite_account.md#0x1_lite_account_resource_addr">resource_addr</a>(addr);
-    <b>if</b> (<b>exists</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(resource_addr)) {
-        <b>move_from</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(resource_addr);
-        <a href="event.md#0x1_event_emit">event::emit</a>(<a href="lite_account.md#0x1_lite_account_RemoveDispatchableAuthenticator">RemoveDispatchableAuthenticator</a> {
-            <a href="account.md#0x1_account">account</a>: addr,
-        });
-    };
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_resource_addr"></a>
-
-## Function `resource_addr`
-
-
-
-<pre><code><b>fun</b> <a href="lite_account.md#0x1_lite_account_resource_addr">resource_addr</a>(source: <b>address</b>): <b>address</b>
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code>inline <b>fun</b> <a href="lite_account.md#0x1_lite_account_resource_addr">resource_addr</a>(source: <b>address</b>): <b>address</b> {
-    <a href="object.md#0x1_object_create_user_derived_object_address">object::create_user_derived_object_address</a>(source, @aptos_fungible_asset)
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_update_dispatchable_authenticator_impl"></a>
-
-## Function `update_dispatchable_authenticator_impl`
-
-
-
-<pre><code><b>public</b>(<b>friend</b>) <b>fun</b> <a href="lite_account.md#0x1_lite_account_update_dispatchable_authenticator_impl">update_dispatchable_authenticator_impl</a>(<a href="account.md#0x1_account">account</a>: &<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>, auth_function: <a href="function_info.md#0x1_function_info_FunctionInfo">function_info::FunctionInfo</a>, is_add: bool)
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>public</b>(<b>friend</b>) <b>fun</b> <a href="lite_account.md#0x1_lite_account_update_dispatchable_authenticator_impl">update_dispatchable_authenticator_impl</a>(
-    <a href="account.md#0x1_account">account</a>: &<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>,
-    auth_function: FunctionInfo,
-    is_add: bool,
-) <b>acquires</b> <a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a> {
-    <b>let</b> addr = <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer_address_of">signer::address_of</a>(<a href="account.md#0x1_account">account</a>);
-    <b>let</b> resource_addr = <a href="lite_account.md#0x1_lite_account_resource_addr">resource_addr</a>(addr);
-        <b>let</b> dispatcher_auth_function_info = <a href="function_info.md#0x1_function_info_new_function_info_from_address">function_info::new_function_info_from_address</a>(
-            @aptos_framework,
-            <a href="../../aptos-stdlib/../move-stdlib/doc/string.md#0x1_string_utf8">string::utf8</a>(b"<a href="lite_account.md#0x1_lite_account">lite_account</a>"),
-            <a href="../../aptos-stdlib/../move-stdlib/doc/string.md#0x1_string_utf8">string::utf8</a>(b"dispatchable_authenticate"),
-        );
-        <b>assert</b>!(
-            <a href="function_info.md#0x1_function_info_check_dispatch_type_compatibility">function_info::check_dispatch_type_compatibility</a>(&dispatcher_auth_function_info, &auth_function),
-            <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error_invalid_argument">error::invalid_argument</a>(<a href="lite_account.md#0x1_lite_account_EAUTH_FUNCTION_SIGNATURE_MISMATCH">EAUTH_FUNCTION_SIGNATURE_MISMATCH</a>)
-        );
-    <b>if</b> (is_add && !<b>exists</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(resource_addr)) {
-            <b>move_to</b>(&<a href="create_signer.md#0x1_create_signer_create_signer">create_signer::create_signer</a>(resource_addr), <a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a> {
-                auth_functions: <a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_new">simple_map::new</a>()
-            });
-        };
-        <b>if</b> (<b>exists</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(resource_addr)) {
-            <b>let</b> current_map = &<b>mut</b> <b>borrow_global_mut</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(resource_addr).auth_functions;
-            <b>if</b> (is_add) {
-                <b>assert</b>!(!<a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_contains_key">simple_map::contains_key</a>(current_map, &auth_function), <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error_already_exists">error::already_exists</a>(<a href="lite_account.md#0x1_lite_account_EFUNCTION_INFO_EXISTENCE">EFUNCTION_INFO_EXISTENCE</a>));
-                <a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_add">simple_map::add</a>(current_map, auth_function, <b>true</b>);
-            } <b>else</b> {
-                <b>assert</b>!(<a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_contains_key">simple_map::contains_key</a>(current_map, &auth_function), <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error_not_found">error::not_found</a>(<a href="lite_account.md#0x1_lite_account_EFUNCTION_INFO_EXISTENCE">EFUNCTION_INFO_EXISTENCE</a>));
-                <a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_remove">simple_map::remove</a>(current_map, &auth_function);
-            };
-            <a href="event.md#0x1_event_emit">event::emit</a>(
-                <a href="lite_account.md#0x1_lite_account_UpdateDispatchableAuthenticator">UpdateDispatchableAuthenticator</a> {
-                    <a href="account.md#0x1_account">account</a>: addr,
-                    <b>update</b>: <b>if</b> (is_add) {b"add"} <b>else</b> {b"remove"},
-                    auth_function,
-                }
-            );
-            <b>if</b> (<a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_length">simple_map::length</a>(current_map) == 0) {
-                <a href="lite_account.md#0x1_lite_account_remove_dispatchable_authenticator">remove_dispatchable_authenticator</a>(<a href="account.md#0x1_account">account</a>);
-            }
-        };
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_using_dispatchable_authenticator"></a>
-
-## Function `using_dispatchable_authenticator`
-
-Return <code><b>true</b></code> if the account is an abstracted account that can be authenticated with dispatchable move authenticator.
-
-
-<pre><code>#[view]
-<b>public</b> <b>fun</b> <a href="lite_account.md#0x1_lite_account_using_dispatchable_authenticator">using_dispatchable_authenticator</a>(addr: <b>address</b>): bool
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>public</b> <b>fun</b> <a href="lite_account.md#0x1_lite_account_using_dispatchable_authenticator">using_dispatchable_authenticator</a>(addr: <b>address</b>): bool {
-    <b>exists</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(<a href="lite_account.md#0x1_lite_account_resource_addr">resource_addr</a>(addr))
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_dispatchable_authenticator"></a>
-
-## Function `dispatchable_authenticator`
-
-Return the current dispatchable authenticator move function info. <code>None</code> means this authentication scheme is disabled.
-
-
-<pre><code>#[view]
-<b>public</b> <b>fun</b> <a href="lite_account.md#0x1_lite_account_dispatchable_authenticator">dispatchable_authenticator</a>(addr: <b>address</b>): <a href="../../aptos-stdlib/../move-stdlib/doc/option.md#0x1_option_Option">option::Option</a>&lt;<a href="../../aptos-stdlib/../move-stdlib/doc/vector.md#0x1_vector">vector</a>&lt;<a href="function_info.md#0x1_function_info_FunctionInfo">function_info::FunctionInfo</a>&gt;&gt;
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>public</b> <b>fun</b> <a href="lite_account.md#0x1_lite_account_dispatchable_authenticator">dispatchable_authenticator</a>(addr: <b>address</b>): Option&lt;<a href="../../aptos-stdlib/../move-stdlib/doc/vector.md#0x1_vector">vector</a>&lt;FunctionInfo&gt;&gt; <b>acquires</b> <a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a> {
-    <b>let</b> resource_addr = <a href="lite_account.md#0x1_lite_account_resource_addr">resource_addr</a>(addr);
-    <b>if</b> (<b>exists</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(resource_addr)) {
-        <a href="../../aptos-stdlib/../move-stdlib/doc/option.md#0x1_option_some">option::some</a>(
-            <a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_keys">simple_map::keys</a>(&<b>borrow_global</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(resource_addr).auth_functions)
-        )
-    } <b>else</b> { <a href="../../aptos-stdlib/../move-stdlib/doc/option.md#0x1_option_none">option::none</a>() }
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_dispatchable_authenticator_internal"></a>
-
-## Function `dispatchable_authenticator_internal`
-
-
-
-<pre><code><b>fun</b> <a href="lite_account.md#0x1_lite_account_dispatchable_authenticator_internal">dispatchable_authenticator_internal</a>(addr: <b>address</b>): &<a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_SimpleMap">simple_map::SimpleMap</a>&lt;<a href="function_info.md#0x1_function_info_FunctionInfo">function_info::FunctionInfo</a>, bool&gt;
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code>inline <b>fun</b> <a href="lite_account.md#0x1_lite_account_dispatchable_authenticator_internal">dispatchable_authenticator_internal</a>(addr: <b>address</b>): &SimpleMap&lt;FunctionInfo, bool&gt; {
-    <b>assert</b>!(<a href="lite_account.md#0x1_lite_account_using_dispatchable_authenticator">using_dispatchable_authenticator</a>(addr), <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error_not_found">error::not_found</a>(<a href="lite_account.md#0x1_lite_account_EDISPATCHABLE_AUTHENTICATOR_IS_NOT_USED">EDISPATCHABLE_AUTHENTICATOR_IS_NOT_USED</a>));
-    &<b>borrow_global</b>&lt;<a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a>&gt;(<a href="lite_account.md#0x1_lite_account_resource_addr">resource_addr</a>(addr)).auth_functions
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_authenticate"></a>
-
-## Function `authenticate`
-
-
-
-<pre><code><b>fun</b> <a href="lite_account.md#0x1_lite_account_authenticate">authenticate</a>(<a href="account.md#0x1_account">account</a>: <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>, func_info: <a href="function_info.md#0x1_function_info_FunctionInfo">function_info::FunctionInfo</a>, <a href="signing_data.md#0x1_signing_data">signing_data</a>: <a href="signing_data.md#0x1_signing_data_SigningData">signing_data::SigningData</a>): <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>fun</b> <a href="lite_account.md#0x1_lite_account_authenticate">authenticate</a>(
-    <a href="account.md#0x1_account">account</a>: <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>,
-    func_info: FunctionInfo,
-    <a href="signing_data.md#0x1_signing_data">signing_data</a>: SigningData,
-): <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a> <b>acquires</b> <a href="lite_account.md#0x1_lite_account_DispatchableAuthenticator">DispatchableAuthenticator</a> {
-    <b>let</b> func_infos = <a href="lite_account.md#0x1_lite_account_dispatchable_authenticator_internal">dispatchable_authenticator_internal</a>(<a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer_address_of">signer::address_of</a>(&<a href="account.md#0x1_account">account</a>));
-    <b>assert</b>!(<a href="../../aptos-stdlib/doc/simple_map.md#0x1_simple_map_contains_key">simple_map::contains_key</a>(func_infos, &func_info), <a href="../../aptos-stdlib/../move-stdlib/doc/error.md#0x1_error_not_found">error::not_found</a>(<a href="lite_account.md#0x1_lite_account_EFUNCTION_INFO_EXISTENCE">EFUNCTION_INFO_EXISTENCE</a>));
-    <a href="function_info.md#0x1_function_info_load_module_from_function">function_info::load_module_from_function</a>(&func_info);
-    <a href="lite_account.md#0x1_lite_account_dispatchable_authenticate">dispatchable_authenticate</a>(<a href="account.md#0x1_account">account</a>, <a href="signing_data.md#0x1_signing_data">signing_data</a>, &func_info)
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_lite_account_dispatchable_authenticate"></a>
-
-## Function `dispatchable_authenticate`
-
-The native function to dispatch customized move authentication function.
-
-
-<pre><code><b>fun</b> <a href="lite_account.md#0x1_lite_account_dispatchable_authenticate">dispatchable_authenticate</a>(<a href="account.md#0x1_account">account</a>: <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>, <a href="signing_data.md#0x1_signing_data">signing_data</a>: <a href="signing_data.md#0x1_signing_data_SigningData">signing_data::SigningData</a>, function: &<a href="function_info.md#0x1_function_info_FunctionInfo">function_info::FunctionInfo</a>): <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>native</b> <b>fun</b> <a href="lite_account.md#0x1_lite_account_dispatchable_authenticate">dispatchable_authenticate</a>(
-    <a href="account.md#0x1_account">account</a>: <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>,
-    <a href="signing_data.md#0x1_signing_data">signing_data</a>: SigningData,
-    function: &FunctionInfo
-): <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>;
-</code></pre>
-
-
-
-</details>
-
-<a id="@Specification_1"></a>
-
-## Specification
-
-
-
-<pre><code><b>pragma</b> verify = <b>false</b>;
-</code></pre>
-
-
-
-<a id="@Specification_1_dispatchable_authenticate"></a>
-
-### Function `dispatchable_authenticate`
-
-
-<pre><code><b>fun</b> <a href="lite_account.md#0x1_lite_account_dispatchable_authenticate">dispatchable_authenticate</a>(<a href="account.md#0x1_account">account</a>: <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>, <a href="signing_data.md#0x1_signing_data">signing_data</a>: <a href="signing_data.md#0x1_signing_data_SigningData">signing_data::SigningData</a>, function: &<a href="function_info.md#0x1_function_info_FunctionInfo">function_info::FunctionInfo</a>): <a href="../../aptos-stdlib/../move-stdlib/doc/signer.md#0x1_signer">signer</a>
-</code></pre>
-
-
-
-
-<pre><code><b>pragma</b> opaque;
-</code></pre>
-
-
-[move-book]: https://aptos.dev/move/book/SUMMARY
diff --git a/aptos-move/framework/aptos-framework/doc/token_bucket.md b/aptos-move/framework/aptos-framework/doc/token_bucket.md
deleted file mode 100644
index 743721e304652..0000000000000
--- a/aptos-move/framework/aptos-framework/doc/token_bucket.md
+++ /dev/null
@@ -1,176 +0,0 @@
-
-<a id="0x1_token_bucket"></a>
-
-# Module `0x1::token_bucket`
-
-
-
--  [Resource `Bucket`](#0x1_token_bucket_Bucket)
--  [Function `initialize_bucket`](#0x1_token_bucket_initialize_bucket)
--  [Function `request`](#0x1_token_bucket_request)
--  [Function `refill`](#0x1_token_bucket_refill)
-
-
-<pre><code><b>use</b> <a href="../../aptos-stdlib/doc/math64.md#0x1_math64">0x1::math64</a>;
-<b>use</b> <a href="timestamp.md#0x1_timestamp">0x1::timestamp</a>;
-</code></pre>
-
-
-
-<a id="0x1_token_bucket_Bucket"></a>
-
-## Resource `Bucket`
-
-
-
-<pre><code><b>struct</b> <a href="token_bucket.md#0x1_token_bucket_Bucket">Bucket</a> <b>has</b> <b>copy</b>, drop, store, key
-</code></pre>
-
-
-
-<details>
-<summary>Fields</summary>
-
-
-<dl>
-<dt>
-<code>capacity: u64</code>
-</dt>
-<dd>
-
-</dd>
-<dt>
-<code>tokens: u64</code>
-</dt>
-<dd>
-
-</dd>
-<dt>
-<code>refill_rate_per_minute: u64</code>
-</dt>
-<dd>
-
-</dd>
-<dt>
-<code>last_refill_timestamp: u64</code>
-</dt>
-<dd>
-
-</dd>
-<dt>
-<code>fractional_time_accumulated: u64</code>
-</dt>
-<dd>
-
-</dd>
-</dl>
-
-
-</details>
-
-<a id="0x1_token_bucket_initialize_bucket"></a>
-
-## Function `initialize_bucket`
-
-
-
-<pre><code><b>public</b> <b>fun</b> <a href="token_bucket.md#0x1_token_bucket_initialize_bucket">initialize_bucket</a>(capacity: u64): <a href="token_bucket.md#0x1_token_bucket_Bucket">token_bucket::Bucket</a>
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>public</b> <b>fun</b> <a href="token_bucket.md#0x1_token_bucket_initialize_bucket">initialize_bucket</a>(capacity: u64): <a href="token_bucket.md#0x1_token_bucket_Bucket">Bucket</a> {
-    <b>let</b> bucket = <a href="token_bucket.md#0x1_token_bucket_Bucket">Bucket</a> {
-        capacity,
-        tokens: capacity, // Start <b>with</b> a full bucket (full capacity of transactions allowed)
-        refill_rate_per_minute: capacity,
-        last_refill_timestamp: <a href="timestamp.md#0x1_timestamp_now_seconds">timestamp::now_seconds</a>(),
-        fractional_time_accumulated: 0, // Start <b>with</b> no fractional time accumulated
-    };
-    bucket
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_token_bucket_request"></a>
-
-## Function `request`
-
-
-
-<pre><code><b>public</b> <b>fun</b> <a href="token_bucket.md#0x1_token_bucket_request">request</a>(bucket: &<b>mut</b> <a href="token_bucket.md#0x1_token_bucket_Bucket">token_bucket::Bucket</a>, num_token_requested: u64): bool
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>public</b> <b>fun</b> <a href="token_bucket.md#0x1_token_bucket_request">request</a>(bucket: &<b>mut</b> <a href="token_bucket.md#0x1_token_bucket_Bucket">Bucket</a>, num_token_requested: u64): bool {
-    <a href="token_bucket.md#0x1_token_bucket_refill">refill</a>(bucket);
-    <b>if</b> (bucket.tokens &gt;= num_token_requested) {
-        bucket.tokens = bucket.tokens - num_token_requested;
-        <b>true</b>
-    } <b>else</b> {
-        <b>false</b>
-    }
-}
-</code></pre>
-
-
-
-</details>
-
-<a id="0x1_token_bucket_refill"></a>
-
-## Function `refill`
-
-
-
-<pre><code><b>fun</b> <a href="token_bucket.md#0x1_token_bucket_refill">refill</a>(bucket: &<b>mut</b> <a href="token_bucket.md#0x1_token_bucket_Bucket">token_bucket::Bucket</a>)
-</code></pre>
-
-
-
-<details>
-<summary>Implementation</summary>
-
-
-<pre><code><b>fun</b> <a href="token_bucket.md#0x1_token_bucket_refill">refill</a>(bucket: &<b>mut</b> <a href="token_bucket.md#0x1_token_bucket_Bucket">Bucket</a>) {
-    <b>let</b> current_time = <a href="timestamp.md#0x1_timestamp_now_seconds">timestamp::now_seconds</a>();
-    <b>let</b> time_passed = current_time - bucket.last_refill_timestamp;
-
-    // Total time passed including fractional accumulated time
-    <b>let</b> total_time = time_passed + bucket.fractional_time_accumulated;
-
-    // Calculate the full tokens that can be added
-    <b>let</b> new_tokens = total_time * bucket.refill_rate_per_minute / 60;
-
-    // Calculate the remaining fractional time
-    <b>let</b> remaining_fractional_time = total_time % 60;
-
-    // Refill the bucket <b>with</b> the full tokens
-    <b>if</b> (new_tokens &gt; 0) {
-        bucket.tokens = <a href="../../aptos-stdlib/doc/math64.md#0x1_math64_min">math64::min</a>(bucket.tokens + new_tokens, bucket.capacity);
-        bucket.last_refill_timestamp = current_time;
-    };
-
-    // Update the fractional time accumulated for the next refill cycle
-    bucket.fractional_time_accumulated = remaining_fractional_time;
-}
-</code></pre>
-
-
-
-</details>
-
-
-[move-book]: https://aptos.dev/move/book/SUMMARY